Thank you for making a library of SAM and for sharing your code! Can you advise, please, if the code (with slight modifications) could produce sound in real-time sample by sample on request, say calling
sam.setText("hello");
// then
while(!sam.finished()){
if (Audio.waiting())
Audio.feedSample(sam.getSample());
}
Thank you for making a library of SAM and for sharing your code! Can you advise, please, if the code (with slight modifications) could produce sound in real-time sample by sample on request, say calling
?