Welcome Guest, Not a member yet? Register   Sign In
Create Thumbnail of video
#3

[eluser]mysoogal[/eluser]
this will just get image from video maybe this is what you want

Code:
<?php
convertToFlv( "some-video-input.avi", "output.jpg" );

function convertToFlv( $input, $output ) {
   echo "Converting $input to $output<br />";
   $command = "ffmpeg -v 0 -y -i $input -vframes 1 -ss 5 -vcodec mjpeg -f rawvideo -s 286x160 -aspect 16:9 $output ";
   echo "$command<br />";
   shell_exec( $command );
   echo "Converted<br />";
}
?&gt;

this code work on ubuntu server, i didnt test on windows but should be same anways since its php after all Smile somebody more experienced can add into CI


Messages In This Thread
Create Thumbnail of video - by El Forum - 10-13-2009, 01:39 AM
Create Thumbnail of video - by El Forum - 10-19-2009, 04:41 PM
Create Thumbnail of video - by El Forum - 10-19-2009, 04:43 PM
Create Thumbnail of video - by El Forum - 10-30-2009, 02:03 PM



Theme © iAndrew 2016 - Forum software by © MyBB