我正在尝试从网址播放流,但这是一个问题。 ObserveValueForKeyPath:ofObject:change:context只是不执行。据我了解,这不取决于streamURL,它是否正确。它必须从AVPlayerItemStatusUnknown将状态更改为AVPlayerItemStatusReadyToPlay或AVPlayerItemStatusFailed。但是,我在浏览器中检查了该URL,它运行正常。所以有什么问题?我观看了WWDC视频,它说,如果你有音频流,请在 AVAsset之前使用AVPLayerItem 。
这是我的代码:
- (void) prepare
{
NSURL * trackStreamURL = [NSURL URLWithString:streamURL];
NSLog(@"STREAM URL: %@",trackStreamURL);
_playerItem = [AVPlayerItem playerItemWithURL:trackStreamURL];
[_playerItem addObserver:self forKeyPath:@"status" options:0 context:nil];
}
- (void) observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
NSLog(@"KEY PATH : %@", keyPath);
NSLog(@"CHANGE : %@", change);
}
提前致谢!
答案 0 :(得分:6)
我始终在status
而不是AVPlayer
上观察到AVPlayerItem
属性,因为您无论如何都需要玩家来播放玩家项目。事实上,我甚至都没有看过播放器项目的状态属性。
玩家项目的状态可能永远不会改变,因为没有玩家准备好玩它。因此,使用玩家项目创建一个玩家并观察玩家的状态(或者可能,仍然是玩家项目的状态)。
AVPlayer *player = [AVPlayer playerWithPlayerItem:playerItem];