AV Player是一个用来播放给予时间的视听媒体的控制器对象。将视频资源导出到界面需要使用AVPlayerLayer类;AVPlayer只管理一个单独资源的播放,当需要播放多个音频资源可以使用子类AVQueuePlayer
不需要自定义播放器的情况可以使用 MPMoviewPlayerController
参考 http://www.cnblogs.com/kenshincui/p/4186022.html#avPlayer
初始化 示例:
1 2 3 4 5 6 7 NSURL *assetURL = [[NSBundle mainBundle] URLForResource:@"waves" withExtension:@"mp4" ];AVAsset *asset = [AVAsset assetWithURL:assetURL];AVPlayerItem *playeritem = [AVPlayerItem playerItemWithAsset:asset];self .player = [AVPlayer playerWithPlayerItem:playerItem];AVPlayerLayer *playerLayer = [AVPlayer playerLayerWithPlayer:self .player];[self .view.layer addSubLayer:playerLayer];
对播放进行控制 监听播放状态
监听AVPlayerItem的status 属性,播放项开始时status为 AVPlayerItemStatusUnknow
,当状态改变为 AVPlayerItemStatusReadyToPlay
才可以开始播放,只有处于这个状态时才能获得视频时长等信息。
1 2 3 4 5 6 7 8 9 10 11 12 [playerItem addObserver:self forKeyPath:@"status" options:NSKeyValueObservingOptionNew context:nil ]; -(void )observeValueForKeyPath:(NSString *)keyPath ofObject:(id )object change:(NSDictionary *)change context:(void *)context{ AVPlayerItem *playerItem=object; if ([keyPath isEqualToString:@"status" ]) { AVPlayerStatus status= [[change objectForKey:@"new" ] intValue]; if (status==AVPlayerStatusReadyToPlay ){ NSLog (@"正在播放...,视频总长度:%.2f" ,CMTimeGetSeconds (playerItem.duration)); } } }
监控网络加载情况属性
监听AVPlayerItem的loadedTimeRanges 属性,当loadedTimeRanges的改变时(每缓冲一部分数据就会更新此属性)可以获得本次缓冲加载的视频范围(包含起始时间、本次加载时长),这样一来就可以实时获得缓冲情况。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 [playerItem addObserver:self forKeyPath:@"loadedTimeRanges" options:NSKeyValueObservingOptionNew context:nil ]; -(void )observeValueForKeyPath:(NSString *)keyPath ofObject:(id )object change:(NSDictionary *)change context:(void *)context{ AVPlayerItem *playerItem=object; if ([keyPath isEqualToString:@"loadedTimeRanges" ]){ NSArray *array=playerItem.loadedTimeRanges; CMTimeRange timeRange = [array.firstObject CMTimeRangeValue ]; float startSeconds = CMTimeGetSeconds (timeRange.start); float durationSeconds = CMTimeGetSeconds (timeRange.duration); NSTimeInterval totalBuffer = startSeconds + durationSeconds; NSLog (@"共缓冲:%.2f" ,totalBuffer); } }
时间监听
AVPlayer提供了两种时间监听方法
定期监听
使用- (id)addPeriodicTimeObserverForInterval:(CMTime)interval queue:(nullable dispatch_queue_t)queue usingBlock:(void (^)(CMTime time))block;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 CMTime interval = CMTimeMake (1.0 , 1.0 ); dispatch_queue_t queue = dispatch_get_main_queue(); __weak THPlayerController *weakSelf = self ; void (^callback)(CMTime time) = ^(CMTime time) { NSTimeInterval currentTime = CMTimeGetSeconds (time); NSTimeInterval duration = CMTimeGetSeconds (weakSelf.playerItem.duration); NSLog (@"当前已经播放%.2fs." , currentTime); }; self .timeObserver = [self .player addPeriodicTimeObserverForInterval:interval queue:queue usingBlock:callback];
边界时间监听
使用 - (id)addBoundaryTimeObserverForTimes:(NSArray<NSValue *> *)times queue:(nullable dispatch_queue_t)queue usingBlock:(void (^)(void))block;
times : CMTime值组成的NSArray数组,定义了需要通知的边界点
queue : 调度队列,指定NULL等同设置主队列
block : 回调块
监听播放完成通知
注册 AVPlayerItemDidPlayToEndTimeNotification
的通知
1 2 3 4 5 6 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector (playbackFinished:) name:AVPlayerItemDidPlayToEndTimeNotification object:self .player.currentItem]; -(void )playbackFinished:(NSNotification *)notification{ NSLog (@"视频播放完成." ); }
生成视频缩略图
使用 AVAssetImageGenerator
类可以从 AVAsset视频中提取图片。
AVAssetImageGenerator 有两个可以检索图片的方法:
- (void)generateCGImagesAsynchronouslyForTimes:(NSArray<NSValue *> *)requestedTimes completionHandler:(AVAssetImageGeneratorCompletionHandler)handler;
- (nullable CGImageRef)copyCGImageAtTime:(CMTime)requestedTime actualTime:(nullable CMTime *)actualTime error:(NSError * __nullable * __nullable)outError CF_RETURNS_RETAINED;
生成一组图片示例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 self .imageGenerator = [AVAssetImageGenerator assetImageGeneratorWithAsset:self .asset]; self .imageGenerator.maximumSize = CGSizeMake (200.0 f, 0.0 f); CMTime duration = self .asset.duration; NSMutableArray *times = [NSMutableArray array]; CMTimeValue increment = duration.value / 20 ; CMTimeValue currentValue = 2.0 * duration.timescale; while (currentValue <= duration.value) { CMTime time = CMTimeMake (currentValue, duration.timescale); [times addObject:[NSValue valueWithCMTime:time]]; currentValue += increment; } __block NSUInteger imageCount = times.count; __block NSMutableArray *images = [NSMutableArray array]; AVAssetImageGeneratorCompletionHandler handler; handler = ^(CMTime requestedTime, CGImageRef imageRef, CMTime actualTime, AVAssetImageGeneratorResult result, NSError *error) { if (result == AVAssetImageGeneratorSucceeded ) { UIImage *image = [UIImage imageWithCGImage:imageRef]; id thumbnail = [THThumbnail thumbnailWithImage:image time:actualTime]; [images addObject:thumbnail]; } else { NSLog (@"Error: %@" , [error localizedDescription]); } if (--imageCount == 0 ) { dispatch_async (dispatch_get_main_queue(), ^{ NSString *name = THThumbnailsGeneratedNotification; NSNotificationCenter *nc = [NSNotificationCenter defaultCenter]; [nc postNotificationName:name object:images]; }); } }; [self .imageGenerator generateCGImagesAsynchronouslyForTimes:times completionHandler:handler];
显示字幕(视频自带)
显示字幕需要用到AVMediaSelectionGroup
和AVMediaSelectionOption
两个类
初始化 AVAsset 的时候加上 availableMediaCharacteristicsWithMediaSelectionOptions 属性
AVMediaSelectionOption 的该属性会返回一个包含字符串的数组,这些字符串表示可用的媒体特性
AVMediaCharacteristicLegible (字幕或者隐藏式字幕)
AVMediaCharacteristicAudible (音频)
AVMediaCharacteristicVisual (字幕)
请求可用的媒体特性数据后,调用 AVAsset 的 ***mediaSelectionGroupForMediaCharacteristic:***方法为其传递需要的媒体特性,会返回 AVMediaSelectionGroup ,表示包含的备用媒体轨道
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NSString *mc = AVMediaCharacteristicLegible ; AVMediaSelectionGroup *group = [self .asset mediaSelectionGroupForMediaCharacteristic:mc]; if (group) { NSMutableArray *subtitles = [NSMutableArray array]; for (AVMediaSelectionOption *option in group.options) { NSLog (@" %@ " ,option.displayName); } } @"English" @"English Forced" @"Italian" @"Italian Forced" @"Portuguese" @"Portuguese Forced" @"Russian" @"Russian Forced"
显示字幕,通过调用 AVPlayerItem 的 ***selectMediaOption:inMediaSelectionGroup:***方法。
1 2 3 4 5 6 7 8 9 10 11 12 13 - (void )subtitleSelected:(NSString *)subtitle { NSString *mc = AVMediaCharacteristicLegible ; AVMediaSelectionGroup *group = [self .asset mediaSelectionGroupForMediaCharacteristic:mc]; BOOL selected = NO ; for (AVMediaSelectionOption *option in group.options) { if ([option.displayName isEqualToString:subtitle]) { [self .playerItem selectMediaOption:option inMediaSelectionGroup:group]; } } }