短视频从无到有 (二)美颜、断点拍摄及视频合成功能

正文

众所周知,基于OpenGL的GPUImage是一个很出名的框架。使用GPUImage,我们能很轻易的做出美颜效果。其中有多达120多种效果提供给大家使用。今天,我只讲如何使用GPUImage,对于GPUImage的研究,网上有很多资料,大家可以很方便的学习,以后我也会会出个关于GPUImage的专题。

1.美颜的流程为:移除之前所有的处理链->创建美颜滤镜->设置GPUImage处理链。代码如下:

- (void)beautyClick{
   beautyBtn.selected =!beautyBtn.selected;
    if (beautyBtn.selected) {
        
        // 移除之前所有的处理链
        [videoCamera removeAllTargets];
        
        // 创建美颜滤镜
        filter = [[GPUImageBilateralFilter alloc] init];
        
        // 设置GPUImage处理链,从数据->滤镜->界面展示
        [videoCamera addTarget:filter];
        [filter addTarget:filterView];
        
      }else{
        
        // 移除之前所有的处理链
        [videoCamera removeAllTargets];
        [videoCamera addTarget:filterView];
    
    }
 }

2.断点拍摄的流程:开始拍摄时启动一个定时器,到了时间后则停止计时关闭拍摄即可。代码如下:

- (void)starWrite{
    
    deleteBtn.hidden =NO;
    beautyBtn.hidden =YES;
    [self initProgressView];
    
    isRecording =YES;
    seconds =0.00;
    
    [self initMovieWriter];
   
   dispatch_async(dispatch_get_main_queue(), ^{
       
       [movieWriter startRecording];
       [self gcdTimer];
       
   });
    
}

为了精准计时,我使用的是GCD计时器:


- (void)gcdTimer{
   //使用GCD定时器
    NSTimeInterval period =floatTime;
    dispatch_queue_t queue =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    
    _GCDtimer =dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, queue);
    
    dispatch_source_set_timer(_GCDtimer, DISPATCH_TIME_NOW, period * NSEC_PER_SEC, 0 * NSEC_PER_SEC);
    
    dispatch_source_set_event_handler(_GCDtimer, ^{
        
        dispatch_async(dispatch_get_main_queue(), ^{
            
            //回到主线程
            seconds +=floatTime;
            totalTime +=floatTime;
            UIView *view =[self.viewArray lastObject];
            view.frame =CGRectMake(viewX,viewY,seconds*(ScreenWidth/timeSeconds),viewHight);
            
            NSNumber *number =[NSNumber numberWithFloat:totalTime];
            
            //   NSInteger integer =(NSInteger)totalTime;
            
            if ([number integerValue] >=timeSeconds) {
                
                NSLog(@"结束时间%f%ld",totalTime,timeSeconds);
                
                [self stopWrite];
            }
            
          
            
            
        });
        
    });
    
    
    dispatch_resume(_GCDtimer);
}

譬如计时10秒后关闭计时器停止拍摄:

- (void)stopWrite{
    
    //因为GCDtimer较为精准 务必先调用移除定时器的方法 再调用停止录制的方法
    [self removeTimer];
    dispatch_async(dispatch_get_main_queue(), ^{
        //注意顺序
        [movieWriter finishRecording];
        [filter removeTarget:movieWriter];
        videoCamera.audioEncodingTarget = nil;
        
    });
    
    beautyBtn.hidden =NO;
    [self.secondsArray addObject:[NSString stringWithFormat:@"%f",seconds]];
    [self saveModelToVideoArray];
    
    recordBtn.selected =NO;
    
    isRecording =NO;
    
    [self savePhotosAlbum:videoURL];
    NSLog(@"录制时间为%f 当前时间为%f",seconds,totalTime);
        
}

注意:拍摄视频中可能有多次拍摄,在删除不想要的视频时也应该移除相应的时间,确保整个视频的时间是我们设定的时间。还有在保存视频到相册中时需要调用延时的方法,否则可能出现保存失败的情况。

//保存到手机相册
- (void)savePhotosAlbum:(NSURL *)videoPathURL{
    
  //必须调用延时的方法 否则可能出现保存失败的情况
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        
      
        ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
        if ([library videoAtPathIsCompatibleWithSavedPhotosAlbum:videoPathURL])
        {
            [library writeVideoAtPathToSavedPhotosAlbum:videoPathURL completionBlock:^(NSURL *assetURL, NSError *error)
             {
                 /*
                 dispatch_async(dispatch_get_main_queue(), ^{
                     
                     if (error) {
                         UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:@"保存失败"
                                                                        delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
                         [alert show];
                         
                         
                     } else {
                         UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Success" message:@"保存成功"
                                                                        delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
                         [alert show];
                         
                         
                         
                         
                     }
                 });
                  
                  */
             }];
        }
      
        
        
   });
}

3.视频合成即把多个视频合成为一个视频,这需要用到AVFoundation中的AVMutableComposition去处理音频轨和视频轨。需要注意的是:要遍历videosPathArray里的视频,然后取出视频轨和音频轨在首尾处连接,导出视频的用到的是AVAssetExportSession,具体代码如下:

/* 合成视频|转换视频格式
 @param videosPathArray:合成视频的路径数组
 @param outpath:输出路径
 @param outputFileType:视频格式
 @param presetName:分辨率
 @param  completeBlock  mergeFileURL:合成后新的视频URL
 
 
 */
