Gource on Windows

流过昼夜 提交于 2019-12-03 01:12:23

问题


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.


回答1:


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.




回答2:


I made gource video on windows with this program SmartPixel. Just make gource go fullscreen like that:

gource --fullscreen

In setting you just need to turn off watermark. Any game/video capturing software serves same purpose.

Usefull options:

gource --fullscreen --save-config config.txt

Saves current options in text file and you can see what its look like egzample file content from above: [display] fullscreen=true

gource --load-config config.txt

Loads from config



来源:https://stackoverflow.com/questions/1762960/gource-on-windows

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!