Back to Content

MediaStreamTrack: muted property

files/en-us/web/api/mediastreamtrack/muted/index.md

latest1.2 KB
Original Source

{{APIRef("Media Capture and Streams")}}

The muted read-only property of the {{domxref("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 {{domxref("MediaStreamTrack.enabled", "enabled")}} property. When a track is disabled by setting enabled to false, 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 muted to monitor the track's muting status. Instead, add event listeners for the {{domxref("MediaStreamTrack.mute_event", "mute")}} and {{domxref("MediaStreamTrack.unmute_event", "unmute")}} events.

Examples

This example counts the number of tracks in an array of {{domxref("MediaStreamTrack")}} objects which are currently muted.

js
let mutedCount = 0;

trackList.forEach((track) => {
  if (track.muted) {
    mutedCount += 1;
  }
});

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}