2 回答

TA貢獻(xiàn)1801條經(jīng)驗(yàn) 獲得超16個(gè)贊
使用最新版ffmpeg-0.11 libx264-125,使用默認(rèn)編碼時(shí),用Eyecard發(fā)現(xiàn)profile-idc一直是PROFILE_H264_HIGH (profile-idc=100),但是項(xiàng)目要求是baseline,設(shè)置了AVCodecContext的->profile=FF_PROFILE_H264_BASELINE也沒(méi)用,經(jīng)過(guò)多方查找,需要如下解決方法:AVDictionary *opts = NULL;av_dict_set(&opts, "profile", "baseline", 0); /* open the codec */ if (avcodec_open2(m_pEncoderCtx, encoder, &opts) < 0) 真是曲折啊。

TA貢獻(xiàn)1887條經(jīng)驗(yàn) 獲得超5個(gè)贊
使用最新版ffmpeg-0.11 libx264-125,使用默認(rèn)編碼時(shí),用Eyecard發(fā)現(xiàn)profile-idc一直是PROFILE_H264_HIGH (profile-idc=100),但是項(xiàng)目要求是baseline,設(shè)置了AVCodecContext的->profile=FF_PROFILE_H264_BASELINE也沒(méi)用,經(jīng)過(guò)多方查找,需要如下解決方法:AVDictionary *opts = NULL;av_dict_set(&opts, "profile", "baseline", 0); /* open the codec */ if (avcodec_open2(m_pEncoderCtx, encoder, &opts) < 0) 真是曲折啊。
- 2 回答
- 0 關(guān)注
- 1421 瀏覽
添加回答
舉報(bào)