Recording from microphone and replaying sound with a delay in Chuck

108 Views Asked by At

I'm trying to replay sound currently recorded on mic with an adjustable delay. This should help to improve pronaunciation ability. I found the example, which seems to do what I want:

adc => DelayL delay => dac;
.05::second => delay.max => delay.delay;
while( true ) 5::second => now;

Unfortunatelly, the delay is not exact the time I define. The replay starts about 0,25 sec later and not 50ms as I want. Is there a way to set smaller delay?

0

There are 0 best solutions below