前言

用代码在简单视频编辑中,主要就是加美颜、水印(贴图)、视频截取、视频拼接、音视频的处理,在美颜中,使用GPUImage即可实现多种滤镜、磨皮美颜的功能,并且可以脸部识别实时美颜等功能,这个有很多成熟的处理方案,所以现在主要说后面的水印(贴图)、视频截取、视频拼接、音视频的处理,在文章结尾会给出一个完整的测试demo,该demo可以操作视频之后保存到系统相册,文章主要说明下注意的点。

一、视频加水印

之前为了给视频增加美颜效果,所以主流使用了GPUImage的库,所以在选择添加视频水印的功能时也首先想到了GPUImage的方案。但是使用过程中,发现性能并没有AVFoundation的合成快,但是对视频的兼容性还是GPUImage的比较好,所以如果注重速度,首选AVFoundation的方案。但是如果是考虑对视频的兼容性的话,可以采用GPUImage方案。

1.1、GPUImage方案

GPUImage使用GPUImageUIElementGPUImageMovieWriter重新进行渲染,通过叠加滤镜来重新生成视频。滤镜可以采用GPUImageDissolveBlendFilterGPUImageAlphaBlendFilterGPUImageNormalBlendFilter这个三个滤镜任选一个都可以。

实现代码:

/**使用GPUImage加载水印@param vedioPath 视频路径@param img 水印图片@param coverImg 水印图片二@param question 字符串水印@param fileName 生成之后的视频名字*/
-(void)saveVedioPath:(NSURL*)vedioPath WithWaterImg:(UIImage*)img WithCoverImage:(UIImage*)coverImg WithQustion:(NSString*)question WithFileName:(NSString*)fileName
{[SVProgressHUD showWithStatus:@"生成水印视频到系统相册"];// 滤镜//    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:30];label.textColor = [UIColor whiteColor];[label setTextAlignment:NSTextAlignmentCenter];[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(50, 100, label.frame.size.width+20, label.frame.size.height)];//图片水印UIImage *coverImage1 = [img copy];UIImageView *coverImageView1 = [[UIImageView alloc] initWithImage:coverImage1];[coverImageView1 setFrame:CGRectMake(0, 100, 210, 50)];//第二个图片水印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];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(720.0, 1280.0)];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 audiomovieFile.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秒之后隐藏coverImageView2if (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(), ^{__strong typeof(self) strongSelf = weakSelf;[strongSelf->filter removeTarget:strongSelf->movieWriter];[strongSelf->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:@"视频已经保存到相册"];}}});}];
}

使用的时候直接调用即可

-(void)useGpuimage{NSURL *videoPath = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"selfS" ofType:@"MOV"]];[self saveVedioPath:videoPath WithWaterImg:[UIImage imageNamed:@"avatar.png"] WithCoverImage:[UIImage imageNamed:@"demo.png"] WithQustion:@"文字水印:hudongdongBlog" WithFileName:@"waterVideo"];
}

代码中在progressFilter setFrameProcessingCompletionBlock的回调中,设置了各个元素的显示、移动,这样的话就可以更加自由的设置水印的显示与否,比如水印在刚开始显示,五秒之后消失等功能,这个相当于每一帧都在渲染次,所以如果是采用什么动画效果的话可以直接设置frame即可。

这个相当于把视频先录制一遍,然后边录制边重新添加水印,所以这个兼容性比较好,几乎只要支持的视频格式全都可以处理,但是注意没有声音视频的情况,如果原视频没有声音,在创建新视频采集声音的时候,会出现错误Assertion failure in -[GPUImageMovieWriter createDataFBO],崩溃在这里

 NSAssert(status == GL_FRAMEBUFFER_COMPLETE, @"Incomplete filter FBO: %d", status);

所以在采集的时候需要先判断是否有声音来源,然后再加判断

