This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2021.
The Web Audio API's MediaStreamAudioSourceNode() constructor creates and returns a new MediaStreamAudioSourceNode object which uses the first audio track of a given MediaStream as its source.
Note: Another way to create a MediaStreamAudioSourceNode is to call the AudioContext.createMediaStreamSource() method, specifying the stream from which you want to obtain audio.
new MediaStreamAudioSourceNode(context, options)
contextAn AudioContext representing the audio context you want the node to be associated with.
optionsAn object defining the properties you want the MediaStreamAudioSourceNode to have:
mediaStreamA required property which specifies the MediaStream from which to obtain audio for the node.
A new MediaStreamAudioSourceNode object representing the audio node whose media is obtained from the specified source stream.
InvalidStateError DOMException
Thrown if the specified MediaStream does not contain any audio tracks.
This example uses getUserMedia() to obtain access to the user's camera, then creates a new MediaStreamAudioSourceNode from its MediaStream.
// define variables
const audioCtx = new AudioContext();
// getUserMedia block - grab stream
// put it into a MediaStreamAudioSourceNode
if (navigator.mediaDevices.getUserMedia) {
navigator.mediaDevices
.getUserMedia(
// constraints: audio and video for this app
{
audio: true,
video: false,
},
)
.then((stream) => {
const options = {
mediaStream: stream,
};
const source = new MediaStreamAudioSourceNode(audioCtx, options);
source.connect(audioCtx.destination);
})
.catch((err) => {
console.error(`The following gUM error occurred: ${err}`);
});
} else {
console.log("new getUserMedia not supported on your browser!");
}
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
MediaStreamAudioSourceNode |
55 | 79 | 53 | 42 | 14.1 | 55 | 53 | 42 | 14.5 | 6.0 | 55 | 14.5 |
© 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/MediaStreamAudioSourceNode/MediaStreamAudioSourceNode