Play clip more than once?

I can play a Clip by calling clip.start() but when I call it again nothing happens. I have set up a line listener on the clip and it is definitely stopped when I try to play it again. Do I need to reload the clip from the stream again? That might be too slow for a game. I tried using reset() on the AudioInputStream but that doesn’t work for Jorbis Ogg decoder (I get a “mark not supported” error).

Try clip.setFramePosition(0);

That was it! Thanks :slight_smile:

Damn I must learn to read the API more thoroughly ::slight_smile: