我正在基于标准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);
相关的“选项” /“值”对就是您从例如vp8编码指南中获得的对FFmpeg Wiki。例如,要将比特率设置为1 mbps(Wiki中的第一个示例),请使用:
av_dict_set_int(&options, "b", 1024 * 1024, 0);
要么
av_dict_set(&options, "b", "1M", 0);
我建议使用VP9而不是VP8,使用VP8不会获得很好的质量,但这显然是您的选择。
关于c++ - 如何在基于ffmpeg的程序中以编程方式传递VP8编码器选项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38079957/