0I am trying to capture thumbnail images from a video by using ffmpeg.
So I typed command like Below.
ffmpeg -i MyVideo.mp4 -s 480x270 -f image2 -vf fps=fps=1/600 thumb%03d.png
just like what ffmpeg official site suggested.
The length of MyVideo.mp4
is 01:46:03
, So I expected total 10 images from it.
(because fps=fps=1/600
part means 10minute 1piece.)
But output is 12 pieces, and especially first one is broken.
When I check it's information in GUI, it says "failed to load information".