P800 sound

Does anyone know if a p800 midlet can play sound and if it supports MMAPI?

I have tried using the following code to play an amr but when trying it on the phone it exits when attempting to play it?

Player player = null;
try {
player = Manager.createPlayer(this.getClass().getResourceAsStream("/sound.amr"),“audio/amr”);
player.prefetch();
} catch (Exception e0) {}
try {
player.start();
}catch (Exception e5) {}
try {
player.stop();
}catch (Exception e5) {}