Skip to content

Instantly share code, notes, and snippets.

@makeitstrict
Forked from Gnzlt/gourcevideo.sh
Last active May 18, 2022 16:55
Show Gist options
  • Save makeitstrict/6b5acb231504fb52b66c8ecc3d73c9f3 to your computer and use it in GitHub Desktop.
Save makeitstrict/6b5acb231504fb52b66c8ecc3d73c9f3 to your computer and use it in GitHub Desktop.
Gource video export command
#!/bin/bash
gource \
-s .03 \
-3840x2160 \
--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 60 \
| ffmpeg -y -r 60 -f image2pipe -an -vcodec ppm -i - -b:v 69632K movie.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment