view scripts/gource-vid.sh @ 619:4ffa9d159588

Some coordinate operators, to reduce foo_x, foo_y everywhere.
author Jeremy Thurgood <firxen@gmail.com>
date Fri, 06 May 2011 16:37:43 +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