Hi I need to extract frames from videos using ffmpeg.. Is there a faster way to do it than this:
ffmpeg -i file.mpg -r 1/1 $filename%03d.jpg
This worked for me
ffmpeg -i file.mp4 -vf fps=1 %d.jpg