29

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 output.

4

3 に答える 3

70
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

重要なのは、個々の画像として扱うのではなく、ppm からすべてのフレームを抽出するように見える image2pipe 形式でした。

于 2009-11-24T13:12:43.837 に答える