带AVPlayerLayer的AVPlayer随时可以播放'状态对于真正的videoView显示无效

时间:2016-07-25 04:51:29

标签: ios avplayer avplayerlayer

我有一个带远程视频源的AVPlayer。使用observeValueForKeyPath:ofObject:change:context:检测readyToPlay状态已启用,并将AVPlayerLayer设置为myVideoContainerView的图层以供显示。

问题是:readyToPlay状态触发后。视频在屏幕上显示为真实延迟1-2秒。

我试图在readyToPlay状态开启之前和之后设置AVPlayerLayer。但没有它们有效。

只有在我使用AVPlayer+AVPlayerLayer时才会出现问题。使用AVPlayerViewController很好。但我仍然需要在我的项目中解决这个问题。

感谢任何建议!

     @property (weak, nonatomic) IBOutlet UIView *myVideoContainter;
     @property AVPlayer *player;
     @property AVPlayerLayer *layer;

-(void)viewDidLoad{
     self.player = [AVPlayer playerWithUR:videoURL];
     [self.player addObserver:self forKeyPath:@"status" options:0 context:nil];
}

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object
                    change:(NSDictionary *)change context:(void *)context {
if (object == self.player && [keyPath isEqualToString:@"status"]) {
    if (self.player.status == AVPlayerStatusReadyToPlay) {
        NSLog(@"Ready To Play");
        self.layer = [AVPlayerLayer playerLayerWithPlayer:self.player];
        self.layer.frame = self.mainContentView.bounds;
        [self.mainContentView.layer addSublayer:self.layer];
        }
    }
}

1 个答案:

答案 0 :(得分:2)

问题解决了。

不知道为什么,player.currentItem.statusplayer.status更准确。

[self.player.currentItem addObserver:self forKeyPath:@"status" options:0 context:nil];

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object
                change:(NSDictionary *)change context:(void *)context {
    if(self.player.currentItem.status == AVPlayerItemStatusReadyToPlay){
        //do something        
    }
}

请注意。某些操作会更改AVPlayerItem.status。应该以这种方式处理循环问题。