29

我们在 Windows 上从 gource ( gource ) 创建视频文件时遇到问题。我们可以运行 gource 并实时观看视频,但似乎无法获得任何有用的物理输出。

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

关键是 image2pipe 格式,它似乎从 ppm 中提取所有帧,而不是将其视为单个图像。

于 2009-11-24T13:12:43.837 回答
0

我用这个程序SmartPixel在 Windows 上制作了美食视频。让 gource 像这样全屏显示:

资源——全屏

在设置中你只需要关闭水印。任何游戏/视频捕捉软件都有相同的用途。

有用的选项:

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

将当前选项保存在文本文件中,您可以从上面看到它的样子 egzample file content: [display] fullscreen=true

gource --load-config config.txt

从配置加载

于 2015-11-05T23:43:10.130 回答
0

预设现已弃用。

这是我用的。

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

更多信息在这里:

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

FFmpeg 不再包含用于 libx264 的基于文本文件的预设和配置文件,即您在 -vpre 选项中使用的内容。这些已被贬值和删除,有利于使用 -preset、-profile:v 和 -tune 选项访问实际的 x264 预设、配置文件(和曲调)。旧文本文件仅模拟官方 x264 预设和配置文件,并且由于一些限制无法提供新系统提供的全部功能。它也更容易维护。

于 2020-06-01T10:32:01.963 回答