给视频加水印

#import  <Photos/Photos.h>

#import <AssetsLibrary/AssetsLibrary.h>

#import "GPUImage.h"



@property (nonatomic, strong) GPUImageMovie *movieFile;

@property (nonatomic, strong) GPUImageMovieWriter      *movieWriter;

@property (nonatomic, strong) GPUImageNormalBlendFilter *filter;



//网络视频保存到本地

-(void)saveVideo{

    dispatch_queue_t queue = dispatch_queue_create("hmj", DISPATCH_QUEUE_CONCURRENT);

    dispatch_async(queue, ^{

        NSLog(@"我是第一个任务, 当前线程:%@ ,是否主线程%d",[NSThread currentThread],[NSThread isMainThread]);

        NSString *filePath;

        NSDate *date = [NSDate date];

        NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:self.videoModel.videoUrl]];

        NSURLResponse *response;

        NSError *error;

        NSData* result = [NSURLConnection sendSynchronousRequest:theRequest returningResponse:&response error:&error];

        NSLog(@"Response expects %lld bytes", [response expectedContentLength]);

        NSLog(@"Response suggested file name: %@", [response suggestedFilename]);

        if ([response suggestedFilename])

            //            self.savePath = [DEST_PATH stringByAppendingString:[response suggestedFilename]];


            if (!result)

                NSLog(@"Error downloading data: %@.", [error localizedDescription]);

            else if (response.expectedContentLength < 0)

                NSLog(@"Error with download. Carrier redirect?");

            else

            {

                NSLog(@"Download succeeded.");

                NSLog(@"Read %ld bytes", result.length);

                NSLog(@"Elapsed time: %0.2f seconds.", -1*[date timeIntervalSinceNow]);


                NSString *docDirPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];

                filePath = [NSString stringWithFormat:@"%@/video.mp4",docDirPath];


                if ([result writeToFile:filePath atomically:YES]) {

                    NSLog(@"succeed");

                    [self saveVideo:filePath];

                }else{

                    NSLog(@"faild");

                }

            }


    });

}


//videoPath为视频下载到本地之后的本地路径

- (void)saveVideo:(NSString *)videoPath{

    if (videoPath) {

//加水印

        NSURL *videoURL = [NSURL fileURLWithPath:videoPath];

        [self saveVedioPath:videoURL WithWaterImg:[UIImage imageNamed:@"wylb"] WithCoverImage:[UIImage imageNamed:@"wylb"] WithQustion:[NSString stringWithFormat:@"令令号:%@",[LLManagerTool getUserRequireId]] WithFileName:@"waterVideo"];

//不加水印直接保存

//        if (UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(videoPath)) {

//            //保存相册核心代码

//            UISaveVideoAtPathToSavedPhotosAlbum(videoPath, self, @selector(video:didFinishSavingWithError:contextInfo:), nil);

//        }


    }


}

//不加水印

-(void)video:(NSString *)videoPath didFinishSavingWithError:(NSError *)error contextInfo: (void *)contextInfo{

    if (error) {

        NSLog(@"保存视频失败%@", error.localizedDescription);


        if (_isShowBlock) {

            _isShowBlock(NO,@"保存失败",@"保存至相册");

        }

    }

    else {

        NSLog(@"保存视频成功");

        if (_isShowBlock) {

            _isShowBlock(NO,@"保存成功",@"保存至相册");

        }

    }


}


//加水印保存在本地

-(void)saveVedioPath:(NSURL*)vedioPath WithWaterImg:(UIImage*)img WithCoverImage:(UIImage*)coverImg WithQustion:(NSString*)question WithFileName:(NSString*)fileName

{

    // 滤镜

    //    filter = [[GPUImageDissolveBlendFilter alloc] init];

    //    [(GPUImageDissolveBlendFilter *)filter setMix:0.0f];

    //也可以使用透明滤镜

    //    filter = [[GPUImageAlphaBlendFilter alloc] init];

    //    //mix即为叠加后的透明度,这里就直接写1.0了

    //    [(GPUImageDissolveBlendFilter *)filter setMix:1.0f];

    _filter = [[GPUImageNormalBlendFilter alloc] init];

    NSURL *sampleURL  = vedioPath;

    AVAsset *asset = [AVAsset assetWithURL:sampleURL];

    CGSize size = asset.naturalSize;

    _movieFile = [[GPUImageMovie alloc] initWithAsset:asset];

    _movieFile.playAtActualSpeed = NO;

    // 文字水印

    UILabel *label = [[UILabel alloc] init];

    label.text = question;

    label.font = [UIFont systemFontOfSize:15];

    label.textColor = [UIColor whiteColor];

    [label setTextAlignment:NSTextAlignmentRight];

    [label sizeToFit];

//    label.layer.masksToBounds = YES;

//    label.layer.cornerRadius = 18.0f;

    [label setBackgroundColor:[UIColor colorWithRed:0 green:0 blue:0 alpha:0.5]];

    [label setFrame:CGRectMake(SCREEN_WIDTH-label.size.width-20, SCREEN_HEIGHT-50, label.size.width, 20)];

    //图片水印

    UIImage *coverImage1 = [img copy];

    UIImageView *coverImageView1 = [[UIImageView alloc] initWithImage:coverImage1];

    [coverImageView1 setFrame:CGRectMake(SCREEN_WIDTH - 131, SCREEN_HEIGHT-110, 111, 27)];

    //第二个图片水印

    UIImage *coverImage2 = [coverImg copy];

    UIImageView *coverImageView2 = [[UIImageView alloc] initWithImage:coverImage2];

    [coverImageView2 setFrame:CGRectMake(270, 100, 210, 50)];

    UIView *subView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, size.width, size.height)];

    subView.backgroundColor = [UIColor clearColor];

    [subView addSubview:coverImageView1];

