尝试在 FFMPEG C 项目中使用 openH264 作为 libX264 的替代品

Posted

技术标签:

【中文标题】尝试在 FFMPEG C 项目中使用 openH264 作为 libX264 的替代品【英文标题】:Trying to use openH264 as an alternative to libX264 in FFMPEG C project 【发布时间】:2016-03-10 08:31:44 【问题描述】:

我有一个使用 FFMPEG 和 x264 编码器逐帧转码视频的应用程序。我希望发布这个应用程序,但 x264 的许可让我改用 openh264。

我设法顺利编译了所有内容(openh264,然后是 FFMPEG 和 enable-openh264)。我现在正在尝试更正我的 C 代码中的编码器设置,因为适用于 libx264 的方法不再起作用。不幸的是,我发现 FFMPEG/openh264 的 C/C++ 示例非常有限,我将不胜感激任何链接/提示。

我正在使用以下代码(dec_ctx 是我正在解码的视频的 AVCodecContext)

            enc_ctx->height = dec_ctx->height;
            enc_ctx->width = dec_ctx->width;
            enc_ctx->sample_aspect_ratio = dec_ctx->sample_aspect_ratio;
            /* take first format from list of supported formats */
            enc_ctx->pix_fmt = encoder->pix_fmts[0];
            /* video time_base can be set to whatever is handy and supported by encoder */
            enc_ctx->time_base = dec_ctx->time_base;

            enc_ctx->gop_size      = 120; /* emit one intra frame every twelve frames at most */
            enc_ctx->max_b_frames = 16;
            enc_ctx->scenechange_threshold = 0;
            enc_ctx->rc_buffer_size = 0;
            enc_ctx->me_method = ME_ZERO;

            enc_ctx->ticks_per_frame = dec_ctx->ticks_per_frame * ifmt_ctx->streams[i]->time_base.den * ifmt_ctx->streams[i]->r_frame_rate.num/ifmt_ctx->streams[i]->r_frame_rate.den;
            // Set Ultrafast profile. internal name for this preset is baseline
            av_opt_set(enc_ctx->priv_data, "preset", "placebo", AV_OPT_SEARCH_CHILDREN);

我在带有 [OpenH264] 标签的输出中收到以下错误:

[OpenH264] this = 0x0000000019C126C0, Warning:bEnableFrameSkip = 0,bitrate can't be controlled for RC_QUALITY_MODE,RC_BITRATE_MODE and RC_TIMESTAMP_MODE without enabling skip frame.
Output #0, mp4, to 'C:\Dev\temp\geoVid.mp4':
Stream #0:0: Video: h264 (libopenh264), yuv420p, 720x480, q=2-31, 200 kb/s, 90k tbn, 180k tbc
Stream #0:1: Audio: aac, 48000 Hz, stereo, fltp, 96 kb/s
[OpenH264] this = 0x0000000019C126C0, Warning:Actual input framerate fAverageFrameRate = 0.000000 is quite different from framerate in setting 60.000000, please check setting or timestamp unit (ms), start_Ts = 0
[OpenH264] this = 0x0000000019C126C0, Warning:Actual input framerate fAverageFrameRate = 0.000000 is quite different from framerate in setting 60.000000, please check setting or timestamp unit (ms), start_Ts = 0

输出视频文件只播放黑帧。任何指向某些文档的提示或链接将不胜感激。我一直在尝试理解这些错误,但不太确定如何启用“跳帧”或为什么它抱怨我的输入帧速率(这与我使用 libx264 成功编码时的输入相同)

【问题讨论】:

【参考方案1】:

警告建议您必须在设置比特率之前设置一个丢帧模式,因此它将比特率设置为 0。

【讨论】:

以上是关于尝试在 FFMPEG C 项目中使用 openH264 作为 libX264 的替代品的主要内容,如果未能解决你的问题,请参考以下文章

来自 AForge FFMPEG 的图片框为空 - C#/WinForms

为 Visual Studio 开发构建 FFMPEG

FFmpeg:创建支持FFmpeg的AS项目

C#使用FFmpeg冻结处理StandardInput和StandardOutput

C/C++提升 | 基于FFmpeg的视频播放器

ffmpeg libx264 AVCodecContext 设置