Skip to content

Instantly share code, notes, and snippets.

@badsyntax
Created May 13, 2015 09:42
Show Gist options
  • Select an option

  • Save badsyntax/34d2d91c639ac0154dba to your computer and use it in GitHub Desktop.

Select an option

Save badsyntax/34d2d91c639ac0154dba to your computer and use it in GitHub Desktop.
gource.sh
#!/usr/bin/env bash
git log --pretty=format:user:%aN%n%ct --reverse --raw --encoding=UTF-8 --no-renames --no-merges > gource-git.log
gource \
-800x600 \
--seconds-per-day 1.5 \
--auto-skip-seconds 0.5 \
--multi-sampling \
--stop-at-end \
--highlight-users \
--hide mouse,progress \
--file-idle-time 13 \
--max-files 0 \
--background-colour 000000 \
--title "Title" \
--font-size 26 \
--output-framerate 30 \
-o - \
gource-git.log \
| 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