Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
The MediaStreamTrack.remote
read-only property allows Javascript to know whether a WebRTC MediaStreamTrack is from a remote source or a local one. It returns a Boolean
with a value of true
if the track is sourced remotely (that is, sourced by an RTCPeerConnection), or false
if it is sourced locally.
Syntax
var bool = track.remote;
Specifications
Specification | Status | Comment |
---|---|---|
Media Capture and Streams The definition of 'MediaStreamTrack.remote' in that specification. |
Editor's Draft | Initial definition. |
Browser compatibility
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 48 | (Yes) | (Yes) | No support | (Yes) | ? |
Removed | 59 | ? | ? | ? | ? | ? |
Feature | Android Webview | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | 48 | 48 | (Yes) | (Yes) | No support | (Yes) | ? |
Removed | 59 | 59 | ? | ? | ? | ? | ? |
See also