Skip to content

Instantly share code, notes, and snippets.

@dereckmezquita
Created November 7, 2021 03:21
Show Gist options
  • Save dereckmezquita/747a0ff172435e8515a41d397c19d7f3 to your computer and use it in GitHub Desktop.
Save dereckmezquita/747a0ff172435e8515a41d397c19d7f3 to your computer and use it in GitHub Desktop.
Some bash code on running the gource utility for visualising GitHub repo contributions.
cd /Users/Dereck/Desktop/digibyte
gource \
-s .06 \
-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 "This is video digibyte_gource /Users/Dereck/Desktop/" \
--output-ppm-stream - \
--output-framerate 30 \
ffmpeg -y -r 30 -f image2pipe -vcodec ppm -i - -b 65536K movie.mp4
//Set Up Code
git clone 'https://github.com/digibyte/digibyte' && \
cd digibyte && \
gource
//
//This one works DIGIBYTE
gource --title "DigiByte Global Blockchain || 2014 - 2019" --font-size 35 --start-date "2014-01-01" --logo DigiByteLogo.png --follow-user "Jared Tate" --follow-user "digibyte" --follow-user "ChillingSilence" --user-image-dir /Users/Dereck/coding/crypto/digibyteGourceTwo --hide dirnames,filenames --seconds-per-day 0.005 --auto-skip-seconds 1 -800x534 -o - | ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i - -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 gource.mp4
//Set Up Code
git clone 'https://github.com/vertcoin-project/vertcoin-core' && \
cd digibyte && \
gource
//
//This one works VERTCOIN
gource --title "Vertcoin Project" --font-size 35 --start-date "2014-01-01" --logo VertcoinLogo.png --follow-user "Jared Tate" --follow-user "digibyte" --user-image-dir /Users/Dereck/digibyte --hide dirnames,filenames --seconds-per-day 0.15 --auto-skip-seconds 1 -1920x1080 -o - | ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i - -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 gource.mp4
//
gource --title "Vertcoin || 2014 - 2019" --font-size 40 --start-date "2014-01-01" --logo vertcoinLogo.png --follow-user "James Lovejoy" --user-image-dir /Users/Dereck/coding/crypto/vertcoin/vertcoin-core --hide dirnames,filenames --seconds-per-day 0.15 --auto-skip-seconds 1 -1920x1080 -o - | ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i - -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 gource.mp4
@dereckmezquita
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment