The ChannelSplitterNode()
constructor creates a new ChannelSplitterNode
object instance.
Syntax
var myWave = new ChannelSpitterNode(context, options);
Parameters
- context
- A
BaseAudioContext
representing the audio context you want the node to be associated with. - options Optional
- A
ChannelSplitterOptions
dictionary object defining the properties you want theChannelSplitterNode
to have (It also inherits the options defined in theAudioNodeOptions
dictionary):numberOfOutputs
: A number defining the number of inputs theChannelSplitterNode
should have. If not specified, the default value used is 6.
Example
var ac = new AudioContext(); var options = { numberOfOutputs : 2 } var mySplitter = new ChannelSplitterNode(ac, options);
Specifications
Specification | Status | Comment |
---|---|---|
Web Audio API The definition of 'ChannelSplitterNode' in that specification. |
Working Draft |
Browser compatibility
Document Tags and Contributors
Tags:
Contributors to this page:
jpmedley,
chrisdavidmills
Last updated by:
jpmedley,