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);
}
}
link|improve this question

38% accept rate
2  
8 questions, zero upvotes cast, 17% accept rate. Might want to improve that. – Mitch Wheat Dec 26 '11 at 0:34
feedback

1 Answer

up vote 4 down vote accepted

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

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

Your Answer

 
or
required, but never shown

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