From: Eugene Petkevich Date: Fri, 6 May 2022 14:29:50 +0000 (+0300) Subject: Add server setup X-Git-Url: https://git.zuelum.org/?a=commitdiff_plain;h=2f3b35739724df3a07b405b390d858573eb98e0b;p=scprojects.git Add server setup --- diff --git a/server.scd b/server.scd new file mode 100644 index 0000000..c333534 --- /dev/null +++ b/server.scd @@ -0,0 +1,14 @@ +( +s.options.maxNodes = 128 * 1024; +s.options.maxSynthDefs = 32 * 1024; +s.options.memSize = 1024 * 1024; +s.options.numBuffers = 32 * 1024; +s.options.numAudioBusChannels = 32 * 1024; +s.options.numControlBusChannels = 256 * 1024; +s.options.numInputBusChannels = 16; +s.options.numOutputBusChannels = 16; +s.boot; +MIDIClient.init; +MIDIIn.connectAll; +) +