Skip to content

Instantly share code, notes, and snippets.

@andrewabest
Created December 18, 2014 23:36
Show Gist options
  • Save andrewabest/bf5dcf223989299c2740 to your computer and use it in GitHub Desktop.
Save andrewabest/bf5dcf223989299c2740 to your computer and use it in GitHub Desktop.
Gource
// 3s/day
c:\temp\gource\gource.exe -o out.ppm -r 25 -s 3 -a 1 --colour-images --hide filenames
c:\temp\ffmpeg\bin\ffmpeg -y -b 3000K -r 60 -f image2pipe -vcodec ppm -i out.ppm -vcodec libx264 -threads 0 gource..avi -fpre "c:\temp\ffmpeg\presets\libvpx-720p.ffpreset"
// Fast 1s/day
c:\temp\gource\gource.exe -o out.fast.ppm -r 25 -s 1 -a 1 --colour-images --hide filenames --font-size 6
c:\temp\ffmpeg\bin\ffmpeg -y -b 3000K -r 60 -f image2pipe -vcodec ppm -i out.fast.ppm -vcodec libx264 -threads 0 gource.fast.avi -fpre "c:\temp\ffmpeg\presets\libvpx-720p.ffpreset"
c:\temp\gource\gource.exe -o out.fast.ppm -r 25 -s 1 -a 1 --colour-images --hide filenames,dirnames --font-size 8 --file-idle-time 0 --max-file-lag 0.1 --key -1920x1080
c:\temp\ffmpeg\bin\ffmpeg -y -b 3000K -r 60 -f image2pipe -vcodec ppm -i out.fast.ppm -vcodec libx264 -threads 0 gource.fast.avi -fpre "c:\temp\ffmpeg\presets\libvpx-1080p.ffpreset"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment