Hi,
I've got a setup that performs some effects on microphone input (adc~ and dac~).
I'd like to implement the following feature: after a certain event occurs, normal operation is stopped and the last X seconds should be played (X between 20-180).
For implementation, I can think of two cases:
1. After X seconds have passed - in this case I can use "delwrite~ X" and delread~
2. Before X seconds have passed - in this I can write to table with size X, using tabwrite~, and read using tabread~
Is this the correct approach to implement this?
Thanks in advance