//    [subView addSubview:coverImageView2];

    [subView addSubview:label];

    [coverImageView1 mas_makeConstraints:^(MASConstraintMaker *make) {

        make.left.top.offset(20);

        make.height.offset(20);

        make.width.offset(50);

    }];

    [label mas_makeConstraints:^(MASConstraintMaker *make) {

        make.top.equalTo(coverImageView1.mas_bottom).offset(10);

        make.left.offset(20);

    }];

    GPUImageUIElement *uielement = [[GPUImageUIElement alloc] initWithView:subView];

    NSString *pathToMovie = [NSHomeDirectory() stringByAppendingPathComponent:[NSString stringWithFormat:@"Documents/%@.mp4",fileName]];

    unlink([pathToMovie UTF8String]);

    NSURL *movieURL = [NSURL fileURLWithPath:pathToMovie];

    _movieWriter = [[GPUImageMovieWriter alloc] initWithMovieURL:movieURL size:CGSizeMake(SCREEN_WIDTH , SCREEN_HEIGHT)];

    GPUImageFilter* progressFilter = [[GPUImageFilter alloc] init];

    [progressFilter addTarget:_filter];

    [_movieFile addTarget:progressFilter];

    [uielement addTarget:_filter];

    _movieWriter.shouldPassthroughAudio = YES;

    //    movieFile.playAtActualSpeed = true;

    if ([[asset tracksWithMediaType:AVMediaTypeAudio] count] > 0){

        _movieFile.audioEncodingTarget = _movieWriter;

    } else {//no audio

        _movieFile.audioEncodingTarget = nil;

    }

    [_movieFile enableSynchronizedEncodingUsingMovieWriter:_movieWriter];

    // 显示到界面

    [_filter addTarget:_movieWriter];

    [_movieWriter startRecording];

    [_movieFile startProcessing];

    //    dlink = [CADisplayLink displayLinkWithTarget:self selector:@selector(updateProgress)];

    //    [dlink setFrameInterval:15];

    //    [dlink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];

    //    [dlink setPaused:NO];

    __weak typeof(self) weakSelf = self;

    //渲染

    [progressFilter setFrameProcessingCompletionBlock:^(GPUImageOutput *output, CMTime time) {

        //水印可以移动

//        CGRect frame = coverImageView1.frame;

//        frame.origin.x += 1;

//        frame.origin.y += 1;

//        coverImageView1.frame = frame;

        //第5秒之后隐藏coverImageView2

//        if (time.value/time.timescale>=5.0) {

//            [coverImageView2 removeFromSuperview];

//        }

        [uielement update];


    }];

    //保存相册

    [_movieWriter setCompletionBlock:^{

        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

//            __block typeof(self) weakSelf = self;

//            __strong typeof(self) strongSelf = weakSelf;

            [weakSelf.filter removeTarget:weakSelf.movieWriter];

            [weakSelf.movieWriter finishRecording];

            __block PHObjectPlaceholder *placeholder;

            if (UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(pathToMovie))

            {

                NSError *error;

                [[PHPhotoLibrary sharedPhotoLibrary] performChangesAndWait:^{

                    PHAssetChangeRequest* createAssetRequest = [PHAssetChangeRequest creationRequestForAssetFromVideoAtFileURL:movieURL];

                    placeholder = [createAssetRequest placeholderForCreatedAsset];

                } error:&error];

                if (error) {

                    [SVProgressHUD showErrorWithStatus:[NSString stringWithFormat:@"%@",error]];

                }

                else{

                    [SVProgressHUD showSuccessWithStatus:@"视频已经保存到相册"];

                }

            }

        });

    }];

}

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

推荐阅读更多精彩内容