Skip to content

Instantly share code, notes, and snippets.

@adamency
Forked from Gnzlt/gourcevideo.sh
Last active October 13, 2023 16:48
Show Gist options
  • Save adamency/626015576ab7853e17a298df2e432064 to your computer and use it in GitHub Desktop.
Save adamency/626015576ab7853e17a298df2e432064 to your computer and use it in GitHub Desktop.
Gource video export command
#!/bin/bash
gource \
-1280x720 \
-c 4 \
--multi-sampling \
--stop-at-end \
--key \
--highlight-users \
--hide mouse,filenames \
--file-idle-time 0 \
--max-files 0 \
--background-colour 000000 \
--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