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.
(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`
(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`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close