view 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
line wrap: on
line source

#!/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