I've been trying to simply load a wav file into an AudioChannel object and play it but it keeps giving me an error stating "Unable to load sound test.wav"
What I'm doing is:
AudioChannel currentsound;
Ess.start(this);
currentsound = new AudioChannel("test.wav");
currentsound.play();
The audio file is in the working directory too, any idea why it won't load?