Jump to content

How to increase speed?


pawarsac

Recommended Posts

Hello PHP masters

 

I am building small application like utube.

First thing is I want to convert different type of video format  into .fl(on server side) , How can I do this?

second thing is How can I increase speed So the video get visible to user as quickly as possible?

waiting for your response...........

 

sac

Link to comment
https://forums.phpfreaks.com/topic/73599-how-to-increase-speed/
Share on other sites

With regards to video encoding and speed, it's all about the hardware - The faster it is, the quicker it will happen.

 

As for the actual conversion, I can only assume you're using a UNIX/LINUX based server - This can be done over the command line with ffmpeg:

<?php
$in = "test.avi";
$out = substr($in,0,strrpos($in,".")).".flv";
exec("ffmpeg -i $in $out");
?>

Link to comment
https://forums.phpfreaks.com/topic/73599-how-to-increase-speed/#findComment-371470
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.