我正在尝试使用AirPlay让AVPlayer在AppleTV上播放。这似乎很简单,根据Apple文档,它应该得到支持。
以下是代码:
AVPlayerItem *playerItem = [[AVPlayerItem alloc] initWithAsset:_composition];
playerItem.audioMix = _audioMix;
playerItem.videoComposition = _videoComposition;
_currentPlayer = [[AVPlayer alloc] initWithPlayerItem:playerItem];
[_currentPlayer setAllowsExternalPlayback:YES];
[_currentPlayer setUsesExternalPlaybackWhileExternalScreenIsActive:YES];
[_currentPlayer setAllowsAirPlayVideo:YES];
[_currentPlayer setUsesAirPlayVideoWhileAirPlayScreenIsActive:YES];
[_currentPlayer addObserver:self forKeyPath:@"rate" options:0 context:nil];
[_currentPlayer addObserver:self forKeyPath:@"externalPlaybackActive" options:0 context:nil];
我注意到的一件事是,当我打开AirPlay时,玩家的时间似乎没有向前移动,有时我认为它实际上会跳回一两秒。
有什么想法吗?
旁注:
答案 0 :(得分:0)
我遇到了同样的问题,我一直疯了几个小时才找到答案!
将此设置为NO
[_currentPlayer setAllowsExternalPlayback:NO];
并删除此行
[_currentPlayer setUsesExternalPlaybackWhileExternalScreenIsActive:YES];
它将起作用!