Gource on Windows

后端 未结 3 1549
轮回少年
轮回少年 2021-01-30 03:40

We\'re having problems on windows creating a video file from gource (gource). We can run gource and watch the video live but don\'t seem to be able to get any useful physical ou

3条回答
  •  情深已故
    2021-01-30 04:07

    Presets are now deprecated.

    Here's what I used.

    gource -f -3840x2160 --camera-mode  track  --file-idle-time 150  --max-file-lag 4 --seconds-per-day 2 --highlight-all-users --output-framerate 30 --output-ppm-stream output.ppm
    
    ffmpeg -i output.ppm -c:v libx264 -crf 24 -preset veryslow output.mp4
    

    More info here:

    https://superuser.com/questions/490683/cheat-sheets-and-presets-settings-that-actually-work-with-ffmpeg-1-0

    FFmpeg does not include text file based presets and profiles anymore for libx264, i.e. what you've used with the -vpre option. These have been depreciated and removed in favor of accessing the actual x264 presets, profiles (and tunes) with the -preset, -profile:v, and -tune options. The old text files only emulated the official x264 presets and profiles, and due to several limitations could not offer full functionality that the new system provides. It is also much easier to maintain.

提交回复
热议问题