Created
July 29, 2015 02:47
-
-
Save oanhnn/11ed4347776b7ceb46e8 to your computer and use it in GitHub Desktop.
Script mark gource video for git project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install git and gource | |
# get a branch of git | |
# create gource video | |
$ sudo apt-get install bzr gource | |
$ git clone [email protected]:oanhnn/slim-skeleton.git project_dir | |
$ cd project_dir | |
$ git checkout master | |
$ gource \ | |
-s .25 \ | |
-1280x720 \ | |
--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 "Project Name" \ | |
--output-ppm-stream - \ | |
--output-framerate 30 \ | |
| avconv -y -r 30 -f image2pipe -vcodec ppm -i - -b 65536K movie.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment