Saturday, August 11, 2012

Extract Image From Video Using FFMPEG

ffmpeg -i video.flv -an -s 320×240 -ss 00:00:02 -r 1 -y %d.jpg

-s 320×240 specifies the frame size of the output (Default is the size of the original video.)

-ss 00:00:02 Seek to given time position in seconds.