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 theMediaElementAudioSourceNode
to have:mediaElement
: AnHTMLMediaElement
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
Document Tags and Contributors
Tags:
Contributors to this page:
jpmedley,
chrisdavidmills
Last updated by:
jpmedley,