Detecting no note / silence
-
I'm trying to figure out a way to detect when a note has stopped playing audio (not like a note off message). Is it possible to detect when an envelope has reached it's end? Or when the audio level drops beneath a certain level?
I've been trying with a timer and getCurrentlevel(false); but when I print the value it's kind of all over the place
silence = MASTERVOLUME.getCurrentLevel(false); Console.print(silence);
-
@DanH Perhaps
if (!Engine.getNumVoices())
-
@d-healey ah yes, good idea. This rings a bell too, I think we've been here before