我有一个带远程视频源的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];
}
}
}
答案 0 :(得分:2)
问题解决了。
不知道为什么,player.currentItem.status
比player.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
。应该以这种方式处理循环问题。