This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.

Name

AudioDevice

Examples
import processing.sound.*;
AudioDevice myAudioServer;

void setup() {
  size(200, 200);
  myAudioServer = new AudioDevice(this, 44100, 128);
}

void draw() {
}

Description Audio Device allows for configuring the audio server. If you need a low latency server you can reduce the buffer size. Allowed values are power of 2. For changing the sample rate pass the appropriate value in the constructor.
Constructor
AudioDevice(theParent, sampleRate, bufferSize)
Updated on April 30, 2017 02:33:22pm EDT

Creative Commons License