Playing local MP3
The method below creates player and play mp3 file.public void run(){ try { InputStream is = getClass().getResourceAsStream(”/your.mp3″); player = Manager.createPlayer(is,”audio/mpeg”);
player.realize(); // get volume control for player and set volume to max vc = (VolumeControl) player.getControl(”VolumeControl”); […]
