gplugin/gplugin

Parents e27afe56fcbe
Children 7c08161e01dc
Add a script for making gource videos, but something is weird in the history and it gets confused
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/makeviz.sh Sun Mar 01 21:04:18 2015 -0600
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+gource \
+ --seconds-per-day .1 \
+ --auto-skip-seconds .1 \
+ --file-idle-time 0 \
+ --multi-sampling \
+ --highlight-users \
+ --stop-at-end \
+ --key \
+ --title "History of GPlugin" \
+ --font-size 26 \
+ -1280x720 \
+ --max-files 0 \
+ --hide filenames,mouse,progress \
+ --output-framerate 30 \
+ -o - \
+| ffmpeg \
+ -y \
+ -r 30 \
+ -f image2pipe \
+ -vcodec ppm \
+ -i - \
+ -vcodec libx264 \
+ -preset ultrafast \
+ -pix_fmt yuv420p \
+ -crf 1 \
+ -threads 0 \
+ -bf 0 \
+ gplugin.mp4
+