ChannelMergerNode() 构造函数创建新 ChannelMergerNode 对象实例。

句法

var myNode = new ChannelMergerNode(context, options);
					

参数

context
BaseAudioContext representing the audio context you want the node to be associated with.
选项 可选
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.

返回值

新的 ChannelMergerNode 对象实例。

异常

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

范例

var ac = new AudioContext();
var options = {
  numberOfInputs : 2
}
var myMerger = new ChannelMergerNode(ac, options);
					

规范

规范 状态 注释
Web 音频 API
The definition of 'ChannelMergerNode' in that specification.
工作草案

浏览器兼容性

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.

更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
ChannelMergerNode() 构造函数 Chrome 55 Edge ≤79 Firefox 53 IE No Opera 42 Safari ? WebView Android 55 Chrome Android 55 Firefox Android 53 Opera Android 42 Safari iOS ? Samsung Internet Android 6.0

图例

完整支持

完整支持

不支持

不支持

兼容性未知 ?

兼容性未知

元数据

  • 最后修改: