The ConvolverNode
interface is an AudioNode
that performs a Linear Convolution on a given AudioBuffer
, often used to achieve a reverb effect. A ConvolverNode
always has exactly one input and one output.
Note: For more information on the theory behind Linear Convolution, see the W3C Web Audio API spec section, Linear Effects Using Convolution, or read the The Wikipedia Linear Convolution Article.
Number of inputs | 1 |
---|---|
Number of outputs | 1 |
Channel count mode | "clamped-max" |
Channel count | 2 |
Channel interpretation | "speakers" |
Inherits properties from its parent, AudioNode
.
ConvolverNode.buffer
AudioBuffer
containing the (possibly multichannel) impulse response used by the ConvolverNode
to create the reverb effect.
ConvolverNode.normalize
buffer
attribute is set, or not.No specific method; inherits methods from its parent, AudioNode
.
Specification | Status | Comment |
---|---|---|
Web Audio API The definition of 'ConvolverNode' in that specification. | Working Draft |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 10.0webkit | (Yes) | 25.0 (25.0) | No support | 15webkit 22 (unprefixed) | 6.0webkit |
constructor | 55.0 | ? | ? | ? | 42 | ? |
Feature | Android | Android Webview | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|---|
Basic support | No support | (Yes) | (Yes) | 26.0 | 1.2 | ? | (Yes) | ? | 33.0 |
constructor | No support | 55.0 | ? | ? | ? | ? | 42 | ? | 55.0 |
© 2005–2017 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/ConvolverNode