AVAudioSession AVAudioSessionCategoryPlayAndRecord glitch

前端 未结 2 1068
北恋
北恋 2021-02-02 18:07

I would like to record videos with audio using AVCaptureSession. For this I need the AudioSessionCategory AVAudioSessionCategoryPlayAndRecord, since my

2条回答
  •  时光取名叫无心
    2021-02-02 18:37

    As pointed out by @Cbas in the comments, an Apple Staff has confirmed there is glitch when switching from output-only to input+output routes and that there is no workaround for that issue, a possible workaround is to totally avoid switching from output-only to input-output routes by always use the AVAudioSessionCategoryPlayAndRecord category even when the app is not recording. Also, don't set the audio session category again if it has already be set to AVAudioSessionCategoryPlayAndRecord or the glitch will occur.

提交回复
热议问题