3

我正在为 iPhone 和 iPad 编写一个广播应用程序,并且在处理暂停和播放音频时遇到了一些奇怪的行为。我正在使用 AVAudioSessionDelegate 方法beginInterruptionendInterruption来分别pauseplayAVPlayer。下面是相关play代码。

现在,以下情况似乎一直在发生:

  1. 在 iPad 上:如果我强制中断(Facetime 通话),beginInterruption按预期调用并停止播放。如果中断停止,endInterruption则按预期调用,并按预期恢复播放。
  2. 在 iPhone 上:按下播放和暂停按钮,触发和pauseplay完全一样。播放按预期进行。beginInterruptionendInterruption
  3. 在 iPhone 上:强制中断(通过拨打电话)、按预期通话endInterruption和按预期暂停播放。但是,当中断结束时,beginInterruption按预期play调用,按预期调用,它实际上到达并执行该[self.player play],但播放不恢复!我什么也没听到。

上面的情况 3 非常奇怪,所以我想知道我是否忽略了一些东西。有任何想法吗?

Play代码

- (void)play { 
NSError* error = nil;
AVKeyValueStatus keyStatus = [currentAsset statusOfValueForKey:@"tracks" error:&error];
if(error){
    DLog(@"Error %@", [error localizedDescription]);
}
else {
    DLog(@"Current Key Status: %i", keyStatus);
    if(keyStatus == AVKeyValueStatusLoaded){
        DLog(@"Continue playing source: %@", self.source);
        [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:&error];
        if (error) {
            DLog(@"Error during play while setting AVAudioSessionCategory: %@", [error localizedDescription]);
        }
        [[AVAudioSession sharedInstance] setActive:YES error:&error];
        if (error) {
            DLog(@"Error during play while setting AVAudioSessionCategory: %@", [error localizedDescription]);
        }
        [[AVAudioSession sharedInstance] setDelegate:self];
        if(backgroundTaskID != UIBackgroundTaskInvalid){
            [[UIApplication sharedApplication] endBackgroundTask:backgroundTaskID];
        }
        backgroundTaskID = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:NULL];

        [self.player play];
        [self setStatus:kNPOMediaPlayerStatusPlaying];
    }
    else {
        DLog(@"PlaySource: %@", self.source);
        [self playSource:self.source];
    }
}}
4

2 回答 2

2

我遇到过同样的问题。在我实施远程控制事件处理后问题消失了。我[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];在开始播放时打电话。

于 2013-04-21T20:36:33.397 回答
1

事实证明,这是 iOS 中的一个已知错误,它需要在 applicationDidBecomeActive 中进行一些仔细的工作来处理 beginInterruption。可悲的是,我想不出另一种解决方案。

于 2012-12-12T13:03:05.547 回答