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);
}
}
