在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;
}
利用FFmpeg按視頻關(guān)鍵幀精準(zhǔn)切割合武。
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門关斜,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人铺浇,你說(shuō)我怎么就攤上這事痢畜。” “怎么了鳍侣?”我有些...
- 文/不壞的土叔 我叫張陵丁稀,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我倚聚,道長(zhǎng)二驰,這世上最難降的妖魔是什么? 我笑而不...
- 正文 為了忘掉前任秉沼,我火速辦了婚禮,結(jié)果婚禮上矿酵,老公的妹妹穿的比我還像新娘唬复。我一直安慰自己,他們只是感情好全肮,可當(dāng)我...
- 文/花漫 我一把揭開(kāi)白布敞咧。 她就那樣靜靜地躺著,像睡著了一般辜腺。 火紅的嫁衣襯著肌膚如雪休建。 梳的紋絲不亂的頭發(fā)上乍恐,一...
- 那天,我揣著相機(jī)與錄音测砂,去河邊找鬼茵烈。 笑死,一個(gè)胖子當(dāng)著我的面吹牛砌些,可吹牛的內(nèi)容都是我干的呜投。 我是一名探鬼主播,決...
- 文/蒼蘭香墨 我猛地睜開(kāi)眼存璃,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼仑荐!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起纵东,我...
- 序言:老撾萬(wàn)榮一對(duì)情侶失蹤粘招,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后偎球,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體洒扎,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年甜橱,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了逊笆。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
- 正文 年R本政府宣布,位于F島的核電站亩进,受9級(jí)特大地震影響症虑,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜归薛,卻給世界環(huán)境...
- 文/蒙蒙 一谍憔、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧主籍,春花似錦习贫、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至幸海,卻和暖如春祟身,著一層夾襖步出監(jiān)牢的瞬間奥务,已是汗流浹背。 一陣腳步聲響...
- 正文 我出身青樓父款,卻偏偏與公主長(zhǎng)得像溢谤,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子憨攒,可洞房花燭夜當(dāng)晚...
推薦閱讀更多精彩內(nèi)容
- 教程一:視頻截圖(Tutorial 01: Making Screencaps) 首先我們需要了解視頻文件的一些基...
- 圖片轉(zhuǎn)視頻 為什么想將圖片轉(zhuǎn)視頻肝集? 是這樣的瞻坝,我打造的任性動(dòng)圖軟件,在編輯制作GIF動(dòng)圖方面杏瞻,已經(jīng)基本完善∷叮現(xiàn)在想...
- 在上一篇筆記中我們已經(jīng)完成了使用SDL播放聲音和視頻,聲音播放沒(méi)有什么問(wèn)題捞挥,而視頻播放太快浮创,很明顯視頻沒(méi)有同步。在...
- //音頻編碼 JNIEXPORT void JNICALL Java_com_tz_dream_ffmpeg_an...