I used FFmpeg to extract individual frames in an image. Although some google seems to work:
ffmpeg.exe -i video.avi -ss 00:30:00 -y -an -vframes 1 test.png
... works MUCH slower than the following, which is almost identical, but instantly:
ffmpeg.exe -ss 00:30:00 -i video.avi -y -an -vframes 1 test.png
The only difference is the order of -i and -ss. Is this an intentional βfeatureβ? Is there any technical reason for the difference here?
source share