How to process more than one audio inputs?

edited May 2016 in Library Questions

Hi all. First time here send message :) I'm very interested in《Messa di voce》( ),but I don't know how to process more than one audio inputs with Minim just like what the video shows(two kinds of sound inputs control the motion trail in different places separately). The programming below is from the example of Minim. How to change it so I can create two kinds of inputs? Or there are maybe some other ways? //////////////////////////////////////////////////////////////////////// import ddf.minim.*;

Minim minim; AudioInput in;

void setup() { size(512, 200, P3D);

minim = new Minim(this);

// use the getLineIn method of the Minim object to get an AudioInput in = minim.getLineIn(); } \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ Poor expression maybe. Thank you :)

Sign In or Register to comment.