Created
January 29, 2019 21:59
-
-
Save joncardasis/91987660da1caf4e4b2757f1c4cb5f19 to your computer and use it in GitHub Desktop.
gource - generate gource video for git repo
This file contains 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 ffmpeg | |
brew install ffmpeg | |
# Install gource | |
brew install gource | |
# Generate video | |
gource \ | |
--hide filenames \ | |
--seconds-per-day 0.1 \ | |
--auto-skip-seconds 0.1 \ | |
--stop-at-end \ | |
--highlight-users \ | |
--background-colour 000000 \ | |
-1280x720 -o - \ | |
| 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