Skip to content

Instantly share code, notes, and snippets.

@naqi
Forked from cgoldberg/gource.sh
Last active September 2, 2016 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naqi/f445d3e5c533a6ac637e7bc718ab5b21 to your computer and use it in GitHub Desktop.
Save naqi/f445d3e5c533a6ac637e7bc718ab5b21 to your computer and use it in GitHub Desktop.
Gource - Mir development video
# install bzr and gource
# get a branch of Mir's trunk code
# create gource video
$ sudo apt-get install bzr gource
$ bzr branch lp:mir
$ cd mir
$ gource \
-s .06 \
-1920x1080 \
--auto-skip-seconds .1 \
--multi-sampling \
--stop-at-end \
--key \
--highlight-users \
--hide mouse,progress \
--file-idle-time 0 \
--max-files 0 \
--background-colour 000000 \
--font-size 22 \
--title "iOS 10 ($ bzr branch lp:mir) August 2016" \
--output-ppm-stream - \
--output-framerate 30 \
| avconv -y -r 30 -f image2pipe -vcodec ppm -i - -b 65536K movie.mp4
# this will create movie.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment