Simplest possible way of applying reverb on top of an audio processor?

I know how AudioProcessorGraph works: JUCE: Tutorial: Cascading plug-in effects however it’s kinda hard to setup.

I have a sample drums audio processor that just plays samples. What’s the easiest possible way to apply a reverb on top of this?

I could create an instance of AudioProcessor that simply applies the reverb on top of the sampler audio processor, but I bet there’s something ready for use in Juce

You could use the Reverb class: JUCE: Reverb Class Reference

Should be pretty straight forward :wink:

1 Like