Feature request: startAudio settings

Description
Currently when you startAudio, the microphone is immediately enabled and it appears to choose the default microphone as well.

It’d be great if, like the startVideo, you could pass settings:

mediaStream.startAudio({
   microphoneId: <deviceId>,
   muted: <true || false>
});

We have an initial setup screen shown whilst they wait for the webinar to start, so the devices are selected prior to the meeting starting and therefore have no access to mediaStream.

At the moment, we’re doing:

mediaStream.startAudio().then(() => {
   mediaStream.switchMicrophone(deviceId);
   mediaStream.muteAudio();
});

We want people to be able to hear what’s going on immediately, but not be able to speak.

Which Web Video SDK version?
v1.1.4

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.