Created
May 13, 2015 09:42
-
-
Save badsyntax/34d2d91c639ac0154dba to your computer and use it in GitHub Desktop.
gource.sh
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
| #!/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