Skip to content

Instantly share code, notes, and snippets.

@christopher-baek
Last active April 3, 2016 21:42
Show Gist options
  • Save christopher-baek/bb1baecb9209bf45bd9b7e47d6499abb to your computer and use it in GitHub Desktop.
Save christopher-baek/bb1baecb9209bf45bd9b7e47d6499abb to your computer and use it in GitHub Desktop.
Gource Example
# Install ffmpeg
brew install ffmpeg
# Install gource
brew install gource
# Generate video (run in repo)
gource --hide dirnames,filenames --seconds-per-day 0.1 --auto-skip-seconds 1 -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