The reduction
read-only property of the DynamicsCompressorNode
interface is a float representing the amount of gain reduction currently applied by the compressor to the signal.
Intended for metering purposes, it returns a value in dB, or 0
(no gain reduction) if no signal is fed into the DynamicsCompressorNode
. The range of this value is between -20
and 0
(in dB).
var myReduction = compressorNodeInstance.reduction;
A float.
var audioCtx = new AudioContext(); var compressor = audioCtx.createDynamicsCompressor(); var myReduction = compressor.reduction;
Specification | Status | Comment |
---|---|---|
Web Audio API The definition of 'reduction' in that specification. | Working Draft |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 14
|
12 | 25 | No | 15 | 6 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes
|
18
|
Yes | 26 | 15 | ? | Yes |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/reduction