The MediaStreamAudioDestinationNode()
constructor creates a new MediaStreamAudioDestinationNode
object instance.
Syntax
var myAudioDest = new MediaStreamAudioDestinationNode(context, options);
Parameters
- context
- An
AudioContext
representing the audio context you want the node to be associated with. - options Optional
- An
AudioNodeOptions
dictionary object defining the properties you want theMediaStreamAudioDestinationNode
to have.
Example
var ac = new AudioContext(); var myDestination = new MediaStreamAudioDestinationNode(ac);
Specifications
Specification | Status | Comment |
---|---|---|
Web Audio API The definition of 'MediaStreamAudioDestinationNode' in that specification. |
Working Draft |
Browser compatibility
Document Tags and Contributors
Tags:
Contributors to this page:
chrisdavidmills
Last updated by:
chrisdavidmills,