Open 345ml opened 4 years ago
I confirmed the code that works.
Around line 220. Before
[_recordSession setCategory:AVAudioSessionCategoryMultiRoute error:nil];
After
[_recordSession setCategory:AVAudioSessionCategoryPlayAndRecord withOptions:AVAudioSessionCategoryOptionAllowBluetooth error:nil];
[_recordSession setMode:AVAudioSessionModeDefault error:nil];
Tell us which versions you are using ( you can see the versions in your package.json ):
Expected behaviour :
For example, when you have an earphone mic on AirPods, you want to record audio from the headphone mic.
Actual behaviour
Even if wearing a headphone microphone, it seems to be recording audio from the device's microphone.
Steps to reproduce
Here's the code as I recorded it.