Skip to content

Instantly share code, notes, and snippets.

@scottsbaldwin
Created January 25, 2012 21:39
Show Gist options
  • Save scottsbaldwin/1678957 to your computer and use it in GitHub Desktop.
Save scottsbaldwin/1678957 to your computer and use it in GitHub Desktop.
gource on your svn repo
#!/bin/sh
# Refer to:
# http://code.google.com/p/gource/wiki/Videos
# http://code.google.com/p/gource/wiki/SVN
# http://code.google.com/p/gource/wiki/MacSupport
# http://code.google.com/p/gource/wiki/Controls
REVISION=108603
TITLE="Our chef-repo"
svn log -r $REVISION:HEAD --xml --verbose --quiet > svnlog.xml
gource -1280x720 -o gource.ppm --seconds-per-day 1 --auto-skip-seconds 1 --title "$TITLE" svnlog.xml
ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i gource.ppm -vcodec libx264 -preset ultrafast -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