Inherits properties from its parent, web.audio.AudioNode
.
Inherits properties from its parent, `web.audio.AudioNode`.
(attack this)
Property.
[Read Only]
An web.audio.AudioParam
.
var audioCtx = new AudioContext(); var compressor = audioCtx.createDynamicsCompressor(); compressor.attack.value = 0;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/attack
Property. [Read Only] An `web.audio.AudioParam`. `var audioCtx = new AudioContext(); var compressor = audioCtx.createDynamicsCompressor(); compressor.attack.value = 0;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/attack`
(knee this)
Property.
[Read Only]
An web.audio.AudioParam
.
var audioCtx = new AudioContext(); var compressor = audioCtx.createDynamicsCompressor(); compressor.knee.value = 40;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/knee
Property. [Read Only] An `web.audio.AudioParam`. `var audioCtx = new AudioContext(); var compressor = audioCtx.createDynamicsCompressor(); compressor.knee.value = 40;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/knee`
(ratio this)
Property.
[Read Only]
An web.audio.AudioParam
.
var audioCtx = new AudioContext(); var compressor = audioCtx.createDynamicsCompressor(); compressor.ratio.value = 12;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/ratio
Property. [Read Only] An `web.audio.AudioParam`. `var audioCtx = new AudioContext(); var compressor = audioCtx.createDynamicsCompressor(); compressor.ratio.value = 12;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/ratio`
(reduction this)
Property.
[Read Only]
The reduction read-only property of the web.audio.DynamicsCompressorNode
is a float representing the amount of gain reduction currently
by the compressor to the signal.
var myReduction = compressorNodeInstance.reduction;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/reduction
Property. [Read Only] The reduction read-only property of the `web.audio.DynamicsCompressorNode` is a float representing the amount of gain reduction currently by the compressor to the signal. `var myReduction = compressorNodeInstance.reduction;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/reduction`
(release this)
Property.
[Read Only]
An web.audio.AudioParam
.
var audioCtx = new AudioContext(); var compressor = audioCtx.createDynamicsCompressor(); compressor.release.value = 0.25;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/release
Property. [Read Only] An `web.audio.AudioParam`. `var audioCtx = new AudioContext(); var compressor = audioCtx.createDynamicsCompressor(); compressor.release.value = 0.25;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/release`
(threshold this)
Property.
[Read Only]
An web.audio.AudioParam
.
var audioCtx = new AudioContext(); var compressor = audioCtx.createDynamicsCompressor(); compressor.threshold.value = -50;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/threshold
Property. [Read Only] An `web.audio.AudioParam`. `var audioCtx = new AudioContext(); var compressor = audioCtx.createDynamicsCompressor(); compressor.threshold.value = -50;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/threshold`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close