我开发一个iPhone应用程序,允许其他应用程序在后台播放音频。 要做到这一点,我初始化这样我的音频会议:
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
在我的应用程序某些时候,我提供的音频播放器播放存储在CoreData与AVAudioPlayer的一些文件。 当用户点击播放按钮,背景音应该暂停。 当玩家完成或暂停时,背景声频播放应该恢复。
当玩家完成回放后恢复
-(void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag
{
[[AVAudioSession sharedInstance] setActive:NO withFlags:AVAudioSessionSetActiveFlags_NotifyOthersOnDeactivation error:nil];
}
就像一个魅力,我被卡住与暂停后恢复。 它应该按钮的IBAction为内以同样的方式
-(IBAction)pausePlayer
{
if (self.player.isPlaying) {
[self.player pause];
[[AVAudioSession sharedInstance] setActive:NO withFlags:AVAudioSessionSetActiveFlags_NotifyOthersOnDeactivation error:nil];
}
}
但我总是得到同样的错误:
Unable to deactivate audio session. Error: Error Domain=NSOSStatusErrorDomain Code=560030580 "The operation couldn’t be completed. (OSStatus error 560030580.)"
任何建议,为什么它是不可能的失活在这种情况下AudioSession?
我试过3小时终于得到它这里是我做了什么
#import "ViewController.h"
#import <AVFoundation/AVFoundation.h>
@interface ViewController ()
@property(strong, nonatomic)AVAudioPlayer *player;
@property(strong)AVAudioSession *session;
@end
@implementation ViewController
- (IBAction)playsound:(id)sender
{
NSURL *url=[[NSURL alloc]initWithString:[[NSBundle mainBundle] pathForResource:@"sound" ofType:@"mp3"]];
NSError *err;
self.player=[[AVAudioPlayer alloc]initWithContentsOfURL:url error:&err];
[self.player setDelegate:self];
[self.player setVolume:2.5];
self.session=[AVAudioSession sharedInstance];
[self.player prepareToPlay];
[self.player play];
}
- (void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag
{
NSError *err;
[self.session setActive:NO withOptions:AVAudioSessionSetActiveOptionNotifyOthersOnDeactivation error:&err];
}
@end
看来,停用为时尚早。 按照AVAudioSession类引用“禁用会话如果任何相关的音频对象(如队列,转换器,播放器或记录)当前正在运行会失败。”
似乎有几个解决方案:
运行失活在一个循环,直到成功为止。
这是在提倡http://iknowsomething.com/ios-sdk-spritekit-sound/
推迟失活,例如,直到它真的是必要的。
例如,使用音频队列服务时,你可以考虑立即停止。 (未测试)
在听录音的可能性记录的应用程序,我才刚刚改变使用序列类别之前关闭:激活NO,setCategory并激活YES。
例如参见“当你的应用程序正在运行,Apple建议您更改任何设置值的前停用音频会议”苹果的音频会话编程指南