Software to convert video to image sequence beside QT

software-recommendationvideo

I want to convert a bunch of videos to image sequence with user defined intervals, but I don't have an export to image sequence option on my QUicktime player. Any suggestion?

Best Answer

ffmpeg -i input.mkv -r 0.1 %06d.png saves a frame every 10 seconds. It always includes the first few frames for some reason.

mplayer -nosound -sstep 10 -vo png input.mkv doesn't always stop at the end of the video.