Multiple Impulses in one Convolution Processor?
-
Is it possible to have multiple convolution reverb impulses within one processor? Basically, I would like to allow the user to choose between different convolution reverbs. As always, thanks!
-
@musictranscriber Not at the same time, but you can load them via scripting.
-
@musictranscriber - you can find a lot of solutions by searching through the forum, found this recently when i needed convolution combobox for my project.
const var ConvolutionReverb = Synth.getAudioSampleProcessor("Convolution Reverb"); const var ComboBox1 = Content.getComponent("ComboBox1"); ComboBox1.setControlCallback(loadImpulse); inline function loadImpulse(control, value) { ConvolutionReverb.setFile("{PROJECT_FOLDER}"+ control.getItemText() + ".wav"); }
and then list impulse filenames on 'Combobox Specific Properties' of Property Editor of the Combobox
-
@musictop Thanks so much, I'm gonna give this a go!
-
Just gave this a go, and it worked brilliantly, except that before you:
ComboBox1.setControlCallback(loadImpulse);
you need to
Engine.loadAudioFilesIntoPool();
Otherwise, brilliant.
-
yes, forgott about that... :)