RTCTrackEventInit.streams
The RTCTrackEventInit
dictionary's optional streams
property provides an array containing a MediaStream
object for each of the streams associated with the event's track.
Syntax
var trackEventInit = { receiver: rtpReceiver, track: mediaStreamTrack, streams: [videoStream], transceiver: rtpTransceiver }; var streamList = trackEventInit.streams;
Value
An array of MediaStream
objects, one for each stream which make up the track.
If streams
is not specified, its default value is an empty array.
Specifications
Specification |
---|
WebRTC 1.0: Real-Time Communication Between Browsers (WebRTC 1.0) # dom-rtctrackeventinit-streams |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
streams |
56 |
≤18 |
22 |
No |
43 |
11 |
56 |
56 |
44 |
43 |
11 |
6.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCTrackEventInit/streams