Muting/Unmuting Remote Streams

Muting Remote Participant's Audio

To mute a remote stream's audio you can use the muteParticipant() method

Event

Description

onMuteChange

After muteParticipant() is called there will be an event stating whether or not the given participant is currently muted.

Example onMuteChange Event Payload

detail: {
    participant: Participant
        id: "1369_ON_49ef3ff1-2293-4b69-adbc-4e25edc944e1",
        isMutedLocally: true,
        ...
}

Last updated