后台的 MPMoviePlayerController / AVAudioSession 在来电后不会重新开始播放

Posted

技术标签:

【中文标题】后台的 MPMoviePlayerController / AVAudioSession 在来电后不会重新开始播放【英文标题】:MPMoviePlayerController / AVAudioSession in background doesn't restart play after incoming call 【发布时间】:2011-01-12 12:02:47 【问题描述】:

我遇到了 MPMoviePlayerController 的问题。我用一个实例来播放一个 m3u8 音源:

AVAudiosession *audioSession = [AVAudioSession sharedInstance];

NSError *setCategoryError = nil;
[audioSession setCategory:AVAudioSessionCategoryPlayback error:&setCategoryError];
if (setCategoryError) 


NSError *activationError = nil;
[audioSession setActive:YES error:&activationError];
if (activationError)  

self.player =
[[MPMoviePlayerController alloc] initWithContentURL: [NSURL URLWithString:url]];
player.view.hidden = YES;
player.shouldAutoplay = YES;
[player release];
[btnContainer addSubview: player.view];
player.useApplicationAudioSession = NO;

它旨在在应用程序进入后台时播放,并且一切正常。

问题是当它在后台时,我接到一个来电。在这种情况下,流会暂停,但不会在通话结束后返回。事实上,控制台说

2011-01-12 12:02:27.729 RAC1[1571:307] MP _playbackInterruptionDidEndNotification :: NSConcreteNotification 0x155890 name = AVController_PlaybackInterruptionDidEndNotification; object = <AVController: 0x180d50>; userInfo = 
    "AVController_InterruptionStatusNotificationParameter" = "call.declined";
    "AVController_InterruptorNameNotificationParameter" = Phone;
, _state = 6
2011-01-12 12:02:27.730 RAC1[1571:307] MP _playbackInterruptionDidEndNotification :: resuming playback!

应用程序确实将流显示为MPMoviePlaybackStatePlaying,但声音似乎停止了。我试过做

[[AVAudioSession sharedInstance] setActive: YES error: &err]

但它似乎失败了。

有人知道吗?

谢谢!

【问题讨论】:

【参考方案1】:

看来我需要

[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];

在我的 viewController 的 viewDidAppear 中......

【讨论】:

我在按下播放按钮时开始接收远程控制事件,并在按下停止按钮时结束接收控制事件。当应用程序在后台播放音频时,我还需要等待 1 秒才能恢复播放。 using: dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^ // 继续播放 )【参考方案2】:

您是否查看过this link 来处理音频中断。您需要设置 AVAudioSessionDelegate 并处理中断。

【讨论】:

以上是关于后台的 MPMoviePlayerController / AVAudioSession 在来电后不会重新开始播放的主要内容,如果未能解决你的问题,请参考以下文章

断言失败:电影播放器​​的激活状态错误(一)

player.duration 在视频文件的 MPMoviePlayerController 中始终显示为零

浅谈iOS视频开发

iOS开发简单的实现后台任务(诸如后台播放音乐,定时器,后台定位等)

一款蓝色的企业网站后台模板_简单的后台模——后台

背水一战 Windows 10 (119) - 后台任务: 后台下载任务(任务分组,组完成后触发后台任务)