Quantcast
Channel: Processing Forum
Viewing all articles
Browse latest Browse all 1768

Re : array of audio files - failed

$
0
0
Change this and similar lines from
test[0] = Minim.loadFile("dog.wav");
to
test[0] = minim.loadFile("dog.wav");

In the first Minim is the name of a class so this is called a 'static refrence' in the second line minim is an actual object of type Minin and in this case you should be using the object.

The object was created with this
minim = new Minim(this);


Viewing all articles
Browse latest Browse all 1768

Trending Articles