W3cubDocs

/DOM

ChannelSplitterNode.constructor

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 the ChannelSplitterNode to have (It also inherits the options defined in the AudioNodeOptions dictionary):
  • numberOfOutputs: A number defining the number of inputs the ChannelSplitterNode 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

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

© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ChannelSplitterNode/ChannelSplitterNode