Created
March 29, 2023 05:30
-
-
Save tado/e2772d07c2dbb45477609cd97171b5e4 to your computer and use it in GitHub Desktop.
SuperDirt multi cannel (22ch)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//SuperDirt setup | |
s = Server.local; | |
s.reboot { | |
s.options.sampleRate = 48000; | |
s.options.numBuffers = 1024 * 256; | |
s.options.memSize = 8192 * 32; | |
s.options.numWireBufs = 64; | |
s.options.maxNodes = 1024 * 32; | |
s.options.numOutputBusChannels = 22; // 22ch!! | |
s.options.numInputBusChannels = 2; | |
s.volume = -3.0; | |
s.waitForBoot { | |
s.waitForBoot { | |
~dirt = SuperDirt(22, s); // 22ch | |
~dirt.loadSoundFiles; | |
~dirt.loadSoundFiles("C:/Users/tado/AppData/Local/SuperCollider/downloaded-quarks/samples-extra/*"); | |
~dirt.start(57120, [0]); // output 22ch in one orbit | |
}; | |
}; | |
s.latency = 0.5; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment