MediaElementAudioSourceNode.MediaElementAudioSourceNode()

The MediaElementAudioSourceNode() constructor creates a new MediaElementAudioSourceNode object instance.

Syntax

var myAudioSource = new MediaElementAudioSourceNode(context, options);

Parameters

context
An AudioContext representing the audio context you want the node to be associated with.
options
A MediaElementAudioSourceOptions dictionary object defining the properties you want the MediaElementAudioSourceNode to have:
  • mediaElement: An HTMLMediaElement that 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

 Contributors to this page: jpmedley, chrisdavidmills
 Last updated by: jpmedley,