pawarsac Posted October 17, 2007 Share Posted October 17, 2007 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 More sharing options...
zq29 Posted October 17, 2007 Share Posted October 17, 2007 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.