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);
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);