Web/API/ChannelMergerNode/ChannelMergerNode

From Get docs

The ChannelMergerNode() constructor creates a new ChannelMergerNode object instance.

Syntax

var myNode = new ChannelMergerNode(context, options);

Parameters

context
A BaseAudioContext representing the audio context you want the node to be associated with.
options Optional
A ChannelMergerOptions dictionary object defining the properties you want the ChannelMergerNode to have (also inherits parameters from the AudioNodeOptions dictionary):
numberOfInputs
  • A number defining the number of inputs the ChannelMergerNode should have. If not specified, the default value used is 6.

Return value

A new ChannelMergerNode object instance.

Exceptions

InvalidStateError
An option such as channelCount or channelCountMode has been given an invalid value.

Example

var ac = new AudioContext();

var options = {
  numberOfInputs : 2 
}

var myMerger = new ChannelMergerNode(ac, options);

Specifications

Specification Status Comment
Web Audio APIThe definition of 'ChannelMergerNode' in that specification. Working Draft

Browser compatibility

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
ChannelMergerNode() constructor Chrome

Full support 55

Edge

Full support 79

Firefox

Full support 53

IE

No support No

Opera

Full support 42

Safari

No support No

WebView Android

Full support 55

Chrome Android

Full support 55

Firefox Android

Full support 53

Opera Android

Full support 42

Safari iOS

No support No

Samsung Internet Android

Full support 6.0

Legend

Full support  
Full support
No support  
No support