Created
December 13, 2011 18:37
-
-
Save mattfinlayson/1473260 to your computer and use it in GitHub Desktop.
Setting up Gource on OS X
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
brew install sdl sdl_image glew pcre | |
cd gource | |
./configure | |
make | |
sudo make install | |
cd .. | |
brew install ffmpeg | |
mkdir ~/.ffmpeg | |
cd .ffmpeg | |
git clone git://github.com/joeyblake/FFmpeg-Presets.git . | |
gource --file-idle-time 0 --user-image-dir avatars -f -1280x720 --date-format "%D" --title "The title" --hide bloom,filenames --seconds-per-day .25 -o gource.ppm my-project-log.xml | |
ffmpeg -y -b 10000K -r 60 -f image2pipe -vcodec ppm -i gource.ppm -vcodec libx264 -vpre slow -threads 0 -bf 0 gource.x264.mp4 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment