aboutsummaryrefslogtreecommitdiffstats
path: root/gource.sh
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2018-02-17 08:13:27 +0000
committerbloodstalker <thabogre@gmail.com>2018-02-17 08:13:27 +0000
commit8bff748dd325ff45375e6f5948368e1ee024d411 (patch)
tree716f9686867b6a73eec43e9f4103a9f1c6c45079 /gource.sh
parenttravis fix (diff)
downloadmutator-8bff748dd325ff45375e6f5948368e1ee024d411.tar.gz
mutator-8bff748dd325ff45375e6f5948368e1ee024d411.zip
trying to implement the nested call and global object rewriters
Diffstat (limited to 'gource.sh')
-rwxr-xr-xgource.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/gource.sh b/gource.sh
new file mode 100755
index 0000000..703b1c7
--- /dev/null
+++ b/gource.sh
@@ -0,0 +1,32 @@
+#!/bin/bash
+"gource" \
+--path ./ \
+--seconds-per-day 0.15 \
+--title "mutator" \
+-1280x720 \
+--file-idle-time 0 \
+--auto-skip-seconds 0.75 \
+--multi-sampling \
+--stop-at-end \
+--highlight-users \
+--hide filenames,mouse,progress \
+--max-files 0 \
+--background-colour 000000 \
+--disable-bloom \
+--font-size 24 \
+--output-ppm-stream - \
+--output-framerate 30 \
+-o - \
+| ffmpeg \
+-y \
+-r 60 \
+-f image2pipe \
+-vcodec ppm \
+-i - \
+-vcodec libx264 \
+-preset ultrafast \
+-pix_fmt yuv420p \
+-crf 1 \
+-threads 0 \
+-bf 0 \
+./mutator.mp4