comparison scripts/gource-vid.sh @ 614:bc793415259c

Script for generating gource videos of commits.
author Simon Cross <hodgestar@gmail.com>
date Sun, 24 Apr 2011 20:46:06 +0200
parents
children
comparison
equal deleted inserted replaced
613:303087bcf1fa 614:bc793415259c
1 #!/bin/sh
2 # generate video for .py and .json commits
3 gource --highlight-all-users -800x600 --stop-position 0.95 \
4 --file-filter '^(?>.*\.)(?!py|json$)' --output-ppm-stream - \
5 | ffmpeg -y -b 6000K -r 30 -f image2pipe -vcodec ppm -i - \
6 -vcodec mpeg4 -vtag xvid skaapsteker-coding.mp4
7 # generate video for all commits
8 gource --highlight-all-users -800x600 --stop-position 0.95 \
9 --output-ppm-stream - \
10 | ffmpeg -y -b 6000K -r 30 -f image2pipe -vcodec ppm -i - \
11 -vcodec mpeg4 -vtag xvid skaapsteker-all.mp4