Created
December 13, 2016 17:16
-
-
Save jperelli/79451c00543814de71ff118776285c27 to your computer and use it in GitHub Desktop.
Command to generate gource visualization
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
# Install gource from compiling this http://gource.io/ | |
# Install Prereqs like here http://stackoverflow.com/a/15105901/912450 | |
# From here https://github.com/acaudwell/Gource/wiki/Videos#ffmpeg-using-x264-codec | |
./gource --fullscreen -1280x720 -o - --disable-auto-skip --seconds-per-day 0.1 --camera-mode overview --key -r 60 /<path-to-repo>/ | ../ffmpeg/ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i - -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 gource.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment