AVAudioSession在播放奇怪的问题时记录

时间:2014-06-18 02:05:46

标签: ios iphone audio avaudiorecorder avaudiosession

对于我正在制作的应用程序的一部分,我需要录制用户的音频。我选择使用AVAudioRecorder来执行此操作。

问题是,当我开始录制音频时,设备上播放的所有音频都会暂停。然后,我在Apple文档中查找了AVAudioSession,并将录制选项设置为:AVAudioSessionCategoryOptionMixWithOthers

问题在于,每当我开始录制时,设备上播放的任何音频都会从主外部扬声器切换到小型电话(呼叫)扬声器。

我的目标是录制音频,同时仍然允许来自设备的所有其他音频通过主扬声器输出。

我怎样才能做到这一点?

这是我目前的代码:

AVAudioSession *audioSession = [AVAudioSession sharedInstance];
    [audioSession setCategory:AVAudioSessionCategoryPlayAndRecord withOptions:AVAudioSessionCategoryOptionMixWithOthers error:&error];
    [audioSession setActive:YES error:&error];

    recorder = [[AVAudioRecorder alloc] initWithURL:url settings:settings error:&error];

    if(recorder != nil){
        [recorder prepareToRecord];
        recorder.meteringEnabled = YES;
        [recorder record];
        levelTimer = [NSTimer scheduledTimerWithTimeInterval:0.03 target:self selector:@selector(levelTimerCallback:) userInfo:nil repeats:YES];
    }else{
        NSLog(@"Error: %@",[error description]);
    }//end if

谢谢!

1 个答案:

答案 0 :(得分:2)

也许您可以尝试使用AVAudioSessionCategoryOptionDefaultToSpeaker。根据{{​​3}}参考:

  

使用此选项且没有其他音频路径(如耳机)可用时,会话音频将通过设备的内置扬声器播放。如果不使用此选项,并且没有其他音频输出可供使用或选择,音频将通过接收器播放(一个用于保持耳朵的扬声器)。