Class Name

Reverb

Description

This is a simple reverb 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();
      reverb.process(in);
    }      
    
    void draw() {
    }
    
    

Constructors

  • Reverb(parent)

Parameters

  • parentPApplet: typically use "this"

Methods

  • damp()Changes the damping factor of the reverb effect.
  • process()Start the effect.
  • room()Change the room size of the reverb effect.
  • set()Set multiple parameters of the reverb.
  • stop()Stop the effect.
  • wet()Change the wet/dry ratio of the reverb.