*nix, crear video a partir de imagenes usando ffmpeg

From Wiki de Caballero
Revision as of 19:11, 26 March 2019 by Felipe (talk | contribs) (Created page with "<source lang="bash"> # To create a movie from images, 2 images per second # More info: http://hamelot.io/visualization/using-ffmpeg-to-convert-a-set-of-images-into-a-video/ #...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
# To create a movie from images, 2 images per second
# More info: http://hamelot.io/visualization/using-ffmpeg-to-convert-a-set-of-images-into-a-video/
# ***************************************
ffmpeg -r 2 -f image2 -pattern_type glob -i 'filename*' video.mp4