I'm making an applet with Processing 1.5.1 and Minim. When I try to play a remote mp3, the playback stops after less than one second. (I only hear the first note, and then it stops)
Code snippet :
minim = new Minim(this);
sound=minim.loadSnippet("http://example.org/foo/mysound.mp3");
sound.play();
The Javadoc for loadSnippet() states it accepts both filenames and URLs. When I include the mp3 in the applet jar file, everything works as expected.
The applet is hosted on the same domain as the mp3 file.