如何在基于 ffmpeg 的程序中以编程方式传递 VP8 编码器选项

How to pass VP8 encoder option programmatically in ffmpeg based program

我正在使用基于标准 ffmpeg 转码器示例的 ffmpeg 库构建程序。我的目标是构建视频转码器,将任何合适的视频(即 ffmpeg 可以读取的视频)编码为 WEBM 格式。问题是如何将选项传递给 VP8 编码器以控制输出视频质量和其他参数?我的意思是通过 C++ 代码传递这些选项。

使用以下代码:

AVDictionary *options = NULL;
AVCodec *codec = avcodec_find_encoder(AVCODEC_ID_VP8);
AVCodecContext *ctx = avcodec_alloc_context3(codec);

av_dict_set(&options, "option", "value", 0);

int res = avcodec_open2(ctx, codec, &options);
if (res < 0)
    error();

while (..) {
    res = avcodec_encode_video2(ctx, ..);
    if (res < 0)
        error();
}

avcodec_close(ctx);
avcodec_free_context(ctx);

相关的 "option"/"value" 对是您从 vp8 编码指南中获得的任何内容,例如FFmpeg 维基百科。例如,要设置 1 mbps 的比特率(wiki 中的第一个示例),请使用:

av_dict_set_int(&options, "b", 1024 * 1024, 0);

av_dict_set(&options, "b", "1M", 0);

我建议使用 VP9 而不是 VP8,使用 VP8 不会获得很好的质量,但这显然是您的选择。