Separate audio outputs

Hi,

I would like to use separate audio outputs. For example 8 mono outs.
Do I have to configurate it like this in the startup file?

s.options.numOutputBusChannels = 8;

~dirt.start(57120, [0, 1, 2, 3, 4, 5, 6, 7]);

~dirt = SuperDirt(1, m);

1 Like

mhmh depending on what exactly you want to achieve by this. could you explain further?

Yes that looks good to me, eight channels total, eight orbits each offset by 1, and each orbit panning across one channel (e.g, mono). If that doesn't work, I'd say that was a bug, and to raise it here https://github.com/musikinformatik/SuperDirt/issues/

Ok, I will try that out because

  • I want to record up to 8 mono orbits from TC
  • plus some channels in TC, which trigger external hardware
  • then I want to bring it all together via Audio Jack in a Focusrite Scarlett 18/20 and record it in Ableton Live

For the external hardware, you can add orbits that reuse one of the existing output bus channels, e.g. with

~dirt.start(57120, [0, 1, 2, 3, 4, 5, 6, 7, 0, 0, 0, 0]);

And then use orbits 0-7 for audio with seperate outputs and orbits 8-11 for MIDI

@Klinke : Thanks for this hint. I will try it out.