2 回答
TA贡献1801条经验 获得超16个赞
使用最新版ffmpeg-0.11 libx264-125,使用默认编码时,用Eyecard发现profile-idc一直是PROFILE_H264_HIGH (profile-idc=100),但是项目要求是baseline,设置了AVCodecContext的->profile=FF_PROFILE_H264_BASELINE也没用,经过多方查找,需要如下解决方法:AVDictionary *opts = NULL;av_dict_set(&opts, "profile", "baseline", 0); /* open the codec */ if (avcodec_open2(m_pEncoderCtx, encoder, &opts) < 0) 真是曲折啊。
TA贡献1887条经验 获得超5个赞
使用最新版ffmpeg-0.11 libx264-125,使用默认编码时,用Eyecard发现profile-idc一直是PROFILE_H264_HIGH (profile-idc=100),但是项目要求是baseline,设置了AVCodecContext的->profile=FF_PROFILE_H264_BASELINE也没用,经过多方查找,需要如下解决方法:AVDictionary *opts = NULL;av_dict_set(&opts, "profile", "baseline", 0); /* open the codec */ if (avcodec_open2(m_pEncoderCtx, encoder, &opts) < 0) 真是曲折啊。
- 2 回答
- 0 关注
- 1371 浏览
添加回答
举报