Hi,
I'm trying to play an .mp3 sound on my Nokia N78. I use the following Code:With Sun WTK 2.5.2 I get an error, probably because it can't play mp3.PHP Code:try
{
InputStream soundStream = getClass().getResourceAsStream("/audio/bell.mp3");
player = Manager.createPlayer(soundStream, "audio/mpeg");
player.realize();
player.prefetch();
player.start();
} catch(Exception e)
{
e.printStackTrace();
}
With Sun WTK 3.0 it works
Nokia S60 3rd Emulator throws an error "Prefetch error: -1"
My N78 Phone doesn't throw an error but plays no sound.
Can anyone gibe me a hint?

Reply With Quote

