首先关于应用程序的一些背景...
- 有很多沉重的UI操作涉及视频播放器(主要是滚动)
- 视频是动态的,并根据我们当前的页面进行更改
- 因此视频必须是动态的并且不断变化,并且UI需要响应
我最初使用MPMoviePlayerController
,但由于某些要求,我不得不回到AVPlayer上
我为AVPlayer
创建了自己的包装器
要更改videoPlayer中的内容,这是AVPlayer-wrapper Class
/**We need to change the whole playerItem each time we wish to change a video url */
-(void)initializePlayerWithUrl:(NSURL *)url
{
AVPlayerItem *tempItem = [AVPlayerItem playerItemWithURL:url];
[tempItem addObserver:self forKeyPath:@"status"
options:NSKeyValueObservingOptionInitial | NSKeyValueObservingOptionNew
context:nil];
[tempItem addObserver:self forKeyPath:@"playbackBufferEmpty"
options:NSKeyValueObservingOptionInitial | NSKeyValueObservingOptionNew
context:nil];
//Not sure if this should be stopped or paused under the ideal circumstances
//These will be changed to custom enums later
[self setPlaybackState:MPMoviePlaybackStateStopped];
[self setLoadState:MPMovieLoadStateUnknown];
[self.videoPlayer replaceCurrentItemWithPlayerItem:tempItem];
//This is required only if we wish to pause the video immediately as we change the url
//[self.videoPlayer pause];
}
现在一切都很好......除了..
[self.videoPlayer replaceCurrentItemWithPlayerItem:tempItem];
似乎在几分之一秒内阻止了用户界面,在滚动期间,这些使得UI真的没有响应和丑陋也无法在后台执行此操作
是否有任何修复或解决方法..?
答案 0 :(得分:18)
我找到的解决方案是确保基础AVAsset
准备好在将其提供给AVPlayer
之前返回基本信息,例如其持续时间。 AVAsset
有一个方法loadValuesAsynchronouslyForKeys:
,方便了:
AVAsset *asset = [AVAsset assetWithURL:self.mediaURL];
[asset loadValuesAsynchronouslyForKeys:@[@"duration"] completionHandler:^{
AVPlayerItem *newItem = [[AVPlayerItem alloc] initWithAsset:asset];
[self.avPlayer replaceCurrentItemWithPlayerItem:newItem];
}];
在我的情况下,URL是一个网络资源,replaceCurrentItemWithPlayerItem:
实际上会阻塞几秒钟等待此信息下载。
答案 1 :(得分:2)
构建Ultravisual时遇到了同样的问题。我无法完全记住我们是如何解决它的,但是IIRC它涉及在后台线程上尽可能多地完成项目设置,并等到新项目报告它已准备好发挥&#39 ;在致电replaceCurrentItemWithPlayerItem
之前。
可悲的是,这涉及伏都教舞,异步KVO有些不一致,这并不好玩。