view scripts/gource-vid.sh @ 617:2cd713ec8d59

Mark dialogue wrapping bug as fixed.
author Simon Cross <hodgestar@gmail.com>
date Wed, 04 May 2011 01:33:49 +0200
parents bc793415259c
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