Created
March 25, 2020 04:45
-
-
Save akey7/5d11e587881cdc1a0a28bff1df7493da to your computer and use it in GitHub Desktop.
Combine still images into a movie with ffmpeg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This assumes frame numbering of 4 integer places like 0001, 0020, 0300, etc | |
ffmpeg -r 30 -s 1920x1080 -i heme_%04d.png -vcodec libx264 -crf 15 -pix_fmt yuv420p heme_movie.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment