Categories: Java | How To | Code Examples | Audio | Multimedia
This page was last modified 08:35, 25 September 2007.
How to handle multiple sounds in Java ME
From Forum Nokia Wiki
Most phones will throw an exception if you try to keep two sounds loaded at the same time, so the trick is to deallocate the previous sound before you play the next one. The code below shows a SoundManager class, which keeps track of all the sounds in your midlet in a hashtable. It also keeps track of the time that the last sound was played, because if you try to play two sounds too close to each other it will fail in most phones.
import java.io.InputStream; import java.util.Enumeration; import java.util.Hashtable; import javax.microedition.media.Manager; import javax.microedition.media.Player; public class SoundManager { private static Hashtable mapSound = new Hashtable(); private static long timeLastSound = 0; private static boolean enabled = true; static public Player getPlayer(String sound) { Player player; player = (Player)mapSound.get(sound); if (player == null) { try { String fileSpec = "/"; fileSpec += sound; InputStream is = SoundManager.class.getResourceAsStream(fileSpec); if (fileSpec.endsWith("amr")) player = Manager.createPlayer(is, "audio/amr"); else if (fileSpec.endsWith("mid")) player = Manager.createPlayer(is, "audio/midi"); mapSound.put(sound, player); } catch (Exception ex) { DebugStuff.print(ex.toString()); } } return player; } public static void playSound(String sound) { if (!enabled) return; if (Math.abs(System.currentTimeMillis() - timeLastSound) < 250) { DebugStuff.print("tried to play 2 sounds too soon"); return; } timeLastSound = System.currentTimeMillis(); Player player = getPlayer(sound); try { Enumeration enumValues; Player playerOther; for (enumValues = mapSound.elements(); enumValues.hasMoreElements() ;) { playerOther = (Player)enumValues.nextElement(); if (playerOther != player && playerOther.getState() == Player.STARTED) playerOther.deallocate(); } if (player.getState() == Player.STARTED) { DebugStuff.print("sound already started"); return; } player.start(); } catch (Exception e) { DebugStuff.print(e.toString()); } } public static void setEnabled(boolean enabled) { SoundManager.enabled = enabled; } }
How to call use the SoundManager:
SoundManager.playSound("sound1.amr");
(Notice I am using the amr format instead of wav. This is because amr is much smaller, has more or less the same quality and is equally well supported as the wav format.)
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| [moved] S40 and S60 behave differently in java bluetooth applications | emasse | Mobile Java General | 7 | 2008-09-01 16:08 |
| Can the nokia api be used from multiple objects at the same time? | psmshankar | PC Suite API and PC Connectivity SDK | 2 | 2003-09-01 15:19 |
| Retriving multiple selected items from ListBox | Shaddy_ | General Symbian C++ | 2 | 2007-02-20 05:16 |
| Session Id problem in Symbian 7.0s | bhavikdhoot | Symbian Networking & Messaging | 1 | 2007-10-19 09:35 |
| Error in obfuscation | vamosa | Mobile Java General | 0 | 2002-11-14 17:34 |
