Skip to content

Instantly share code, notes, and snippets.

@akey7
Created March 25, 2020 04:45
Show Gist options
  • Save akey7/5d11e587881cdc1a0a28bff1df7493da to your computer and use it in GitHub Desktop.
Save akey7/5d11e587881cdc1a0a28bff1df7493da to your computer and use it in GitHub Desktop.
Combine still images into a movie with ffmpeg
# 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