The MediaElementAudioSourceNode() constructor creates a new MediaElementAudioSourceNode object instance.
Syntax
var myAudioSource = new MediaElementAudioSourceNode(context, options);
Parameters
- context
- An
AudioContextrepresenting the audio context you want the node to be associated with. - options
- A
MediaElementAudioSourceOptionsdictionary object defining the properties you want theMediaElementAudioSourceNodeto have:mediaElement: AnHTMLMediaElementthat will be used as the source for the audio.
Example
var ac = new AudioContext();
var mediaElement = document.createElement('audio');
var options = {
mediaElement : mediaElement
}
var myAudioSource = new MediaElementAudioSourceNode(ac, options);
Specifications
| Specification | Status | Comment |
|---|---|---|
| Web Audio API The definition of 'MediaElementAudioSourceNode' in that specification. |
Working Draft |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|
| Basic support | 55.0 | No support | No support |
42 |
No support |
| Feature | Android | Android Webview | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile | Chrome for Android |
|---|---|---|---|---|---|---|---|
| Basic support | No support | 55.0 | No support | No support |
42 |
No support | 55.0 |
Document Tags and Contributors
Tags:
Contributors to this page:
jpmedley,
chrisdavidmills
Last updated by:
jpmedley,