Extracting images from video at 1 minute intervals
Solution 1:
You can use:
ffmpeg -i video.avi -r 0.01 -t 00:01:00 -f image2 image%02d.png
-r
is what you need to change. -t
is how long your video will go on ;)
Hope to be helpful
You can use:
ffmpeg -i video.avi -r 0.01 -t 00:01:00 -f image2 image%02d.png
-r
is what you need to change. -t
is how long your video will go on ;)
Hope to be helpful