is it possible to use ffmpeg to convert a movie with variable framerate to a sequence of still pics without duplicates?
I tried something like:
ffmpeg -i vid.avi pic%d.png
but each frame generates thousands of pictures. I also tried:
ffmpeg -i vid.avi -r 10 pic%d.png
but I still have lots of duplicates AND some frames are missing
is it possible to specify something like “-r natural”???
TIA
A bit late, but…
will do the trick. For example:
will create exactly one jpeg per frame in the C:\Thumbnails folder, and each jpeg will be sequentially numbered with no gaps or duplicates in numbering.