Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get this to play a sine wave at 440 hz. The constructor gets called, and no errors appear. generate() makes an array of doubles for the sound data, and sends it to process() which makes an array of bytes that try to get through a Clip

Thanks

public class Synth {

AudioFormat format;

public Synth(){
    format=new AudioFormat(44100, 1, 1, true, false);
    try{
    generate(0.5);
    }catch(Exception e){e.printStackTrace();}
}

public void process(double[] data) throws Exception{ //range -1 to +1
    Clip clip=AudioSystem.getClip();

    byte[] bdata=new byte[data.length];
    for(int i=0; i<data.length; i++){
        bdata[i]=(byte)(data[i]*127);
    }

    AudioInputStream a=new AudioInputStream(new ByteArrayInputStream(bdata), format,bdata.length);

    clip.open(a);
}

public void generate(double seconds)throws Exception{
    float samplerate=format.getSampleRate();

    double[] data=new double[(int)(seconds*samplerate)];
    int f=440;

    for(int i=0; i<data.length; i++){
        data[i]=Math.sin(f*((double)(i)/samplerate)*2*Math.PI);
    }

    process(data);
}
}
share|improve this question
2  
8 questions, zero upvotes cast, 17% accept rate. Might want to improve that. – Mitch Wheat Dec 26 '11 at 0:34

1 Answer

up vote 4 down vote accepted

Try calling Clip.loop(int) (or DataLine.start() - implemented by Clip).

share|improve this answer
Thank you, it works now!!! – milo Dec 26 '11 at 0:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.