Skip to content

Instantly share code, notes, and snippets.

@jperelli
Created December 13, 2016 17:16
Show Gist options
  • Save jperelli/79451c00543814de71ff118776285c27 to your computer and use it in GitHub Desktop.
Save jperelli/79451c00543814de71ff118776285c27 to your computer and use it in GitHub Desktop.
Command to generate gource visualization
# 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