Created
February 10, 2012 15:05
-
-
Save lest/1790141 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
REPO="$1" | |
OUTFILE="$2" | |
gource -s 2 -i 20 -a 1 --stop-at-end \ | |
--output-ppm-stream - --output-framerate 25 \ | |
--multi-sampling \ | |
--highlight-all-users "$REPO" | \ | |
\ | |
ffmpeg -y -b 6000K -r 25 -f image2pipe -vcodec ppm -i - -vcodec h264 "$OUTFILE" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment