利用FFmpeg按視頻關(guān)鍵幀精準(zhǔn)切割合武。

在xcode上開(kāi)發(fā)

//param splitSeconds 為視頻分割的時(shí)長(zhǎng)

+ (BOOL)executeSplit:(unsignedint)splitSeconds {

? ? AVFormatContext*ifmtCtx,*ofmtCtx;

? ? charconst? ? ? *inputFileName, *outputFileName;

? ? int? ? ? ? ? ? video_index;

? ? inputFileName = [[[NSBundle mainBundle] pathForResource:@"test" ofType:@"mp4"] UTF8String];

? ? outputFileName ="/Users/ubaby/Library/Containers/bylh.testFFmpegOS/Data/Documents/test0.mp4";

? ? AVPacketreadPkt, splitKeyPacket;

? ? intret;

? ? av_register_all();

? ? if((ret =avformat_open_input(&ifmtCtx, inputFileName,0,0)) <0) {

? ? ? ? return false;

? ? }


? ? if((ret =avformat_find_stream_info(ifmtCtx,0)) <0) {

? ? ? ? return false;

? ? }

? ? for(inti =0; i < ifmtCtx->nb_streams; i++) {


? ? ? ? AVStream*in_stream = ifmtCtx->streams[i];

? ? ? ? if(in_stream->codec->codec_type==AVMEDIA_TYPE_VIDEO){

? ? ? ? ? ? video_index = i;

? ? ? ? }


? ? }

? ? intden = ifmtCtx->streams[video_index]->r_frame_rate.den;

? ? intnum = ifmtCtx->streams[video_index]->r_frame_rate.num;

? ? floatfps = (float)num / den;

? ? unsignedintsplitVideoSize = fps*splitSeconds;

? ? charconst? ? ? *save_name = outputFileName;

? ? charconst? ? ? *temp_name = save_name;

? ? avformat_alloc_output_context2(&ofmtCtx, NULL, NULL, temp_name);


? ? if(!ofmtCtx) {

? ? ? ? return false;

? ? }

? ? if (![testVideo writeVideoHeader:ifmtCtx out_filename:ofmtCtx out_filename:temp_name])

? ? {

? ? ? ? return false;

? ? }

? ? NSMutableArray *vecKeyFramePos = [NSMutableArray arrayWithCapacity:1];


? ? uint64_tframe_index =0;

? ? uint64_tkeyFrame_index =0;

? ? intframeCount =0;

? ? //讀取分割點(diǎn)附近的關(guān)鍵幀位置

? ? while(1)

? ? {

? ? ? ? ++frame_index;

? ? ? ? ret =av_read_frame(ifmtCtx, &readPkt);

? ? ? ? if(ret <0)

? ? ? ? {

? ? ? ? ? ? break;

? ? ? ? }

? ? ? ? //過(guò)濾掩蛤,只處理視頻流

? ? ? ? if(readPkt.stream_index== video_index){

? ? ? ? ? ? ++frameCount;

? ? ? ? ? ? if(readPkt.flags&AV_PKT_FLAG_KEY)

? ? ? ? ? ? {

? ? ? ? ? ? ? ? keyFrame_index = frame_index;

? ? ? ? ? ? }

? ? ? ? ? ? if(frameCount==splitVideoSize)

? ? ? ? ? ? {

? ? ? ? ? ? ? ? //? ? ? ? ? ? ? ? vecKeyFramePos.push_back(keyFrame_index);

? ? ? ? ? ? ? ? [vecKeyFramePosaddObject:[NSNumbernumberWithUnsignedLongLong:keyFrame_index]];

? ? ? ? ? ? ? ? frameCount =0;

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? av_packet_unref(&readPkt);

? ? }


? ? avformat_close_input(&ifmtCtx);

? ? ifmtCtx =NULL;

? ? //為了重新獲取avformatcontext

? ? if((ret =avformat_open_input(&ifmtCtx, inputFileName,0,0)) <0) {

? ? ? ? return-1;

? ? }


? ? if((ret =avformat_find_stream_info(ifmtCtx,0)) <0) {

? ? ? ? return-1;

? ? }

? ? intnumber =0;

? ? av_init_packet(&splitKeyPacket);

? ? splitKeyPacket.data=NULL;

? ? splitKeyPacket.size=0;

? ? //時(shí)長(zhǎng)對(duì)應(yīng)的幀數(shù)超過(guò)視頻的總視頻幀數(shù)蔽介,則拷貝完整視頻

? ? if(!vecKeyFramePos.count){

? ? ? ? [vecKeyFramePosaddObject:[NSNumbernumberWithUnsignedLongLong:frame_index]];

? ? }

? ? keyFrame_index = [[vecKeyFramePosfirstObject]unsignedLongLongValue];


? ? NSUIntegerkeyFrameIter =1;

? ? frame_index =0;

? ? int64_tlastPts =0;

? ? int64_tlastDts =0;

? ? int64_tprePts =0;

? ? int64_tpreDts =0;

? ? while(1)

? ? {

? ? ? ? ++frame_index;

? ? ? ? ret =av_read_frame(ifmtCtx, &readPkt);

? ? ? ? if(ret <0)

? ? ? ? {

? ? ? ? ? ? break;

? ? ? ? }


? ? ? ? av_packet_rescale_ts(&readPkt, ifmtCtx->streams[readPkt.stream_index]->time_base, ofmtCtx->streams[readPkt.stream_index]->time_base);

? ? ? ? prePts = readPkt.pts;

? ? ? ? preDts = readPkt.dts;

? ? ? ? readPkt.pts-= lastPts;

? ? ? ? readPkt.dts-= lastDts;

? ? ? ? if(readPkt.pts< readPkt.dts)

? ? ? ? {

? ? ? ? ? ? readPkt.pts= readPkt.dts+1;

? ? ? ? }

? ? ? ? //為分割點(diǎn)處的關(guān)鍵幀要進(jìn)行拷貝

? ? ? ? if(readPkt.flags&AV_PKT_FLAG_KEY&&frame_index == keyFrame_index)

? ? ? ? {

? ? ? ? ? ? av_copy_packet(&splitKeyPacket, &readPkt);

? ? ? ? }

? ? ? ? else{

? ? ? ? ? ? ret =av_interleaved_write_frame(ofmtCtx, &readPkt);

? ? ? ? ? ? if(ret <0) {

? ? ? ? ? ? ? ? //break;


? ? ? ? ? ? }

? ? ? ? }


? ? ? ? if(frame_index == keyFrame_index)

? ? ? ? {

? ? ? ? ? ? lastDts = preDts;

? ? ? ? ? ? lastPts = prePts;

? ? ? ? ? ? if(keyFrameIter < vecKeyFramePos.count)

? ? ? ? ? ? {

? ? ? ? ? ? ? ? keyFrame_index = [vecKeyFramePos[keyFrameIter]unsignedLongLongValue];

? ? ? ? ? ? ? ? keyFrameIter++;

? ? ? ? ? ? }


? ? ? ? ? ? av_write_trailer(ofmtCtx);

? ? ? ? ? ? avio_close(ofmtCtx->pb);

? ? ? ? ? ? avformat_free_context(ofmtCtx);

? ? ? ? ? ? ++number;

? ? ? ? ? ? NSString *tempStr = [NSString stringWithFormat:@"/Users/ubaby/Library/Containers/bylh.testFFmpegOS/Data/Documents/test%d.mp4",number];

? ? ? ? ? ? NSLog(@"===========%@",tempStr);

? ? ? ? ? ? temp_name = [tempStrUTF8String];

? ? ? ? ? ? avformat_alloc_output_context2(&ofmtCtx,NULL,NULL, temp_name);

? ? ? ? ? ? if(!ofmtCtx) {

? ? ? ? ? ? ? ? returnfalse;

? ? ? ? ? ? }

? ? ? ? ? ? if(![testVideowriteVideoHeader:ifmtCtxout_filename:ofmtCtxout_filename:temp_name])

? ? ? ? ? ? {

? ? ? ? ? ? ? ? returnfalse;

? ? ? ? ? ? }

? ? ? ? ? ? splitKeyPacket.pts=0;

? ? ? ? ? ? splitKeyPacket.dts=0;

? ? ? ? ? ? //把上一個(gè)分片處的關(guān)鍵幀寫(xiě)入到下一個(gè)分片的起始處,保證下一個(gè)分片的開(kāi)頭為I幀

? ? ? ? ? ? ret =av_interleaved_write_frame(ofmtCtx, &splitKeyPacket);

? ? ? ? }



? ? ? ? av_packet_unref(&readPkt);


? ? }

? ? av_packet_unref(&splitKeyPacket);

? ? av_write_trailer(ofmtCtx);

? ? avformat_close_input(&ifmtCtx);

? ? avio_close(ofmtCtx->pb);

? ? avformat_free_context(ofmtCtx);


? ? return true;

}

+ (BOOL)writeVideoHeader:(AVFormatContext*)ifmtCtx out_filename:(AVFormatContext*)ofmtCtx out_filename:(charconst*)out_filename

{

? ? AVOutputFormat *ofmt = NULL;

? ? intret;

? ? int? ? ? ? ? ? video_index;


? ? ofmt = ofmtCtx->oformat;

? ? for(inti =0; i < ifmtCtx->nb_streams; i++) {


? ? ? ? //∏????‰????¥¥Ω??‰≥???£?Create output AVStream according to input AVStream£?

? ? ? ? AVStream*in_stream = ifmtCtx->streams[i];

? ? ? ? if(in_stream->codec->codec_type==AVMEDIA_TYPE_VIDEO){

? ? ? ? ? ? video_index = i;

? ? ? ? }

? ? ? ? AVStream*out_stream =avformat_new_stream(ofmtCtx, in_stream->codec->codec);

? ? ? ? if(!out_stream) {

? ? ? ? ? ? ret =AVERROR_UNKNOWN;

? ? ? ? ? ? returnfalse;

? ? ? ? }

? ? ? ? //∏¥÷?AVCodecContextμ?…?÷√£?Copy the settings of AVCodecContext£?

? ? ? ? ret =avcodec_copy_context(out_stream->codec, in_stream->codec);

? ? ? ? if(ret <0) {

? ? ? ? ? ? returnfalse;

? ? ? ? }

? ? ? ? out_stream->codec->codec_tag=0;

? ? ? ? if(ofmtCtx->oformat->flags&AVFMT_GLOBALHEADER)

? ? ? ? ? ? out_stream->codec->flags|=AV_CODEC_FLAG_GLOBAL_HEADER;


? ? }

? ? if(!(ofmt->flags&AVFMT_NOFILE)) {

? ? ? ? ret =avio_open(&ofmtCtx->pb, out_filename,AVIO_FLAG_WRITE);

? ? ? ? if(ret <0) {

? ? ? ? ? ? returnfalse;

? ? ? ? }

? ? }

? ? ret =avformat_write_header(ofmtCtx,NULL);

? ? if(ret <0){

? ? ? ? return false;

? ? }

? ? return true;

}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末扣典,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子慎玖,更是在濱河造成了極大的恐慌贮尖,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,383評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件趁怔,死亡現(xiàn)場(chǎng)離奇詭異湿硝,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)润努,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,522評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門关斜,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人铺浇,你說(shuō)我怎么就攤上這事痢畜。” “怎么了鳍侣?”我有些...
    開(kāi)封第一講書(shū)人閱讀 157,852評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵丁稀,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我倚聚,道長(zhǎng)二驰,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,621評(píng)論 1 284
  • 正文 為了忘掉前任秉沼,我火速辦了婚禮,結(jié)果婚禮上矿酵,老公的妹妹穿的比我還像新娘唬复。我一直安慰自己,他們只是感情好全肮,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,741評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布敞咧。 她就那樣靜靜地躺著,像睡著了一般辜腺。 火紅的嫁衣襯著肌膚如雪休建。 梳的紋絲不亂的頭發(fā)上乍恐,一...
    開(kāi)封第一講書(shū)人閱讀 49,929評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音测砂,去河邊找鬼茵烈。 笑死,一個(gè)胖子當(dāng)著我的面吹牛砌些,可吹牛的內(nèi)容都是我干的呜投。 我是一名探鬼主播,決...
    沈念sama閱讀 39,076評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼存璃,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼仑荐!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起纵东,我...
    開(kāi)封第一講書(shū)人閱讀 37,803評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤粘招,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后偎球,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體洒扎,經(jīng)...
    沈念sama閱讀 44,265評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,582評(píng)論 2 327
  • 正文 我和宋清朗相戀三年甜橱,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了逊笆。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,716評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡岂傲,死狀恐怖难裆,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情镊掖,我是刑警寧澤乃戈,帶...
    沈念sama閱讀 34,395評(píng)論 4 333
  • 正文 年R本政府宣布,位于F島的核電站亩进,受9級(jí)特大地震影響症虑,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜归薛,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,039評(píng)論 3 316
  • 文/蒙蒙 一谍憔、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧主籍,春花似錦习贫、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,798評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至幸海,卻和暖如春祟身,著一層夾襖步出監(jiān)牢的瞬間奥务,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,027評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工袜硫, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留氯葬,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,488評(píng)論 2 361
  • 正文 我出身青樓父款,卻偏偏與公主長(zhǎng)得像溢谤,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子憨攒,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,612評(píng)論 2 350

推薦閱讀更多精彩內(nèi)容