TheKingsRace/websiteData/gource/gourceVidGen.sh
2021-12-10 18:56:41 -06:00

29 lines
719 B
Bash

# Generate a fresh log
rm -f gourceLog.txt
gource --output-custom-log gourceLog.txt
source gourceCustomize.sh
# Generate video and encode to MP4 all in one
gource --1920x1080 \
--auto-skip-seconds 1 \
--seconds-per-day 1.5 \
--max-file-lag 1 \
--file-idle-time 0 \
--max-files 0 \
--bloom-intensity 1.5 \
--title "${projName}" --font-size 24 \
--hide filenames,dirnames,mouse,progress \
--date-format "%B %d" \
--multi-sampling \
--caption-file gourceCaptions.txt \
--caption-size 36 \
--caption-duration 4 \
-o - -r 30 \
gourcelog.txt | \
ffmpeg -y -r 30 \
-f image2pipe -vcodec ppm \
-i - -vcodec libx264 -tune grain \
-preset slow -crf 15 \
-pix_fmt yuv420p -threads 0 \
-bf 0 gourceVideo.mp4