I am new to using the command line. It is pretty cool and exciting to learn, but I am stuck.
I have a video where, for example, I want to capture the first 8 frames every 5 seconds into an image.
I've written this command:
ffmpeg -i video.mp4 -vf fps=8/20 out%04d.png
I see it captures 8 frames every 20 seconds, and not the first 8 frames. Is there a way I could specify this in the command?
Comments
Post a Comment