Skip to content

Instantly share code, notes, and snippets.

@jengo
Last active February 26, 2018 05:43
Show Gist options
  • Save jengo/3193f65e1c92ed1eeb401fc69e426cc3 to your computer and use it in GitHub Desktop.
Save jengo/3193f65e1c92ed1eeb401fc69e426cc3 to your computer and use it in GitHub Desktop.
blender output to video using ffmpeg and docker
If you have docker installed, this is a simple command to load ffmpeg, link current directory and create a video from the output of blender.
docker run -it --rm -v "`pwd`":/tmp/workdir jrottenberg/ffmpeg -r 24 -f image2 -pattern_type glob -i '*.png' -i %04d.png -s hd1080 -vcodec libx264 -pix_fmt yuv420p -y output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment