I need to convert a string of text that represents a series notes into a wav file and am wondering what the process would be to do this? I don't need exact code, just the steps I would need to take. My text file would look something like this:
c 1
d 2
e 1
So that file would become a wav file that plays the note 'c' (frequency 16.35Hz) for one second, then a 'b' (18.35Hz) for 2 seconds, etc. This text is just an example - the actual text will contain more info, but I just want to start simple, once I have this down I'll implement more information to improve the quality.
I'm not against using an already created library - but was unable find a free or open source one.
The closest already answered question I've been able to find is Create an mp3 file from scratch C#. Everything I've found for java talk about playing wav or other audio files, but not creating them from scratch like I need.
Any help or direction would be great. Thanks in advance!