Submitted On 11-OCT-2004
wmjoers
What is happening to this bug? Will there be a patch soon?
Submitted On 12-OCT-2004
Bombadil9
As said, it's not just applets, it's also normal applications. It's not just clips, it's also with MIDI, short WAVs, and so on.
There are some serious bugs in Javasound 1.50 final.
Just load the official Javasound Demo: url=http://java.sun.com/products/java-media/sound/samples/JavaSoundDemo/
It does produce these results on a Win2000 box (and on other people's PCs):
0. 1-welcome.wav : works
1. 22-new.aif : works
2. sfx-medley.rmf : [i]silence[/i]
3. spacemusic.au : works
4. trippygaia1.mid : [i]silence[/i]
Submitted On 12-OCT-2004
nongnong
why release java 1.5 if the bug is still not fixed for beta?
Submitted On 12-OCT-2004
Bombadil9
It's also to be reported against Java 1.50 final, not just beta.
This bug screws many sounds in games etc. :-(
Submitted On 14-OCT-2004
wmjoers
PLEASE! Give us some information on WHEN we can use 1.5 for audio play back.
Submitted On 04-NOV-2004
robtaft
I'm assuming this bug is what is causing Pogo.com to not work properly with 1.5? Is it possible to verify this?
Submitted On 04-NOV-2004
Calibrus
Yep. In fact every game applet I've tried, regardless of web site its on, has sound problems when using 1.5. Some sounds play while others only make a brief click or no sound at all.
Submitted On 20-NOV-2004
Ambroise3
should anyone at sun have a look to this bug. It is really important !
Regards.
Submitted On 04-JAN-2005
_mrjbq7_
A workaround that appears to work is to locate the software mixer:
private static Mixer mixer;
static {
Mixer.Info[] mixers = AudioSystem.getMixerInfo();
for (int i = 0; i < mixers.length; i++) {
if ("Java Sound Audio Engine".equals(mixers[i].getName())) {
mixer = AudioSystem.getMixer(mixers[i]);
}
}
}
And then create the clip from the mixer (if available):
if (mixer != null) {
soundClip = (Clip) mixer.getLine(info);
} else {
soundClip = (Clip) AudioSystem.getLine(info);
}
Submitted On 13-JAN-2005
robtaft
It's not an issue of a work around. It is an issue of backwards compatability with Java 1.1
Submitted On 18-JAN-2005
patrickmallette
Any sound less than 1 second long is affected.
Submitted On 12-APR-2005
PSellhorst
Not fixed. See bug 6251460.
PLEASE NOTE: JDK6 is formerly known as Project Mustang
|