# Hello, # I'm writing a simple instrument for fun, something like this: instr 1 amic in adummy delayr 10 asig deltapi 4 ainput = asig+amic delayw ainput out asig+amic endin # It uses real-time audio input from a microphone.I start Csound with this command line: csound.exe -i adc -o dac -B1024 -b4096 (buffer values smaller than 4096 produce clicks.) # I'm using Asio4All, and its buffer is set to 512 samples. And I've built this same instrument with Native Instrument's Reaktor (a moduler synth with fancy GUI, knobs, wires etc.) Reaktor's latency is equal to the buffer value in Asio4all. So, this shows that my computer is strong enough to calculate this real-time data w/o clicks. # 4096 samples is approximately 100 msec long (which makes realtime input useless). And if I use stereo output the buffer length and also the latency doubles. # So, how must I configure Csound according to decrease the buffer length? synchronize it with Asio4All? (perhaps I'm using bad terminology...) # Thanks! -ugur guney- -- Send bugs reports to this list. To unsubscribe, send email to csound-unsubscribe@lists.bath.ac.uk