Reference+
Name
process()
Class
Reverb
Description
Start the effect.
Examples
import processing.sound.*; AudioIn in; Reverb reverb; void setup() { size(640,360); background(255); // create the input stream in = new AudioIn(this, 0); // create a reverb effect reverb = new Reverb(this); // start the input stream in.play(); // Patch the reverb reverb.process(in); } void draw() { }
Syntax
effect.process(input)
Parameters
input
(SoundObject)
Input sound source
Return
void
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.