+ (UIImage *)getFirstFrameOfVideoWithVideoURL:(NSURL *)videoURL{ AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:videoURL options:nil]; NSPa...
分类:
其他好文 时间:
2015-08-06 00:18:12
阅读次数:
122
前言: 看完了使用MPMoviePlayerController播放在线视频,在实际应用中有时候需要获取视频的缩略图,我们来看看如何截取指定时间内的视频缩略图。
一 使用MPMoviePlayerController自带的方法
二 使用AVAssetImageGenerator...
分类:
移动开发 时间:
2015-07-08 19:10:24
阅读次数:
145
#pragma mark - helper- (NSURL *)convert2Mp4:(NSURL *)movUrl { NSURL *mp4Url = nil; AVURLAsset *avAsset = [AVURLAsset URLAssetWithURL:movUrl options:.....
分类:
其他好文 时间:
2015-07-01 17:29:32
阅读次数:
113
+(UIImage *)getImage:(NSString *)videoURL{AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:[NSURL fileURLWithPath:videoURL] options:nil];AVAssetIma...
分类:
移动开发 时间:
2014-06-27 13:15:09
阅读次数:
243