setLocalAudio(enabled)
Requires join() or startCamera() to be called first.
Parameters
boolean
required
true to unmute the microphone, false to mute it.Return value
Returnsthis for chaining.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Mutes or unmutes the local microphone.
setLocalAudio(enabled)
Requires join() or startCamera() to be called first.
true to unmute the microphone, false to mute it.this for chaining.
// Mute the mic
call.setLocalAudio(false);
// Unmute the mic
call.setLocalAudio(true);