Hi,
I would like to play a song in mp3 format. I have used "audio/mpeg", but it fails to play the song. The related code is in below.
Private Player;
InputStream in = getClass().getResourceAsStream("/Audio/background.mp3");
try {
player = Manager.createPlayer(in, "audio/mpeg");
player.setLoopCount(-1);
player.realize();
player.prefetch();
player.start();
}
catch (Exception e) {}

Reply With Quote

