我们在Windows上从gource(gource)创建视频文件时遇到问题。我们可以运行gource并观看视频,但似乎无法获得任何有用的物理输出。
答案 0 :(得分:59)
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中提取所有帧,而不是将其视为单个图像。
答案 1 :(得分:1)
我使用此程序SmartPixel在Windows上制作了gource视频。 只需让gource像这样全屏:
gource --fullscreen
在设置中你只需要关闭水印。 任何游戏/视频捕捉软件都有同样的目的。
有用的选项:
gource --fullscreen --save-config config.txt
将当前选项保存在文本文件中,您可以看到它的外观 来自上面的egzample文件内容: [显示] fullscreen = true
gource --load-config config.txt
从配置
加载答案 2 :(得分:0)
现在不建议使用预设。
这就是我用的。
export default class InputText extends React.Component {
constructor(props) {
super(props);
this.state = props;
this.handleKeyChange = this.keyUpHandler.bind(this);
}
keyUpHandler(e) {
this.setState({
data: e.target.value
});
}
render() {
return (
<div>
<label className="label">{this.state.title}</label>
<input type="text" value={this.state.data} onChange={this.handleKeyChange} /> // <-- type something here
value: ({this.state.data}) // <-- this changed
</div>
)
}
}
更多信息在这里:
FFmpeg不再包含基于文本文件的预设和配置文件 对于libx264,即与-vpre选项一起使用的内容。这些有 已被贬值并删除,以便访问实际的x264 -preset,-profile:v和-tune的预设,配置文件(和曲调) 选项。旧的文本文件仅模拟官方的x264预设 和个人资料,由于一些限制而无法提供完整的信息 新系统提供的功能。这也容易得多 维持。