web api instance property
MediaStreamTrack: muted property
The muted read-only property of the
MediaStreamTrack interface returns a boolean value
indicating whether or not the track is currently unable to provide media output.
[!NOTE] To implement a way for users to mute and unmute a track, use the
enabledproperty. When a track is disabled by settingenabledtofalse, it generates only empty frames (audio frames in which every sample is 0, or video frames in which every pixel is black).
Value
A boolean which is true if the track is currently muted, or
false if the track is currently unmuted.
[!NOTE] When possible, avoid polling
mutedto monitor the track’s muting status. Instead, add event listeners for themuteandunmuteevents.
Examples
This example counts the number of tracks in an array of MediaStreamTrack
objects which are currently muted.
let mutedCount = 0;
trackList.forEach((track) => {
if (track.muted) {
mutedCount += 1;
}
});