Name

outputDevice()

Class

Sound

Description

Choose the device (sound card) which the Sound library's audio output should be sent to. The output device should support stereo output (2 channels).

Examples

  • import processing.sound.*;
    
    void setup() {
      // Create a Sound object and select the second sound device (device ids start at 0) for output
      Sound s = new Sound(this);
      s.outputDevice(1);
    }
    

Syntax

  • Sound.outputDevice(deviceId)
  • Sound.outputDevice(deviceName)

Parameters

  • deviceId(int)the device id obtained from Sound.list()

Return

  • int