createConvolver
Summary
Creates a ConvolverNode, commonly used to add reverb to audio.
Method of apis/webaudio/AudioContextapis/webaudio/AudioContext
Syntax
var = AudioContext.createConvolver();
Return Value
Returns an object of type
ConvolverNode
Examples
var audioCtx = new AudioContext();
var convolver = audioCtx.createConvolver();
Related specifications
- W3C Web Audio API
- W3C Editor’s Draft