W3cubDocs

/Web APIs

MediaStream: addTrack() method

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.

Syntax

js

addTrack(track)

Parameters

track

A MediaStreamTrack to add to the stream.

Return value

None (undefined).

Examples

Specifications

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
addTrack 26 12 44 No No 11 37 26 No No 11 1.5

See also

© 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