Last active
February 26, 2018 05:43
-
-
Save jengo/3193f65e1c92ed1eeb401fc69e426cc3 to your computer and use it in GitHub Desktop.
blender output to video using ffmpeg and docker
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
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