This feature is well established and works across many devices and browser versions. It’s been available across browsers since October 2018.
The MediaStreamAudioDestinationNode interface represents an audio destination consisting of a WebRTC MediaStream with a single AudioMediaStreamTrack, which can be used in a similar way to a MediaStream obtained from navigator.mediaDevices.getUserMedia().
It is an AudioNode that acts as an audio destination, created using the AudioContext.createMediaStreamDestination() method.
| Number of inputs | 1 |
|---|---|
| Number of outputs | 0 |
| Channel count | 2 |
| Channel count mode | "explicit" |
| Channel count interpretation | "speakers" |
MediaStreamAudioDestinationNode()Creates a new MediaStreamAudioDestinationNode object instance.
Inherits properties from its parent, AudioNode.
MediaStreamAudioDestinationNode.streamA MediaStream containing a single MediaStreamTrack whose kind is audio and with the same number of channels as the node. You can use this property to get a stream out of the audio graph and feed it into another construct, such as a Media Recorder.
Inherits methods from its parent, AudioNode.
See AudioContext.createMediaStreamDestination() for example code that creates a MediaStreamAudioDestinationNode and uses it as a source for audio to be recorded.
| Specification |
|---|
| Web Audio API> # MediaStreamAudioDestinationNode> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
MediaStreamAudioDestinationNode |
57 | 79 | 53 | 44 | 14.1 | 57 | 53 | 43 | 14.5 | 7.0 | 57 | 14.5 |
MediaStreamAudioDestinationNode |
25 | 18 | 25 | 15 | 11 | 25 | 25 | 14 | 11 | 1.5 | 4.4 | 11 |
stream |
25 | 18 | 25 | 15 | 11 | 25 | 25 | 14 | 11 | 1.5 | 4.4 | 11 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode