gpt4 book ai didi

ffmpeg - 有没有一种简单的方法可以在代码中使用带有 ffmpeg 的 x264 预设?

转载 作者:行者123 更新时间:2023-12-04 23:17:36 27 4
gpt4 key购买 nike

我正在尝试使用 ffmpeg 和 x264 对视频进行编码。我知道 ffmpeg 从命令行使用程序 ffm​​peg 时可以使用 x264 预设。但是在代码中使用 ffmpeg 编码时是否可以轻松使用这些预设?

如果没有,从 ffmpeg 代码设置 x264 参数的最佳方法是什么?它只是使用 AVCodecContext 的属性吗?所有的 x264 选项都可以通过这个获得吗?

谢谢!

最佳答案

很抱歉回答得很晚,但我有同样的问题,我想分享我找到的解决方案。
是的,可以通过命令行和 API 传递许多 x264 选项,至少在使用 libav 时(我现在无法用 ffmpeg 确认)。通过发出 avconv --help 你可以找到:

libx264 AVOptions:
-preset <string> E.V.. Set the encoding preset (cf. x264 --fullhelp)
-tune <string> E.V.. Tune the encoding params (cf. x264 --fullhelp)
-profile <string> E.V.. Set profile restrictions (cf. x264 --fullhelp)
-fastfirstpass <int> E.V.. Use fast settings when encoding first pass
-crf <float> E.V.. Select the quality for constant quality mode
-crf_max <float> E.V.. In CRF mode, prevents VBV from lowering quality beyond this point.
-qp <int> E.V.. Constant quantization parameter rate control method
-aq-mode <int> E.V.. AQ method
none E.V..
variance E.V.. Variance AQ (complexity mask)
autovariance E.V.. Auto-variance AQ (experimental)
-aq-strength <float> E.V.. AQ strength. Reduces blocking and blurring in flat and textured areas.
-psy <int> E.V.. Use psychovisual optimizations.
-psy-rd <string> E.V.. Strength of psychovisual optimization, in <psy-rd>:<psy-trellis> format.
-rc-lookahead <int> E.V.. Number of frames to look ahead for frametype and ratecontrol
-weightb <int> E.V.. Weighted prediction for B-frames.
-weightp <int> E.V.. Weighted prediction analysis method.
none E.V..
simple E.V..
smart E.V..
-ssim <int> E.V.. Calculate and print SSIM stats.
-intra-refresh <int> E.V.. Use Periodic Intra Refresh instead of IDR frames.
-b-bias <int> E.V.. Influences how often B-frames are used
-b-pyramid <int> E.V.. Keep some B-frames as references.
none E.V..
strict E.V.. Strictly hierarchical pyramid
normal E.V.. Non-strict (not Blu-ray compatible)
-mixed-refs <int> E.V.. One reference per partition, as opposed to one reference per macroblock
-8x8dct <int> E.V.. High profile 8x8 transform.
-fast-pskip <int> E.V..
-aud <int> E.V.. Use access unit delimiters.
-mbtree <int> E.V.. Use macroblock tree ratecontrol.
-deblock <string> E.V.. Loop filter parameters, in <alpha:beta> form.
-cplxblur <float> E.V.. Reduce fluctuations in QP (before curve compression)
-partitions <string> E.V.. A comma-separated list of partitions to consider. Possible values: p8x8, p4x4, b8x8, i8x8, i4x4, none, all
-direct-pred <int> E.V.. Direct MV prediction mode
none E.V..
spatial E.V..
temporal E.V..
auto E.V..
-slice-max-size <int> E.V.. Limit the size of each slice in bytes
-stats <string> E.V.. Filename for 2 pass stats

使用 AVCodecContext 结构时,您还可以设置这些选项,例如 -rc-lookahead 可以在 AVCodecContext::rc_lookahead 中设置,但我现在不确定 -preset。

希望这可以帮助

关于ffmpeg - 有没有一种简单的方法可以在代码中使用带有 ffmpeg 的 x264 预设?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9868911/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com