I’m developing an electron app with react. I have a functionality in which I want to record audio for both microphone and system and send them to backend in different variables.
For that, I have used the Navigator object from JS, but it is giving me combined audio of microphone and system. I want to save them differently in different variables.
For example:
const microphoneAudio = [microphone audio]
const systemAudio = [system audio]
Any help would be appreciated. Thank you
3
Answers
Do you want to use multiple microphones at the same time to record audio and then store it separately
Here you can find how to differentiate system audio and microphone audio.Hope it will help you!