I've exacly the same problem.
My device: 5800 XM: 30.0.011
Code:
FileConnection fc = (FileConnection) Connector.open("SoundFile.mp3", Connector.READ);
InputStream in = fc.openInputStream();
Player player = Manager.createPlayer(in, "audio/mpeg");
player.realize();
vc = (VolumeControl) player.getControl("VolumeControl");
if (vc != null) {
vc.setLevel(100);
}
player.prefetch();
player.start();
On the Emulator from the S60 5th Edition SDK this code crashs and when i try this on my device there's no sound.
Regards,
Julian