Difference between revisions of "*nix, crear video a partir de imagenes usando ffmpeg"

From Wiki de Caballero
Jump to navigation Jump to search
(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/ #...")
 
(No difference)

Latest revision as of 19:11, 26 March 2019

# 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