mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-03-21 17:24:45 -05:00
29 lines
719 B
Bash
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
|