On 10/30/07, Lars Luthman <lars.luthman@gmail.com> wrote:
With JACK output?
From the Csound manual:
"DO NOT use "--sched" if you are using JACK for audio output. JACK
controls scheduling for the audio applications connected to it, and also
tries to run at the highest possible priority. If the "--sched" flag is
used, Csound and JACK will be competing rather than cooperating,
resulting in extremely poor performance."
"An example of buffer settings for low latency on a fast system:
jackd -d alsa -P -r 48000 -p 64 -n 4 -zt &
csound -+rtaudio=jack -b 64 -B 256 [...]
with real time scheduling (as root):
jackd -R -P 90 -d alsa -P -r 48000 -p 64 -n 2 -zt &So on the same page where it says DO NOT use --sched with jack, it says to use --sched=N with jack.
csound --sched=80,90,10 -d -+rtaudio=jack -b 64 -B 192 [...]"