Skip to content

Commit

Permalink
Development- fix for Gource Viz script (#20393)
Browse files Browse the repository at this point in the history
image path was broken at some point
  • Loading branch information
kumavis authored Oct 3, 2023
1 parent fb8d018 commit be3aa42
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions development/gource-viz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -x
gource \
--seconds-per-day .025 \
--user-scale 1.5 \
--default-user-image "./images/icon-512.png" \
--default-user-image "./app/images/icon-512.png" \
--viewport 1280x720 \
--auto-skip-seconds .05 \
--multi-sampling \
Expand All @@ -21,4 +21,13 @@ gource \
--title "MetaMask Development History" \
--output-ppm-stream - \
--output-framerate 30 \
| ffmpeg -y -r 30 -f image2pipe -vcodec ppm -i - -b 65536K metamask-dev-history.mp4
| \
ffmpeg \
-y \
-r 30 \
-f image2pipe \
-vcodec ppm \
-i \
- \
-b:v 65536K \
metamask-dev-history.mp4

0 comments on commit be3aa42

Please sign in to comment.