菜鸟教程小白 发表于 2022-12-12 10:24:57

ios - 播放奇怪问题时的 AVAudioSession 记录


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

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

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

<p>我的目标是录制音频,同时仍允许设备中的所有其他音频通过主扬声器输出。 </p>

<p>我怎样才能做到这一点?</p>

<p>这是我目前的代码:</p>

<pre><code>AVAudioSession *audioSession = ;
    ;
    ;

    recorder = [ initWithURL:url settings:settings error:&amp;error];

    if(recorder != nil){
      ;
      recorder.meteringEnabled = YES;
      ;
      levelTimer = ;
    }else{
      NSLog(@&#34;Error: %@&#34;,);
    }//end if
</code></pre>

<p>谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>也许您可以尝试使用 <code>AVAudioSessionCategoryOptionDefaultToSpeaker</code>。根据 <a href="https://developer.apple.com/library/ios/documentation/AVFoundation/Reference/AVAudioSession_ClassReference/Reference/Reference.html#//apple_ref/doc/constant_group/Audio_Session_Categories" rel="noreferrer noopener nofollow">AVAudioSession</a>引用:</p>

<blockquote>
<p>When using this option and no other audio route (such as a headset) is available, session audio will play through the device’s built-in speaker. When not using this option, and no other audio output is available or selected, audio will play through the receiver (a speaker intended to be held to the ear).</p>
</blockquote></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 播放奇怪问题时的 AVAudioSession 记录,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24276016/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24276016/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 播放奇怪问题时的 AVAudioSession 记录