VST/AU inside VST/AU?

Hello,

is it possible to wrap an audio plugin inside a plugin inside a DAW? My plan is to create a wrapper which loads other effects and can modulate it’s parameters.

Thanks,

Dieter

Yes, you need to enable the option in the juce_audio_processors module. And then create instances of the plugin. (Make their prepare to play inside the one of your main processor, their releaseRessources inside yours, and processBlock on your audiobuffer after fullfilled it).

Thanks, I’ll have a look at it.