Hi
I'm trying play some mp3 files without success. I've tried loading the files from a remote site, and as part of a resource bundle with the same result.
SoundController soundController = new SoundController();
Sound sound = soundController.createSound(Sound.MIME_TYPE_AUDIO_MPEG_MP3, url, true, true);
When you run my code on firefox,
sound.play() returns false, and the LoadState is SUPPORTED_READY.
On Chrome, it also returns false, but the LoadState is SUPPORTED_NOT_READY.
The demo code works fine from my browser and I can't see any significant difference in their code. Is it possible to get more info about what's wrong?
Any help would be greatly appreciated.