https://github.com/dotnetcarpenter/svg.js_visualization_videos
Visualizations of the svg.js git project using Gource
https://github.com/dotnetcarpenter/svg.js_visualization_videos
Last synced: 5 months ago
JSON representation
Visualizations of the svg.js git project using Gource
- Host: GitHub
- URL: https://github.com/dotnetcarpenter/svg.js_visualization_videos
- Owner: dotnetCarpenter
- Created: 2017-04-12T14:56:51.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-07-14T04:21:03.000Z (11 months ago)
- Last Synced: 2025-07-14T08:55:31.326Z (11 months ago)
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Get the svg.js repo
===================
`git clone --recurse-submodules git@github.com:dotnetCarpenter/svg.js_visualization_videos.git`
or `git submodule update --init`
Commands for Gource
===================
### To get the caption log data from git:
```
cd svg.js && git log --no-walk --tags --pretty="%at|%an released version %D" | sort
```
### To create a video
```
gource -r 25 --file-filter node_modules -c 4.0 --multi-sampling --logo logo-svg-js-01d-128.png --caption-file gource.caption.txt svg.js/
```
### To save a video via pipe (ffmepg)
```
gource -r 25 --file-filter node_modules -c 4.0 --multi-sampling --logo logo-svg-js-01d-128.png - svg.js/ | ffmpeg -y -r 25 -f image2pipe -vcodec ppm -i - -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 svg_history.mp4
```