No audio processing after export
-
I have a HISE FX plugin with a convolution reverb (ScriptNode).
Works perfectly in HISE, but after export (DLL + VST3) the plugin loads in DAW but does nothing (no audio processing).
I use:
const irs = Engine.loadAudioFilesIntoPool();
irs.sortNatural();IRs are loaded from AudioFiles and selected via script.
Do I need to explicitly load all IRs before export or reference them differently for ScriptNode convolution?
Thanks
-
@filipalex96 Have you embedded the audio files in the plugin? Did you export as an effect?
-
@David-Healey Yes, audio files are embedded and the plugin is exported as an FX plugin.
It works perfectly inside HISE, but after export the plugin loads in the DAW and does not process audio at all.
I’m using ScriptNode convolution and loading IRs from AudioFiles with:
const irs = Engine.loadAudioFilesIntoPool();
Could the issue be related to ScriptFX1.setFile(...) / dynamic IR loading after export, rather than embedding itself?
-
@filipalex96 said in No audio processing after export:
Could the issue be related to ScriptFX1.setFile(...) / dynamic IR loading after export, rather than embedding itself?
It could