libx264 - 设置 HD 和 AVCodecContext标清采集
我正在尝试正确配置 AVCodecContext 以便实时捕获高清 (1080i) 和标清 (720 x 576) - 也是隔行扫描。我在 Windows 操作系统上使用 libx264 和 ffmpeg 静态库。 如果有人可以帮助 flags
、gop_size
、max_b_frames
和所有其他 AVCodecContext 的成员...
例如,我想我应该有 CODEC_FLAG_INTERLACED_ME | CODEC_FLAG_INTERLACED_DCT
标志已设置。然而,我需要的是如何设置这一切的整个故事。
I'm trying to configure the AVCodecContext
properly in order to capture HD in real-time (1080i) and SD (720 x 576) - also interlaced. I'm using libx264 with the ffmpeg static lib on Windows OS.
If anybody can help with flags
, gop_size
, max_b_frames
and all other AVCodecContext's members...
For example, I guess I should have CODEC_FLAG_INTERLACED_ME | CODEC_FLAG_INTERLACED_DCT
flags set. However, what I need is the whole story on how to set all this up.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的目标是实时编码,只需使用:
这将设置您需要的内容。
如果您有带宽要求,您可能需要在此基础上设置 VBV 参数。
If you are aiming for real time encoding, just use:
This will set what you need.
You may want to set VBV parameters on top of this if you have bandwidth requirements.
不要设置任何选项,除非您知道它们已经不适合您。 libav 0.8 默认设置正确。
Don't set any options unless you know they're already not right for you. libav 0.8 sets everything correctly by default.