I'm trying to write a custom synthesizer in Java on a Ubuntu 11.10 laptop. Here is my code:
package com.sibbo.audio;
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.Clip;
import javax.sound.sampled.LineUnavailableException;
public class Audio {
public static void main(String[] args) throws LineUnavailableException {
byte[] data = new byte[16000 * 2];
sinus(data);
AudioFormat format = new AudioFormat(16000, 8, 1, true, true);
Clip c = javax.sound.sampled.AudioSystem.getClip();
c.open(format, data, 0, data.length); // throws IllegalArgumentException
}
private static void sinus(byte[] data) {
for (int i = 0; i < data.length; i++) {
data[i] = (byte) (Math.sin(i / 200.0) * 127);
}
}
}
At the marked line, it throws an Exception, saying: "Invalid format". How can I figure out which AudioFormats are legal? What I already tried is switching the boolean values for signed/unsigned and little/big endian.