ffmpeg

From Noah.org
Revision as of 16:15, 29 September 2017 by Root (talk | contribs) (Created page with "Category: Engineering == MJPEG == You can losslessly extract individual JPEG imges from an '''mjpeg''' file. <pre> ffmpeg -i mjpegvideo.mov -vcodec copy frame%d.jpg </pr...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search


MJPEG

You can losslessly extract individual JPEG imges from an mjpeg file.

ffmpeg -i mjpegvideo.mov -vcodec copy frame%d.jpg

Create video from a sequence of images

If there is no format to the images you want to convert then you must use the pattern_type option:

ffmpeg -pattern_type glob -i "image-*.jpg" video.mov