Skip to content

Commit c17f791

Browse files
timlinuxmach0
authored andcommittedNov 13, 2011
Added gource script (thanks Nathan) and qgis download stats
1 parent b62a777 commit c17f791

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
 

‎doc/qgis-download-stats.ods

29.5 KB
Binary file not shown.

‎scripts/make_gource_video.sh

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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

0 commit comments

Comments
 (0)
Please sign in to comment.