The below command creates jpeg out of .mpg, but fails to create jpeg out of .flv.

How can I do that?

$ffmpegpath = FFMPEG_PATH;
$input = "video_file/orig/fdgdf.mpg";//Lady.flv";
$output = "video_file/thumb/kuni.jpeg"; 

$command = "$ffmpegpath -i $input -an -ss 00:00:$fromdurasec -r 1 -vframes 1 -s 80x80 -f mjpeg -y $output";
link|improve this question
feedback

1 Answer

ffmpeg -i video.flv -an -ss 00:00:03 -an -r 1 -vframes 1 -y %d.jpg 

source

link|improve this answer
No its not working – Ipsita Dec 2 '10 at 9:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.