The AudioNodeOptions
dictionary of the Web Audio API specifies options that can be used when creating new AudioNode
objects.
Documentation AudioNodeOptions by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See also:
Fields
optionalchannelInterpretation:Null<ChannelInterpretation>
Represents an enumerated value describing the meaning of the channels. This interpretation will define how audio up-mixing and down-mixing will happen.
The possible values are "speakers"
or "discrete"
. (See AudioNode.channelCountMode
for more information including default values.)
optionalchannelCountMode:Null<ChannelCountMode>
Represents an enumerated value describing the way channels must be matched between the node's inputs and outputs. (See AudioNode.channelCountMode
for more information including default values.)
optionalchannelCount:Null<Int>
Represents an integer used to determine how many channels are used when up-mixing and down-mixing connections to any inputs to the node. (See AudioNode.channelCount
for more information.) Its usage and precise definition depend on the value of AudioNodeOptions.channelCountMode
.