File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ echo " A script to generate a source video progression"
4
+ echo " see http://woostuff.wordpress.com/2011/01/03/generating-a-gource-source-commit-history-visualization-for-qgis-quantum-gis/"
5
+ echo " Run it from the root directory e.g. scripts/$0 "
6
+
7
+ gource --title " Quantum GIS" --logo images/icons/qgis-icon.png \
8
+ --hide filenames \
9
+ --date-format " %d, %B %Y" \
10
+ --seconds-per-day 0.05 \
11
+ --highlight-all-users \
12
+ --auto-skip-seconds 0.5 \
13
+ --file-idle-time 0 \
14
+ --max-files 999999999 \
15
+ --multi-sampling \
16
+ --stop-at-end \
17
+ --elasticity 0.1 \
18
+ -b ffffff \
19
+ --disable-progress \
20
+ --user-friction .2 \
21
+ --output-ppm-stream - | \
22
+ ffmpeg -an -threads 4 -y -b 3000K -vb 8000000 -r 60 -f image2pipe \
23
+ -vcodec ppm -i - -vcodec libx264 -vpre libx264-medium qgis-history.mp4
You can’t perform that action at this time.
0 commit comments