MediaStreamTrack 's onunmute event handler is called when the unmute event is received. Such an event is sent when the track is again able to send data.

onunmute event handler is called, the track's muted flag is false .

句法

track.onunmute = unmuteHandler;
					

unmuteHandler is a function which is called when the MediaStreamTrack receives the unmute event. The event handler receives as input a single parameter: an 事件 whose kind is "unmute" .

范例

This example creates an unmute event handler which changes the state of a visual indicator to display the Emoji character representing a "speaker" icon.

myTrack.onunmute = function(evt) {
  playStateIcon.innerHTML = "🔈";
};
					

规范

规范 状态 注释
媒体捕获和流
The definition of 'MediaStreamTrack.onunmute' in that specification.
候选推荐 最初的规范。

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
onunmute Chrome Yes Edge 12 Firefox 59 IE No Opera Yes Safari Yes WebView Android Yes Chrome Android Yes Firefox Android 59 Opera Android Yes Safari iOS Yes Samsung Internet Android Yes

图例

完整支持

完整支持

不支持

不支持

另请参阅

元数据

  • 最后修改: