Skip to content

Instantly share code, notes, and snippets.

@samuelcolvin
Created April 12, 2016 14:56
Show Gist options
  • Save samuelcolvin/4ef82b60979e1d73c1fc70b894b81402 to your computer and use it in GitHub Desktop.
Save samuelcolvin/4ef82b60979e1d73c1fc70b894b81402 to your computer and use it in GitHub Desktop.
creating version history video of TutorCruncher
# to create the initial video, you need to press U twice once the video has started to force user names
gource -1920x1080 -o - --seconds-per-day 0.01 --hide progress,filenames | ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i - -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 TutorCruncher.mp4
# to convert it to webm and make it a resonable size
ffmpeg -i TutorCruncher.mp4 -codec:v libvpx -b:v 3600k -an TutorCruncher.webm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment