如何让AVPlayer在没有镜像的情况下使用AirPlay?

时间:2013-08-11 21:08:42

标签: avfoundation avplayer airplay apple-tv

我正在尝试使用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时,玩家的时间似乎没有向前移动,有时我认为它实际上会跳回一两秒。

有什么想法吗?

旁注:

  • 使用AVFoundation构建合成,视频格式为H.264。
  • 如果我打开镜像并将视图推到第二个屏幕
  • ,则可以正常工作
  • 如果没有视频播放,声音就会起作用。

参考文献: http://developer.apple.com/library/ios/documentation/AudioVideo/Conceptual/AirPlayGuide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40011045-CH1-SW1

http://developer.apple.com/library/ios/documentation/AVFoundation/Reference/AVPlayer_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40009530

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,我一直疯了几个小时才找到答案!

将此设置为NO

[_currentPlayer setAllowsExternalPlayback:NO];

并删除此行

[_currentPlayer setUsesExternalPlaybackWhileExternalScreenIsActive:YES];

它将起作用!