+ (void)mergeAndExportVideos:(NSArray *)videosPathArray withOutPath:(NSString *)outPath outputFileType:(NSString *)outputFileType  presetName:(NSString *)presetName   didComplete:(void(^)(NSError *error,NSURL *mergeFileURL) )completeBlock{
    
    if (videosPathArray.count ==0) {
        
        NSLog(@"请添加视频");
        NSError *error =[NSError errorWithDomain:NSCocoaErrorDomain code:0 userInfo:@{NSLocalizedDescriptionKey:@"视频数目不能为0"}];
        
        if (completeBlock) {
            
            completeBlock(error,nil);
        }
        
        return;
    }
    
    AVMutableComposition *mixComposition = [[AVMutableComposition alloc] init];
    
    
    AVMutableCompositionTrack *audioTrack = [mixComposition addMutableTrackWithMediaType:AVMediaTypeAudio
                                                                        preferredTrackID:kCMPersistentTrackID_Invalid];
    AVMutableCompositionTrack *videoTrack = [mixComposition addMutableTrackWithMediaType:AVMediaTypeVideo
                                                                        preferredTrackID:kCMPersistentTrackID_Invalid];
    CMTime totalDuration = kCMTimeZero;
    for (int i = 0; i < videosPathArray.count; i++) {
        
        NSDictionary* options = @{AVURLAssetPreferPreciseDurationAndTimingKey:@YES
              
                                  };
        
        AVURLAsset *asset =[AVURLAsset URLAssetWithURL:[NSURL fileURLWithPath:videosPathArray[i]] options:options];
        
        NSError *erroraudio = nil;
        
        //获取AVAsset中的音频 或者视频
       AVAssetTrack *assetAudioTrack = [[asset tracksWithMediaType:AVMediaTypeAudio] firstObject];
        //向通道内加入音频或者视频
        BOOL ba = [audioTrack insertTimeRange:CMTimeRangeMake(kCMTimeZero, asset.duration)
                                      ofTrack:assetAudioTrack
                                       atTime:totalDuration
                                        error:&erroraudio];
        
        NSLog(@"erroraudio:%@%d",erroraudio,ba);
        
        NSError *errorVideo = nil;
        AVAssetTrack *assetVideoTrack = [[asset tracksWithMediaType:AVMediaTypeVideo] firstObject];
        BOOL bl = [videoTrack insertTimeRange:CMTimeRangeMake(kCMTimeZero, asset.duration)
                                      ofTrack:assetVideoTrack
                                       atTime:totalDuration
                                        error:&errorVideo];
        
        NSLog(@"errorVideo:%@%d",errorVideo,bl);
        totalDuration = CMTimeAdd(totalDuration, asset.duration);
    }
    
    unlink([outPath UTF8String]);
    NSURL *mergeFileURL = [NSURL fileURLWithPath:outPath];
    if ([[NSFileManager defaultManager] fileExistsAtPath:outPath]) {
        
        [[NSFileManager defaultManager] removeItemAtPath:outPath error:nil];
        
    }
    
    
    
    //输出
    AVAssetExportSession *exporter = [[AVAssetExportSession alloc] initWithAsset:mixComposition
                                                                      presetName:presetName];
    
    exporter.outputURL = mergeFileURL;
    exporter.outputFileType = outputFileType;
    exporter.shouldOptimizeForNetworkUse = YES;
  //因为exporter.progress不可以被监听 所以在这里可以开启定时器取 exporter的值查看进度
    [exporter exportAsynchronouslyWithCompletionHandler:^{
        
        
        dispatch_async(dispatch_get_main_queue(), ^{
            
            switch (exporter.status) {
                case AVAssetExportSessionStatusFailed:{
                    
                    if (completeBlock) {
                        
                        completeBlock(exporter.error,mergeFileURL);
                    }
                    
                    
                    
                    break;
                }
                case AVAssetExportSessionStatusCancelled:{
                    
                    NSLog(@"Export Status: Cancell");
                    
                    break;
                }
                case AVAssetExportSessionStatusCompleted: {
                    
                    if (completeBlock) {
                        
                        completeBlock(nil,mergeFileURL);
                    }
                    
                    
                    break;
                }
                case AVAssetExportSessionStatusUnknown: {
                    
                    NSLog(@"Export Status: Unknown");
                   break;
                }
                case AVAssetExportSessionStatusExporting : {
                    
                    NSLog(@"Export Status: Exporting");
                    break;
                }
                case AVAssetExportSessionStatusWaiting: {
                    
                    NSLog(@"Export Status: Wating");
                    break;
                }
                    
            };
            
            
            });
        
    }];
    
}

大家注意CMTimeAdd的概念,即相当于加法。音视频中的时间 CMTime是一个用c语言定义的结构体,在音视频中有很重要的用途,下面会专门写篇文章介绍,毕竟这个是基础。在合成视频时,也可以设置视频的格式以及分辨率用来转格式和压缩视频。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,922评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,591评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,546评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,467评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,553评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,580评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,588评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,334评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,780评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,092评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,270评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,925评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,573评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,194评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,437评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,154评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,127评论 2 352

推荐阅读更多精彩内容

  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生_X自主阅读 15,979评论 3 119
  • 1.首先安装jdk并配置环境变量 安装studio并安装sdk配置环境变量ANDROID_HOME(环境变量名称)...
    站在街角等你阅读 2,648评论 0 0
  • 羡慕蝉 苦挨七年的黑暗 终换来一夏的呐喊 而我 请告诉我 要忍受多长期限的思念 才能换来 你的偏爱
    马齿苋z阅读 137评论 0 0
  • 大家应该都知道最新微信版本的更新,除了部分的微信bug优化,更重要的是新推出微信小游戏小程序,在这些小游戏中,最受...
    昨东阅读 5,784评论 40 44