Skip to content

Instantly share code, notes, and snippets.

@afontaine
Created February 2, 2015 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save afontaine/60f72b345d7c0a9c9af6 to your computer and use it in GitHub Desktop.
Save afontaine/60f72b345d7c0a9c9af6 to your computer and use it in GitHub Desktop.
Given a list of repositories, an install of git-bash (or equivalent) and gource + ffmpeg, combine all the repositories into one gource visualization with a logo.
#!/bin/sh
powershell -Command '
Get-ChildItem -Directory | ForEach-Object {
cd $_;
git pull;
cd ..;
gource --output-custom-log "$($_.Name).txt" $_
}
'
cat *.txt | sort -n > gource.log
gource -1920x1080 -o gource.ppm --hide-root --hide filenames,dirnames \
--stop-at-end --seconds-per-day 60 --logo logo.png --user-scale 5 gource.log
ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i gource.ppm -vcodec libx264 -preset \
ultrafast -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 hackathon.mp4
rm *.txt
rm gource*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment