Here my script

    public static int getMaxSimultaneousSounds(
    AudioFormat playbackFormat)
{
    DataLine.Info lineInfo = new DataLine.Info(
        SourceDataLine.class, playbackFormat);
    Mixer mixer = AudioSystem.getMixer(null);

    int maxLines = mixer.getMaxLines(lineInfo);
    if (maxLines == AudioSystem.NOT_SPECIFIED) {
        maxLines = 32;
    }

    return maxLines;
}

it's return 1. So i cannot play sound simultaneously but on Windows XP SP2 it return 32 so i can sounds clearly.

How to fix this?

Note: I run Ubuntu 11.04 on VirtualBox

UPDATE: I have tried run on real Ubuntu 11.04(without virtual) but the result is same.

link|improve this question

67% accept rate
please help meee..... – Kenjiro Jul 24 '11 at 14:58
Does the Ubuntu box have identical hardware? If so the audio drivers on Ubuntu must not be setup to expose all features of the hardware. Audio on Linux is notoriously complex. – Pace Jul 24 '11 at 15:33
I have read on net that ALSA may be fix this problem. But i have tried yet. – Kenjiro Jul 25 '11 at 3:52
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.