MenuMenu

RTCMultiConnection.onunmute

This event is fired if any of the stream is un-muted/re-enabled

How to use

// if local or remote stream is muted
connection.onunmute = function(e) {
   e.mediaElement.removeAttribute('poster');
   e.mediaElement.srcObject = e.stream;
};