if ([[asset tracksWithMediaType:AVMediaTypeAudio] count] > 0){movieFile.audioEncodingTarget = movieWriter;} else {//no audiomovieFile.audioEncodingTarget = nil;}

总体来说GPUImage只是简单的提供了加载滤镜的变相方案,原理其实就是加了一个滤镜,这个滤镜的纹理是水印的那个图片,然后混合罢了,并没有提供更深层的编辑功能。

1.2、AVFoundation方案

AVFoundation这种使用之后,发现对于同一个视频AVFoundation处理的更快。并且这个是单独对视频轨、音轨等操作,所以操作性更高,玩过Adobe Premiere、会声会影等视频编辑软件的人都知道,在对一个视频进行操作编辑的时候,只需要在相应的轨道上面拖进去相应的资源即可。

这个就是在视频轨编辑图片,但是试过的人肯定发现如果只是单独编辑视频轨的话,出来的视频是没有声音的,网上有很多这个代码,但是都没有声音,复制粘贴的人也不知道解决方案这个是因为视频只采集了视频轨资源,却没有编辑音轨的资源,所以如果编辑裁剪的视频没有声音的话,需要加上音轨的资源。

实现代码:

///使用AVfoundation添加水印
- (void)AVsaveVideoPath:(NSURL*)videoPath WithWaterImg:(UIImage*)img WithCoverImage:(UIImage*)coverImg WithQustion:(NSString*)question WithFileName:(NSString*)fileName
{if (!videoPath) {return;}//1 创建AVAsset实例 AVAsset包含了video的所有信息 self.videoUrl输入视频的路径//封面图片NSDictionary *opts = [NSDictionary dictionaryWithObject:@(YES) forKey:AVURLAssetPreferPreciseDurationAndTimingKey];videoAsset = [AVURLAsset URLAssetWithURL:videoPath options:opts];     //初始化视频媒体文件CMTime startTime = CMTimeMakeWithSeconds(0.2, 600);CMTime endTime = CMTimeMakeWithSeconds(videoAsset.duration.value/videoAsset.duration.timescale-0.2, videoAsset.duration.timescale);//声音采集AVURLAsset * audioAsset = [[AVURLAsset alloc] initWithURL:videoPath options:opts];//2 创建AVMutableComposition实例. apple developer 里边的解释 【AVMutableComposition is a mutable subclass of AVComposition you use when you want to create a new composition from existing assets. You can add and remove tracks, and you can add, remove, and scale time ranges.】AVMutableComposition *mixComposition = [[AVMutableComposition alloc] init];//3 视频通道  工程文件中的轨道,有音频轨、视频轨等,里面可以插入各种对应的素材AVMutableCompositionTrack *videoTrack = [mixComposition addMutableTrackWithMediaType:AVMediaTypeVideopreferredTrackID:kCMPersistentTrackID_Invalid];//把视频轨道数据加入到可变轨道中 这部分可以做视频裁剪TimeRange[videoTrack insertTimeRange:CMTimeRangeMake(startTime, endTime)ofTrack:[[videoAsset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0]atTime:kCMTimeZero error:nil];//音频通道AVMutableCompositionTrack * audioTrack = [mixComposition addMutableTrackWithMediaType:AVMediaTypeAudio preferredTrackID:kCMPersistentTrackID_Invalid];//音频采集通道AVAssetTrack * audioAssetTrack = [[audioAsset tracksWithMediaType:AVMediaTypeAudio] firstObject];[audioTrack insertTimeRange:CMTimeRangeMake(startTime, endTime) ofTrack:audioAssetTrack atTime:kCMTimeZero error:nil];//3.1 AVMutableVideoCompositionInstruction 视频轨道中的一个视频,可以缩放、旋转等AVMutableVideoCompositionInstruction *mainInstruction = [AVMutableVideoCompositionInstruction videoCompositionInstruction];mainInstruction.timeRange = CMTimeRangeMake(kCMTimeZero, videoTrack.timeRange.duration);// 3.2 AVMutableVideoCompositionLayerInstruction 一个视频轨道,包含了这个轨道上的所有视频素材AVMutableVideoCompositionLayerInstruction *videolayerInstruction = [AVMutableVideoCompositionLayerInstruction videoCompositionLayerInstructionWithAssetTrack:videoTrack];AVAssetTrack *videoAssetTrack = [[videoAsset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0];//    UIImageOrientation videoAssetOrientation_  = UIImageOrientationUp;BOOL isVideoAssetPortrait_  = NO;CGAffineTransform videoTransform = videoAssetTrack.preferredTransform;if (videoTransform.a == 0 && videoTransform.b == 1.0 && videoTransform.c == -1.0 && videoTransform.d == 0) {//        videoAssetOrientation_ = UIImageOrientationRight;isVideoAssetPortrait_ = YES;}if (videoTransform.a == 0 && videoTransform.b == -1.0 && videoTransform.c == 1.0 && videoTransform.d == 0) {//        videoAssetOrientation_ =  UIImageOrientationLeft;isVideoAssetPortrait_ = YES;}//    if (videoTransform.a == 1.0 && videoTransform.b == 0 && videoTransform.c == 0 && videoTransform.d == 1.0) {//        videoAssetOrientation_ =  UIImageOrientationUp;//    }//    if (videoTransform.a == -1.0 && videoTransform.b == 0 && videoTransform.c == 0 && videoTransform.d == -1.0) {//        videoAssetOrientation_ = UIImageOrientationDown;//    }[videolayerInstruction setTransform:videoAssetTrack.preferredTransform atTime:kCMTimeZero];[videolayerInstruction setOpacity:0.0 atTime:endTime];// 3.3 - Add instructionsmainInstruction.layerInstructions = [NSArray arrayWithObjects:videolayerInstruction,nil];//AVMutableVideoComposition:管理所有视频轨道,可以决定最终视频的尺寸,裁剪需要在这里进行AVMutableVideoComposition *mainCompositionInst = [AVMutableVideoComposition videoComposition];CGSize naturalSize;if(isVideoAssetPortrait_){naturalSize = CGSizeMake(videoAssetTrack.naturalSize.height, videoAssetTrack.naturalSize.width);} else {naturalSize = videoAssetTrack.naturalSize;}float renderWidth, renderHeight;renderWidth = naturalSize.width;renderHeight = naturalSize.height;mainCompositionInst.renderSize = CGSizeMake(renderWidth, renderHeight);mainCompositionInst.renderSize = CGSizeMake(renderWidth, renderHeight);mainCompositionInst.instructions = [NSArray arrayWithObject:mainInstruction];mainCompositionInst.frameDuration = CMTimeMake(1, 25);[self applyVideoEffectsToComposition:mainCompositionInst WithWaterImg:img WithCoverImage:coverImg WithQustion:question size:CGSizeMake(renderWidth, renderHeight)];// 4 - 输出路径NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);NSString *documentsDirectory = [paths objectAtIndex:0];NSString *myPathDocs =  [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.mp4",fileName]];unlink([myPathDocs UTF8String]);NSURL* videoUrl = [NSURL fileURLWithPath:myPathDocs];dlink = [CADisplayLink displayLinkWithTarget:self selector:@selector(updateProgress)];[dlink setFrameInterval:15];[dlink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];[dlink setPaused:NO];// 5 - 视频文件输出exporter = [[AVAssetExportSession alloc] initWithAsset:mixCompositionpresetName:AVAssetExportPresetHighestQuality];exporter.outputURL=videoUrl;exporter.outputFileType = AVFileTypeQuickTimeMovie;exporter.shouldOptimizeForNetworkUse = YES;exporter.videoComposition = mainCompositionInst;[exporter exportAsynchronouslyWithCompletionHandler:^{dispatch_async(dispatch_get_main_queue(), ^{//这里是输出视频之后的操作,做你想做的[self exportDidFinish:exporter];});}];}
- (void)applyVideoEffectsToComposition:(AVMutableVideoComposition *)composition WithWaterImg:(UIImage*)img WithCoverImage:(UIImage*)coverImg WithQustion:(NSString*)question  size:(CGSize)size {UIFont *font = [UIFont systemFontOfSize:30.0];CATextLayer *subtitle1Text = [[CATextLayer alloc] init];[subtitle1Text setFontSize:30];[subtitle1Text setString:question];[subtitle1Text setAlignmentMode:kCAAlignmentCenter];[subtitle1Text setForegroundColor:[[UIColor whiteColor] CGColor]];subtitle1Text.masksToBounds = YES;subtitle1Text.cornerRadius = 23.0f;[subtitle1Text setBackgroundColor:[UIColor colorWithRed:0 green:0 blue:0 alpha:0.5].CGColor];CGSize textSize = [question sizeWithAttributes:[NSDictionary dictionaryWithObjectsAndKeys:font,NSFontAttributeName, nil]];[subtitle1Text setFrame:CGRectMake(50, 100, textSize.width+20, textSize.height+10)];//水印CALayer *imgLayer = [CALayer layer];imgLayer.contents = (id)img.CGImage;
//    imgLayer.bounds = CGRectMake(0, 0, size.width, size.height);imgLayer.bounds = CGRectMake(0, 0, 210, 50);imgLayer.position = CGPointMake(size.width/2.0, size.height/2.0);//第二个水印CALayer *coverImgLayer = [CALayer layer];coverImgLayer.contents = (id)coverImg.CGImage;
//    [coverImgLayer setContentsGravity:@"resizeAspect"];coverImgLayer.bounds =  CGRectMake(50, 200,210, 50);coverImgLayer.position = CGPointMake(size.width/4.0, size.height/4.0);// 2 - The usual overlayCALayer *overlayLayer = [CALayer layer];[overlayLayer addSublayer:subtitle1Text];[overlayLayer addSublayer:imgLayer];overlayLayer.frame = CGRectMake(0, 0, size.width, size.height);[overlayLayer setMasksToBounds:YES];CALayer *parentLayer = [CALayer layer];CALayer *videoLayer = [CALayer layer];parentLayer.frame = CGRectMake(0, 0, size.width, size.height);videoLayer.frame = CGRectMake(0, 0, size.width, size.height);[parentLayer addSublayer:videoLayer];[parentLayer addSublayer:overlayLayer];[parentLayer addSublayer:coverImgLayer];//设置封面CABasicAnimation *anima = [CABasicAnimation animationWithKeyPath:@"opacity"];anima.fromValue = [NSNumber numberWithFloat:1.0f];anima.toValue = [NSNumber numberWithFloat:0.0f];anima.repeatCount = 0;anima.duration = 5.0f;  //5s之后消失[anima setRemovedOnCompletion:NO];[anima setFillMode:kCAFillModeForwards];anima.beginTime = AVCoreAnimationBeginTimeAtZero;[coverImgLayer addAnimation:anima forKey:@"opacityAniamtion"];composition.animationTool = [AVVideoCompositionCoreAnimationToolvideoCompositionCoreAnimationToolWithPostProcessingAsVideoLayer:videoLayer inLayer:parentLayer];}//更新生成进度
- (void)updateProgress {[SVProgressHUD showProgress:exporter.progress status:NSLocalizedString(@"生成中...", nil)];if (exporter.progress>=1.0) {[dlink setPaused:true];[dlink invalidate];//        [SVProgressHUD dismiss];}
}

其中主要编辑音轨和视频轨的资源,

[videoTrack insertTimeRange:CMTimeRangeMake(startTime, endTime)ofTrack:[[videoAsset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0]atTime:kCMTimeZero error:nil];[audioTrack insertTimeRange:CMTimeRangeMake(startTime, endTime) ofTrack:audioAssetTrack atTime:kCMTimeZero error:nil];

在后面添加背景音乐和视频的代码中就主要是调节这两个轨道的资源内容。

float renderWidth, renderHeight;

这两个参数则是控制的输出的渲染大小,在视频裁剪的过程中,控制视频输出大小就是控制的这两个参数。这个在视频裁剪的时候再详细说。

水印图片的编辑则是在- (void)applyVideoEffectsToComposition这个函数中,控制的主要是视频的Layer添加图片和图片动画,从而达到编辑水印的功能。

但是这个加水印的时候其实也是在编辑资源的视频轨和音轨,所以会出现有的资源解析不到视频轨,造成生成的图像是蓝色的,还有的资源解析不到音轨造成生成失败。比如iphone的延迟摄像,是没有音轨的,所以会导致生成失败,这两个问题在视频裁剪里面我做了解决,解析不到视频轨的就是用GPUImage单独的录制一份之后再次解析,而解析不到音轨的就代表视频没有声音,就不添加音轨就可以了。

参考文章

美颜滤镜篇

  • IOS使用GPUImage滤镜初级试水
  • GPUImage录像的一些备忘
  • GPUImage录制加美颜、柔光
  • GPUImage详细解析(三)- 实时美颜滤镜
  • GPUImage详细解析(十)用GPUImage和指令配合合并视频
  • ios GPUImage简单滤镜 -- 录制视频(保存+聚焦)
  • GPUImage 实现自定义相机
  • GPUImage详细解析(二)
  • GPUImage--美颜滤镜GPUImageBeautifyFilter
  • 使用GPUImage开启的相机进行摄像,保存写入到Path

水印篇

  • 视频编辑功能详解上篇-添加水印
  • GPUImage详细解析(七)文字水印和动态图像水印
  • 给GPUImage录制的视频添加水印
  • iOS 视频剪切、旋转,视频添加音频、添加水印,视频导出
  • 视频特效制作:如何给视频添加边框、水印、动画以及3D效果
  • ios 视频编辑,添加文字、图片(CA动画)水印,合成视频
  • iOS 视频剪辑 (添加水印,裁剪,合并视频,添加背景音乐)
  • Assertion failure in -[GPUImageMovieWriter createDataFBO]
  • The current version, the video processing error at the beginning

转载于http://www.hudongdong.com/ios/550.htm

IOS视频编辑,视频美颜,视频添加水印相关推荐

  1. android 视频编辑特效,特效视频剪辑编辑

    特效视频剪辑编辑app是一款完全免费的安卓视频编辑神器.特效视频剪辑编辑功能上很齐全,特效视频剪辑编辑app服务也很不错,最关键的是特效视频剪辑编辑操作起来难度不是很大! 软件介绍 特效视频剪辑编辑a ...

  2. android手机视频编辑,美册视频编辑剪辑制作

    美册视频编辑剪辑制作是一款非常靠谱的手机视频编辑软件,这款软件内含各种强大的功能,可以随意的挑选使用,美册视频编辑剪辑制作操作简单,只需要简单的上传素材就可以直接编辑生成视频,对美册视频编辑剪辑制作感 ...

  3. 【Shotcut】开源免费视频编辑软件 - 微信视频编辑利器

    博文目录 一.Shotcut是什么?有什么特点? 二.Shotcut下载.安装 2.1 官网下载 2.2 Shotcut安装 2.3 Shotcut启动 三.编辑一个简单的微信视频号 3.1 设置项目 ...

  4. 视频编辑王(视频剪辑软件)

    介绍: 1.   制作精彩视频不仅能够帮您制作专业视频,还可以帮用户制作有趣的家庭视频:除裁切.合并.旋转.快进等功能外,其内置强大的特效能够让您丰富精彩的生活,栩栩如生的呈现.2.   装点日常生活 ...

  5. 当前计算机主流的视频编辑方式,电脑视频剪辑软件排名 lightworks上榜 第一独创性强...

    在这个以分享为乐趣的时代,相信大家总有那么一个时刻想把自己看到的画面用剪辑的方式呈现出来与好友分享,那么就让排行榜小编为大家简要介绍电脑视频剪辑软件排名以方便大家用剪辑的方式呈现自己心中最美的风景. ...

  6. [笔记]OpenCV+FFmpeg+Qt实现视频编辑器之OpenCV视频lO接口

    opencv学习-VideoCapture 类基础知识 文章目录 一.OpenCV VideoCapture打开摄像头接口讲解和源码分析 VideoCapture bool open ( int in ...

  7. 怎么用视频编辑软件去掉视频中的水印

    我们在网络上下载的视频,一般都会带有各种各样的水印.如果我们觉得这些水印对我们制作效果有影响想要去掉,那么该怎么做的呢?大多数的朋友肯定觉得EDIUS是可以做到的,就像PS那样可以去掉我们不需要的水印 ...

  8. (2021)Top5 免费视频编辑软件,视频剪辑必备工具

  9. 美摄iOS端短视频SDK视频编辑的流程及方法

    美摄短视频SDK提供视频编辑功能,支持视频图片素材混合导入.滤镜.配音.时间特效.画中画等丰富的编辑效果.本文介绍iOS端短视频SDK视频编辑的流程及方法. 短视频SDK主要包含"视频录制& ...

  10. 全场景AI推理引擎MindSpore Lite, 助力HMS Core视频编辑服务打造更智能的剪辑体验

    移动互联网的发展给人们的社交和娱乐方式带来了很大的改变,以vlog.短视频等为代表的新兴文化样态正受到越来越多人的青睐.同时,随着AI智能.美颜修图等功能在图像视频编辑App中的应用,促使视频编辑效率 ...

最新文章

  1. PT100热电阻校准模块设计
  2. 深度学习(十二)稀疏自编码
  3. gsdfgsdfgsdg
  4. 微信小程序 基础1【本页面窗口配置、组件、布局】
  5. js进阶 13-8 jquery如何实现侧边栏
  6. 谈谈SQL Server高可用的常见问题
  7. linux 命令/目录 名称 英文单词 缩写 助记
  8. LeetCode 1258. 近义词句子(哈希+并查集+排序+回溯)
  9. 《C陷阱与缺陷》一第1章 词法“陷阱”1.1 =不同于==
  10. ubuntu 12.04 ubuntu System program problem detected 解决方法
  11. eclipse中mybatis generator插件的安装与使用,实现自动生成代码
  12. 一本经典的程序员必看书籍————人月神话
  13. 随手记:Ubuntu16.04.1安装Chrome浏览器以及解决root下无法启动的问题
  14. 小米3g刷高格固件_不走弯路:小米路由器3G 刷Padavan固件简单教程
  15. 角色和武器Shader特效开发
  16. 查看局域网内其它电脑名称和IP
  17. C语言基础ask‖码一些知识
  18. Python:绘制动态地图-pyecharts
  19. 蚂蚁庄园运动会登山赛!3d项目入门实战!Cocos Creator 3D!
  20. 什么是PHP?它的擅长领域是什么?它的工作原理是什么?

热门文章

  1. PMIC - 配电开关,负载驱动器 TPS2553DBVR
  2. 2023哈尔滨师范大学计算机考研信息汇总
  3. 第40篇-某公英x-s参数加密分析【2022-07-29】
  4. ❤️数据可视化❤️:基于Echarts + GeoJson实现的地图视觉映射散点(气泡)组件【8】 - 河北省
  5. 如何设置"运行sfc /scannow"时的系统盘目录
  6. 商城系统源码下载 商城源码开发语言选择
  7. 模拟天天酷跑游戏java_Java学习笔记_17 项目实战之天天酷跑(四):游戏主界面...
  8. 保险业务与系统——LOMA 290 保险公司运营——第十一讲——客户服务
  9. python编写猜数游戏代码、如果不是整数、显示输入错误_数字炸弹游戏程序 用python来实现...
  10. 动态规划 —— 计算二次项系数