美文网首页
iOS 播放音频与录制音频并发

iOS 播放音频与录制音频并发

作者: 那年那月那花儿 | 来源:发表于2019-07-26 15:34 被阅读0次

在进行智能语音控制VR场景的功能需求下, 遇到了H5展示的krpano语音播放背景音乐, 与智能语音 录制检测 控制产生了冲突, 二者只能存其一, 小知识点解决方案记录:

-(void)setRecordPlayAtSameTime
{
    if(![[AVAudioSession sharedInstance].category isEqualToString: AVAudioSessionCategoryPlayAndRecord] ||
       !([AVAudioSession sharedInstance].categoryOptions== (AVAudioSessionCategoryOptionDefaultToSpeaker | AVAudioSessionCategoryOptionMixWithOthers))) {
        
        [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayAndRecord withOptions:AVAudioSessionCategoryOptionDefaultToSpeaker |
         AVAudioSessionCategoryOptionMixWithOthers error:nil];
        
    }
    
    [[AVAudioSession sharedInstance]setActive:YES error:nil];
}

特此记录

相关文章

网友评论

      本文标题:iOS 播放音频与录制音频并发

      本文链接:https://www.haomeiwen.com/subject/dshdrctx.html