Can anyone point me in the right direction as to why this code will not play this audio clip continuously? It plays it once and stops.

final Clip clip = AudioSystem.getClip();
final AudioInputStream inputStream = AudioSystem.getAudioInputStream(new File("Alarm_Police.wav"));
clip.open(inputStream);
clip.loop(Clip.LOOP_CONTINUOUSLY);
link|improve this question
Have you tried doing the loop() before open()? I have not tried it but it might work. – Dan W Jan 23 at 23:11
I just tried it here and it seems to work... are you catching any exception in the try block that should be surronding this code ? – Timst Jan 23 at 23:16
Hi, I tried this too and it works. Do you have som exception after first loop ? – hudi Jan 23 at 23:19
@DanW - Yeah putting loop() before open() just doesn't play anything. – daveed007 Jan 24 at 1:46
@Timst - No exceptions are being thrown. – daveed007 Jan 24 at 1:48
show 3 more comments
feedback

1 Answer

up vote 2 down vote accepted

If you are running a bigger application, this answer may not apply. But for a simple test with only that piece of code, this may help:

Clip.loop() starts it's own thread, but that thread will not keep the JVM alive. So to make it work, make sure the clip is not the only thread.

If I leave out Thread.sleep(..) from this snippet, I get the same issue as you;

import java.io.File;

import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;

public class Snippet {
    public static void main(String[] args) throws Exception {

        AudioInputStream inputStream = AudioSystem.getAudioInputStream(new File("notify.wav"));
        Clip clip = AudioSystem.getClip();
        clip.open(inputStream);
        clip.loop(Clip.LOOP_CONTINUOUSLY);
        Thread.sleep(10000); // looping as long as this thread is alive
    }
}
link|improve this answer
Thanks Frank, as far as I understand if I hit the up arrow key it adds to your 'reputation' or something, but I don't have enough posts to allow me to do so. I hit the green checkmark, which I hope means I choose your answer to answer the question. – daveed007 Jan 24 at 1:50
You're exactly right, I'm glad I could help! – Frank Paaske Jan 24 at 9:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.