1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| class MP3 {
private String filename;
Player player;
boolean repeter;
// constructor that takes the name of an MP3 file
public MP3(String filename,boolean repeter) {
this.filename = filename;
this.repeter = repeter;
}
public void close() { if (player != null) player.close(); }
// play the MP3 file to the sound card
public void play() {
try {
FileInputStream fis = new FileInputStream(filename);
BufferedInputStream bis = new BufferedInputStream(fis);
player = new Player(bis);
}
catch (Exception e) {
System.out.println("Problem playing file " + filename);
System.out.println(e);
}
// run in new thread to play in background
new Thread() {
public void run() {
try {
player.play();
}
catch (Exception e) { System.out.println(e); }
}
}.start();
}
} |
Partager