I want to use tidal channels as separate audio channels (using jackaudio it is easy to route them to other applications like another instance of supercollider)
say i want 4 channels, i have to issue these lines
let d1 = p 1 . (|< orbit 0)
d2 = p 2 . (|< orbit 1)
d3 = p 3 . (|< orbit 2)
d4 = p 4 . (|< orbit 3)
is it possible to execute these commands when i invoke the supercollider instance for tidal, in a bash file for example :
sclang set-tidal-quadriphonic.scd
...?
i would like to easily change a setup (for 2, 4 or 8 channels)
also i noticed that if i make a mistake (last number 4), tidal produces no sound at all
let d1 = p 1 . (|< orbit 0)
d2 = p 2 . (|< orbit 1)
d3 = p 3 . (|< orbit 2)
d4 = p 4 . (|< orbit **4**)
On MacOS I keep different sets of .scd startup files for different audio interfaces and external equipment. I then start sclang from the command line with the startup file I want to use as the first argument using this simple shell script:
I cant seem to route the audio to different Orbits as everything comes through 0-1.
I thought i was doing as the instructions on GitHub state but i must be missing something.
Do you have any ideas on how i can get the tracks sending to separate channels > blackhole > logic?