1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#!/bin/bash
#
# Use Q in gource to see the "log position" to be used with --start-position and
# --stop-position .
#
# Use -c with a value greater than 1.0 to speed up the animation even further.
#
# Use -H to see all the possible gource options.
#
# FFMpeg encoding quality and options are practically arbitrary. Now the video is
# 720p (-1280x720), but consider increasing the bitrate (-b) or improve quality some
# other way.
#
gource --logo artwork/gemrb-logo.png --title "GemRB development $(date +%Y)" \
--seconds-per-day 1 --auto-skip-seconds 1 \
--bloom-intensity 0.001 \
-p 0.9447 -1280x720 --multi-sampling -o - |
ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i - \
-vcodec libvpx -preset ultrafast -b:v 10000K gource.webm
|