daniel
November 22, 2017, 11:09pm
9
Yes, hosting is the right decision in that case. Because even though the plugin SDKs allow plugins to send multiple output buses, many hosts implement that only if your plugin is a synth…
Have a little search for “multi output”, the information is spread around, and some you have to test yourself…
I can set multiple outputs to my project and it works well except in Logic and garage band.
code:
AudioProcessorBus b1("Main stereo bus", AudioChannelSet::stereo());
AudioProcessorBus b2("group 1", AudioChannelSet::stereo());
AudioProcessorBus b3("group 2", AudioChannelSet::stereo());
AudioProcessorBus b4("kick 1", AudioChannelSet::stereo());
AudioProcessorBus b5("kick 2", AudioChannelSet::stereo());
AudioProcessorBus b6("kick 3", AudioChann…
I’m trying to add a second output to my plugin and not really sure what to do. it only shows up as one stereo out. I want it to be stereo or dual stereo.
I currently have:
RGAudioProcessor::D3AudioProcessor()
: AudioProcessor (BusesProperties().withOutput ("Main Output", AudioChannelSet::stereo(), true)
.withOutput ("Direct Output", AudioChannelSet::stereo(), true))
{}
and
bool RGAudioProcessor::isBusesLayoutSupported (const BusesLayout& layouts) cons…
Good luck
2 Likes