You may find the bug at
http://developer.java.sun.com/developer/bugParade/bugs/4680280.html

The workaround (I have tried it, it works smoothly) is to use import
com.sun.j3d.audioengines.headspace.HeadspaceMixer instead of
com.sun.j3d.audioengines.javasound.JavaSoundMixer.

Quoting:

i.e. If you are not using Viewer createAudioDevice()  Replace

import com.sun.j3d.audioengines.javasound.JavaSoundMixer;
JavaSoundMixer javaSoundMixer = new JavaSoundMixer( physicalEnv );

by

import com.sun.j3d.audioengines.headspace.HeadspaceMixer;
HeadspaceMixer javaSoundMixer = new HeadspaceMixer( physicalEnv );

And that should do the trick - that is you'll be able to manipulate sound.

Hope that helps,

Panos


----- Original Message -----
From: "Georg Rehfeld" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, June 15, 2002 3:15 AM
Subject: Re: [JAVA3D] Sound Question


> Dear Panos,
>
> > I have just found a bug submission on the issue (bug id 4680280).
>
> As the bug parade search engine seems to have a problem and thus
> I couldn't find that bug:
>
> Is there a workaround/solution? Would you please send a working
> example to the list?
>
> Thanks
>
> Georg
>  ___   ___
> | + | |__    Georg Rehfeld      Woltmanstr. 12     20097 Hamburg
> |_|_\ |___   [EMAIL PROTECTED]           +49 (40) 23 53 27 10
>
>
===========================================================================
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the
body
> of the message "signoff JAVA3D-INTEREST".  For general help, send email to
> [EMAIL PROTECTED] and include in the body of the message "help".
>

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA3D-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to