ios 多路音频播放无声音
2020-04-27 本文已影响0人
wenju
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];
});