This commit is contained in:
Fabian Keller
2021-01-06 11:56:35 +01:00
2 changed files with 29 additions and 4 deletions

View File

@@ -18,8 +18,9 @@ class TEST_Audio {
@Test @Test
void test() { void test() {
sound.spieleJauJau(); //sound.spieleJauJau();
sound.spieleJau(); //sound.spieleJau();
sound.test();
} }
} }

View File

@@ -2,6 +2,7 @@ package de.jaujau.daten;
import java.io.IOException; import java.io.IOException;
import java.util.concurrent.CountDownLatch;
import javax.sound.sampled.AudioFormat; import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioInputStream; import javax.sound.sampled.AudioInputStream;
@@ -41,6 +42,29 @@ public class Audio {
} }
} }
/**
* Spielt den "JauJau" Ton ab
*/
public void test() {
new Thread(new Runnable() {
@Override
public void run() {
try {
playSound("/sound/jaujau.wav");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}).start();
for(int i = 0; i < 500000; i++) {
System.out.println(i);
}
}
/* /*
* !!! DIESE METHODE IST NICHT VON MIR !!! * !!! DIESE METHODE IST NICHT VON MIR !!!