The ChannelMergerNode() constructor creates a new ChannelMergerNode object instance.
Syntax
var myWave = new ChannelMergerNode(context, options);
Parameters
- context
- A
BaseAudioContextrepresenting the audio context you want the node to be associated with. - options Optional
- A
ChannelMergerOptionsdictionary object defining the properties you want theChannelMergerNodeto have (It also inherits the options defined in theAudioNodeOptionsdictionary):numberOfInputs: A number defining the number of inputs theChannelMergerNodeshould have. If not specified, the default value used is 6.
Example
var ac = new AudioContext();
var options = {
numberOfInputs : 2
}
var myMerger = new ChannelMergerNode(ac, options);
Specifications
| Specification | Status | Comment |
|---|---|---|
| Web Audio API The definition of 'ChannelMergerNode' 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 | (Yes) |