我正在尝试捕获相机输出并使用libavcodec制作视频。作为如何完成此操作的示例,我使用了ffmpeg muxing example。
问题是4秒视频大小约为15mb,比特率为~30000 kb / s,虽然我已经将AVCodecContext上的比特率设置为400000(我认为这个值是以比特/秒为单位,而不是kb /秒)。
我还尝试在命令行中使用ffmpeg录制视频,其比特率为~700 kb / s。
有没有人知道为什么不保留比特率,因此生成的文件非常大?我用来初始化编解码器上下文的代码如下:
初始化部分:
avformat_alloc_output_context2(&m_formatContext, NULL, NULL, filename);
outputFormat = m_formatContext->oformat;
codec = avcodec_find_encoder(outputFormat->video_codec);
m_videoStream = avformat_new_stream(m_formatContext, codec);
m_videoStream->id = m_formatContext->nb_streams - 1;
codecContext = m_videoStream->codec;
codecContext->codec_id = outputFormat->video_codec;
codecContext->width = m_videoResolution.width();
codecContext->height = m_videoResolution.height();
int m_bitRate = 400000;
codecContext->bit_rate = m_bitRate;
codecContext->rc_min_rate = m_bitRate;
codecContext->rc_max_rate = m_bitRate;
codecContext->bit_rate_tolerance = 0;
codecContext->time_base.den = 20;
codecContext->time_base.num = 1;
codecContext->pix_fmt = AV_PIX_FMT_YUV422P;
if (m_formatContext->oformat->flags & AVFMT_GLOBALHEADER)
codecContext->flags |= CODEC_FLAG_GLOBAL_HEADER;
/* open it */
ret = avcodec_open2(codecContext, codec, NULL);
avFrame = avcodec_alloc_frame();
ret = avpicture_alloc(&avPicture, codecContext->pix_fmt, codecContext->width, codecContext->height);
*((AVPicture *)avFrame) = avPicture;
av_dump_format(m_formatContext, 0, filename, 1);
if (!(outputFormat->flags & AVFMT_NOFILE)) {
ret = avio_open(&m_formatContext->pb, filename, AVIO_FLAG_WRITE);
}
ret = avformat_write_header(m_formatContext, NULL);
if (avFrame)
avFrame->pts = 0;
答案 0 :(得分:2)
因为每个编码器都有自己的配置文件,所以您提供的比特率是一个提示。如果你的比特率是一个有效值(不是太小而不是太大),编解码器只会在他的个人资料列表中选择一个支持的比特率。
编解码器“功能”也可能影响比特率,但据我所知。
编解码器配置文件定义至少:
之间的相关性我仍然很难找到一种方法来使用api从编解码器中获取比特率,但是你可以在打开编解码器之前通过给出一个非常低的比特率来找出它的配置文件。
代码
codecContext->bit_rate = 1;
avcodec_open2(codecContext, codec, NULL);
FFmpeg编解码器将记录上面列出的投诉和可接受的元组列表。
注意:仅尝试使用不需要外部库的编解码器