Liking cljdoc? Tell your friends :D

web.audio.AudioDestinationNode

AudioDestinationNode has no output (as it is the output, no more can be linked after it in the audio graph) and one input. The of channels in the input must be between 0 and the maxChannelCount or an exception is raised.

AudioDestinationNode has no output (as it is the output, no more
can be linked after it in the audio graph) and one input. The
of channels in the input must be between 0 and the maxChannelCount
or an exception is raised.
raw docstring

max-channel-countcljs

(max-channel-count this)

Property.

An unsigned long.

var audioCtx = new AudioContext(); var myDestination = audioCtx.destination; myDestination.maxChannelCount = 2;

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioDestinationNode/maxChannelCount

Property.

An unsigned long.

`var audioCtx = new AudioContext();
var myDestination = audioCtx.destination;
myDestination.maxChannelCount = 2;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioDestinationNode/maxChannelCount`
sourceraw docstring

set-max-channel-count!cljs

(set-max-channel-count! this val)

Property.

An unsigned long.

var audioCtx = new AudioContext(); var myDestination = audioCtx.destination; myDestination.maxChannelCount = 2;

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioDestinationNode/maxChannelCount

Property.

An unsigned long.

`var audioCtx = new AudioContext();
var myDestination = audioCtx.destination;
myDestination.maxChannelCount = 2;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioDestinationNode/maxChannelCount`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close