The MediaStreamAudioSourceNode() constructor of the Web Audio API creates a new MediaStreamAudioSourceNode object instance.
var myAudioSource = new MediaStreamAudioSourceNode(context, options);
Inherits parameters from the AudioNodeOptions dictionary.
AudioContext representing the audio context you want the node to be associated with.MediaStreamAudioSourceOptions dictionary object defining the properties you want the MediaStreamAudioSourceNode to have: mediaStream: The media stream that will be used as the source for the audio.A new MediaStreamAudioSourceNode object instance.
// define variables
var audioCtx = new (window.AudioContext || window.webkitAudioContext)();
// getUserMedia block - grab stream
// put it into a MediaStreamAudioSourceNode
if (navigator.mediaDevices.getUserMedia) {
console.log('new getUserMedia supported.');
navigator.mediaDevices.getUserMedia (
// constraints: audio and video for this app
{
audio: true,
video: false
}).then(function(stream) {
// Create a MediaStreamAudioSourceNode
var options = {
mediaStream : stream
}
var source = new MediaStreamAudioSourceNode(audioCtx, options);
source.connect(audioCtx.destination);
}).catch(function(err) {
console.log('The following gUM error occured: ' + err);
});
} else {
console.log('new getUserMedia not supported on your browser!');
} | Specification | Status | Comment |
|---|---|---|
| Web Audio API The definition of 'MediaStreamAudioSourceNode' in that specification. | Working Draft |
| Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|---|
| Basic support | 551 | ? | 53 | No | 42 | ? |
| Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
|---|---|---|---|---|---|---|---|
| Basic support | 551 | 551 | ? | 53 | No | 42 | ? |
1. Before Chrome 59, the default values were not supported.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceNode/MediaStreamAudioSourceNode