The MediaStream.addTrack()
method adds a new track to the stream. The track is specified as a parameter of type MediaStreamTrack
.
Note: If the specified track is already in the stream's track set, this method has no effect.
The MediaStream.addTrack()
method adds a new track to the stream. The track is specified as a parameter of type MediaStreamTrack
.
Note: If the specified track is already in the stream's track set, this method has no effect.
js
addTrack(track)
track
A MediaStreamTrack
to add to the stream.
None (undefined
).
Specification |
---|
Media Capture and Streams # dom-mediastream-addtrack |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
addTrack |
26 | 12 | 44 | No | No | 11 | 37 | 26 | No | No | 11 | 1.5 |
MediaStream
, the interface it belongs to.
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/MediaStream/addTrack