Linux: How to extract frames from a video? (lossless)
I've read a few answers and articles on using programs like VLC
, MPlayer
, ffmpeg
, etc., but none of the methods I've seen are "lossless." They don't capture every single frame. I want to extract each frame from a video as an image (100% quality, I don't want to lose any detail), so one could theoretically take those images and re-create the video file without being able to tell the difference from the original (excluding the lack of audio, of course).
Bonus points if I can specify a start and end time to grab frames from, so I don't have to crop the video file beforehand.
Solution 1:
You can extract the frames as PNG, a lossless picture compression format. For example, to extract frames from the 5mn mark to the 10mn mark :
ffmpeg -ss 05:00 -i <input> -t 05:00 filename%05d.png
Solution 2:
There are several tools that should be able to extract all frames from a movie file:
avconvavconv -i file.avi -f image2 Out%00d.jpg
ffmpegffmpeg -i input.file thumb%04d.png -hide_banner
This can also export BMP, which take much less processing time than PNG or JPG.
There is also a bash script called mov2frame.sh that tries to automate the FFMPEG extraction process.
Mplayermplayer -ao null -vo png input.file
or another option:
mplayer -nosound -vo png:z=9 my_file.mp4
VLC This media player apparently can export image sets using its filters, but seems troublesome unless it's your only usage or you have a portable version.
Create a folder to store your frames and copy the path to it. For Mac OSX/Linux users, this must be the full path (no ~).
Click Tools / Preferences in VLC.
Under “show settings”, click “all”.
Under “Video”, select “Filters”. Tick “Scene video filter”.
Expand “Filters” and select “Scene filter”,
Paste the path from earlier into “directory path prefix”.
Choose the fraction of frames to encode in the “recording ratio” box. 1/12 with output every 12, 1/1 will export them all
Click “save”.
Click Media / Open Video and find your video. Patiently let the whole thing play.
Click Tools / Preferences. Under “show settings”, click “all”. Under “video”, select “filters”. Uncheck “Scene video filter”. Click “save”. This is so that VLC won’t generate thumbnails the next time you play a video. link
There also appears to be some potential trouble with admin permissions on first program run:
sudo vlc [sudo] password for mint16: VLC is not supposed to be run as root. Sorry. If you need to use real-time priorities and/or privileged TCP ports you can use vlc-wrapper (make sure it is Set-UID root and cannot be run by non-trusted users first).
VLC also performs much better when extracting to BMP instead of PNG