Skip to content

Instantly share code, notes, and snippets.

@hawkz
Forked from Gnzlt/gourcevideo.sh
Created July 26, 2022 13:25
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 hawkz/57928ceef4168029f01bcfb77ff5620c to your computer and use it in GitHub Desktop.
Save hawkz/57928ceef4168029f01bcfb77ff5620c to your computer and use it in GitHub Desktop.
Gource video export command
#!/bin/bash
gource \
-s .03 \
-1280x720 \
--auto-skip-seconds .1 \
--multi-sampling \
--stop-at-end \
--key \
--highlight-users \
--date-format "%d/%m/%y" \
--hide mouse,filenames \
--file-idle-time 0 \
--max-files 0 \
--background-colour 000000 \
--font-size 25 \
--output-ppm-stream - \
--output-framerate 30 \
| ffmpeg -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