I'm working on a vowel detector which can learn. The process is:
- Sing a vowel (for example A)
- Extract Formant information
- While singing click a button to store the formant information
So far I've used triggeredSampleAndHolds to store the values, but when I stop the Sound those values are gone. So I thought about using the DiskRecorder and the DiskPlayer to write/read a 1 samp long file. This works but I can't use them at the same time because Kyma tells me "the samples file is being recorded and played back at the same time".
Long story short, I'm looking for a way to save values into files which I can access after stopping the Sound. The best way in my opinion would be a txt file which contains all the values for one person, but I can't think of a way to do that. I guess this can be done using SmallTalk. Any suggestions?
Thanks!