Results 1 - 10 of 10

AudioNode

The AudioNode interface is a generic interface for representing an audio processing module like an audio source (e.g. an HTML <audio> or <video> element, an OscillatorNode, etc.), the audio destination, intermediate processing module (e.g. a filter like BiquadFilterNode or ConvolverNode), or volume control (like GainNode).
API AudioNode Interface Reference Référence Web Audio API

AudioNode.channelCount

channelCount's usage and precise definition depend on the value of AudioNode.channelCountMode:
API AudioNode channelCount Property Reference Référence Web Audio API

AudioNode.channelCountMode

The possible values of channelCountMode and their meanings are:
API AudioNode channelCountMode Property Reference Référence Web Audio API

AudioNode.connect(AudioNode)

A reference to the destination AudioNode object. In some browsers older implementations of this interface return void.
API AudioNode connect Method Reference Web Audio API

AudioNode.connect(AudioParam)

It is possible to connect an AudioNode output to more than one AudioParam, and more than one AudioNode output to a single AudioParam, with multiple calls to connect(). Fan-in and fan-out are therefore supported.
API AudioNode connect Method Reference Référence Web Audio API