MediaStreamTrack.onmute

The MediaStreamTrack.onmute event handler is a property called when the mute event is received. Such an event is sent when the track is temporarily not able to send data.

Syntax

JavaScript
track.onmute = function;

Value

A function to serve as an EventHandler for the mute event. The event handler function receives a single parameter: the event object, which is a simple Event object.

Example

JavaScript
dc.onmute = function(ev) { alert("mute event detected!"); };

Specifications

Specification Status Comment
Media Capture and Streams
The definition of 'MediaStreamTrack.onmute' in that specification.
Editor's Draft Initial specification.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) No support No support (Yes) ?
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? ? No support No support ? ?

 

See also

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/mediastreamtrack/onmute

Event Handler MediaStreamTrack Property Reference Référence WebRTC