Convolution Reverb
-
The convolution reverb is not embedding the IR samples into the Exported FX (VST/AU)
-
@jay Did you put them in the audio files folder?
-
@d-healey Yes I Did
-
now this is happening to me too... any answers?
Everything is in the AudioFiles folder, Embed Audio Files is ticked in the project settings
-
@Lindon OK more searching in the forum and this is the fix.....
add this line of code:
Engine.loadAudioFilesIntoPool();
-
Yes, by default, the audio file pool doesn't load all files into memory, so when you export it it will only embed the ones that are currently used. This line will make sure that every audio file is loaded before exporting and should be used whenever you have a collection of IRs that you want to switch.
-
FYI, I've just added a safe check that throws a script error whenever you want to load a embedded audio file using the scripting call
AudioSampleProcessor.setFile()
without callingEngine.loadAudioFilesIntoPool()
first. This should catch 99% of all use cases that would lead to a missing embedded resource. -
@Christoph-Hart said in Convolution Reverb:
Engine.loadAudioFilesIntoPool()
AudioSampleProcessor.setFile() without calling Engine.loadAudioFilesIntoPool()
Where to add this code? I use old hise 1.1.2(
The convolution reverb is not embedding the IR samples into the Exported FX
-
i have this errors(((
-
@jackburns you are going to have to be on a more recent version of HISE...