Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

How can I convert a video file to a sequence of images, for example one frame every N seconds. Can mplayer or ffmpeg do this? I have used MPlayer to grab screenshots manually but I would like to automate this for a long video.

share|improve this question

7 Answers

With ffmpeg, you can do the following:

ffmpeg -ss -4 -i test.avi -s:v 320x240 -frames:v 1 -an test.jpg

This command generates a 320×240 sized JPG thumbnail at the 4th second in the video. Put this in a script that changes the time and file name and you're done.

Long version: Creating video thumbnails using ffmpeg

share|improve this answer
This seems to do what I want, but with one problem. It will process the file from the start on each iteration, getting exponentially slow. – Liam Apr 27 '10 at 14:42
@Liam - Does it help if you leave the offset time alone (set it at 1) and use the -ss position flag to seek further into the file instead? -ss Seek to given time position in seconds. hh:mm:ss[.xxx] syntax is also supported – Nifle Apr 29 '10 at 7:53
1  
@liam: put the -ss before the -i so that the seek happens before the input video gets decoded. this should speed it up. source – quack quixote Apr 29 '10 at 17:03
up vote 5 down vote accepted
mplayer -vo jpeg -sstep 5 file.avi

will save a frame as a jpeg file every 5 seconds.

However, it will not stop at the end of the file, it will continue producing copies of the last frame. To avoid this, find the duration of the video in seconds (using another player) and subtract 2, and use this value for the -endposoption. For example, for a 147 second video:

mplayer -vo jpeg -sstep 5 -endpos 145 file.avi
share|improve this answer
this sounds like an mplayer bug. nice workaround. – quack quixote Apr 29 '10 at 17:04

If

$ mplayer -vo help | grep JPEG

finds something, you can use it to dump the video into a sequence of jpg files.

share|improve this answer

You can skip frames in VirtualDub. Just use "Decimate By" option located at Video -> Frame Rate menu. For example if you set "Decimate By 100" then use File -> Export -> Image sequence, it will save only every 100th frame.

share|improve this answer

With VLC 1.1.0 and above, you can use the scene video filter:

vlc C:\video\to\process.mp4 --rate=1 --video-filter=scene --vout=dummy --start-time=10 --stop-time=11 --scene-format=png --scene-ratio=24 --scene-prefix=snap --scene-path=C:\path\for\snapshots\ vlc://quit

The above saves 1 out of every 24 frames (--scene-ratio=24), starting at 00:00:10 and ending at 00:00:11.

Just tested and confirmed this works with VLC 2.0.3 on a fresh Windows 8 installation (I have no additional video plugins or software).

Full documentation: http://wiki.videolan.org/How_to_create_thumbnails

share|improve this answer

You could also try this

from the VLC command line...

vlc "C:\YOUR\file\path\file.avi" -V image --image-out-prefix=capname --image-out-ratio=60

file.avi is the video you want to capture from, capname is the prefix of the saved images, you might want to play around with the ratio (60 means that 1 out of 60 images is captured) You can add more commands, for example --image-out-format jpeg will save your caps as jpegs instead of of pngs, --snapshot-path lets you choose where to save your caps.

Source of above

share|improve this answer
I got this message: The command line options couldn't be loaded, check that they are valid. – Liam Apr 28 '10 at 9:45
On Ubuntu, I got this message: unknown option or missing mandatory argument `--image-out-prefix=capname' – Liam Apr 28 '10 at 9:54

VirtualDub can do this for you

File -> Export -> Image sequence

enter image description here

share|improve this answer
Will this save every frame as an image? – Liam Apr 27 '10 at 15:32
yes, every frame. – Shevek Apr 27 '10 at 16:25
I need to skip most frames, outputting all frames will use up too much storage space. I need just one frame every few seconds. – Liam Apr 28 '10 at 9:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.