reverb - implementation of the Freeverb algorithm.
Inputs:
in [BUFFER] [REQUIRED]: input buffer to apply reverb to, sampling rate must be 44100 Hz..
wet [FLOAT] [OPTIONAL]: wetness of effect, 0 means input is unaffected, 1 means full on effect. Defaults to 1.
roomsize [FLOAT] [OPTIONAL]: amount of feedback, set between 0 and about 0.9. Defaults to 0.84.
damp [FLOAT] [OPTIONAL]: dampness, low pass filtering of feedback. Defaults to 0.2.
duration [FLOAT] [OPTIONAL]: duration of output signal. Defaults to input’s duration.
Outputs:
out [BUFFER]: output buffer.
Applies the Freeverb algorithm to the input buffer. duration can be set to something larger than the input duration in order to get a longer trailing reverberation after the end of the input.