# HG changeset patch # User Simon Cross # Date 1303670766 -7200 # Node ID bc793415259cf3d8c35a7d1f60443593b6da649a # Parent 303087bcf1fab886b8ea866b56c11ed807105500 Script for generating gource videos of commits. diff -r 303087bcf1fa -r bc793415259c scripts/gource-vid.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scripts/gource-vid.sh Sun Apr 24 20:46:06 2011 +0200 @@ -0,0 +1,11 @@ +#!/bin/sh +# generate video for .py and .json commits +gource --highlight-all-users -800x600 --stop-position 0.95 \ + --file-filter '^(?>.*\.)(?!py|json$)' --output-ppm-stream - \ + | ffmpeg -y -b 6000K -r 30 -f image2pipe -vcodec ppm -i - \ + -vcodec mpeg4 -vtag xvid skaapsteker-coding.mp4 +# generate video for all commits +gource --highlight-all-users -800x600 --stop-position 0.95 \ + --output-ppm-stream - \ + | ffmpeg -y -b 6000K -r 30 -f image2pipe -vcodec ppm -i - \ + -vcodec mpeg4 -vtag xvid skaapsteker-all.mp4 \ No newline at end of file