Skip to content

Instantly share code, notes, and snippets.

@bigforcegun
Created March 29, 2023 17:40
Show Gist options
  • Select an option

  • Save bigforcegun/2884b744afc17af4884d5baecb0d1c43 to your computer and use it in GitHub Desktop.

Select an option

Save bigforcegun/2884b744afc17af4884d5baecb0d1c43 to your computer and use it in GitHub Desktop.
Gource to mp4 file
gource --hide dirnames,filenames --seconds-per-day 0.1 --auto-skip-seconds 1 -1280x720 -o - | ffmpeg -y -r 30 -f image2pipe -vcodec ppm -i - -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 gource.mp4
# дожимаем если надо (можно сразу так в ffmpeg из gource)
ffmpeg -i gource.mp4 -vcodec libx265 -crf 28 output.mp4\
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment