AVPlayerItem replaceCurrentItemWithPlayerItem阻塞

时间:2013-01-29 09:23:35

标签: iphone ios ipad mpmovieplayercontroller avplayer

首先关于应用程序的一些背景...
  - 有很多沉重的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真的没有响应和丑陋也无法在后台执行此操作

是否有任何修复或解决方法..?

2 个答案:

答案 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有些不一致,这并不好玩。