美文网首页
ios 多路音频播放无声音

ios 多路音频播放无声音

作者: wenju | 来源:发表于2020-04-27 18:54 被阅读0次

    1.查看是否AVAudioSession采用了AVAudioSessionCategoryPlayAndRecord模式引起的

    2.正确方式采用,AVAudioSessionCategoryMultiRoute

    3.开启多路视频支持
    dispatch_async(dispatch_get_main_queue(), ^{
    [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryMultiRoute withOptions:AVAudioSessionCategoryOptionDefaultToSpeaker | AVAudioSessionCategoryOptionMixWithOthers | AVAudioSessionCategoryOptionAllowBluetooth error:nil];
    [[AVAudioSession sharedInstance] setActive:YES error:nil];
    });

    相关文章

      网友评论

          本文标题:ios 多路音频播放无声音

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