Gource on Windows

后端 未结 3 1524
轮回少年
轮回少年 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 03:58

    gource -1024x768 --stop-position 1.0 --highlight-all-users --hide-filenames --seconds-per-day 5 --output-framerate 60 --output-ppm-stream output.ppm
    
    ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i output.ppm  -vcodec wmv1 -r 60 -qscale 0 out.wmv
    

    The key was the image2pipe format which seems to extract all the frames from the ppm rather than treating it as an individual image.

提交回复
热议问题