I'm looking into writing a audio syntesizer in Java, and was wondering if anybody has any advice or good resources for writing such a program. I'm looking for info on generating raw sound waves, how to output them into a usable form (playing over speakers), as well as general theory on the topic. Thanks guys.
|
|
In C/C++, the corresponding data structure would look something like this:
I'm not sure about Java. I guess you'll have to substitute "struct" with "class" and "void* data" with "char[] data" or "short[] data" or "int[] data", corresponding to the number of bits per sample, as defined in the field bipsa. To fill it with data, you would use something like that in C/C++:
Again, I'm not sure about Java but the conversion should be straightforward if you convert the void-pointer to an array corresponding to the bitrate. Then simply write the entire structure to a file to get a playable wave file. |
|||
|
|
|
|
I dont't know if that helps, but if you can use MIDI for anything, you should check out JFuge. |
||||||
|
|
|
While studying for my degree, my dissertation project was the creation of a Java based modular synthesizer, and the University at which I studied saw fit to make my report publicly available: |
||
|
|
|
|
Check out Frinika. It's a full-featured music workstation implemented in Java (open source). Using the API, you can run midi events through the synthesizer, read the raw sound output, and write it to a WAV file (see source code link below). Additional information: |
||
|
|
