Smooth transition trough preset changing. (No sound cut)
-
Hi,
Is it possible to make transitions between preset without sound cutting? Maybe a way that load samples smoothly. Thank you !
-
@Yannrog I don't think changing presets kills the audio engine, but loading samples does. You'd need to have the samples preloaded and uncoupled from your presets.
-
@Yannrog
You could try this:BackgroundTask.killVoicesAndCall(var loadingFunction) -
@David-Healey oh,
ok, How is it working? I have a lot of samples. Is it loading once at the opening of the plugin?
-
@Oli-Ullmann ok, thank you I will try
-
@Oli-Ullmann said in Smooth transition trough preset changing. (No sound cut):
BackgroundTask.killVoicesAndCall(var loadingFunction)I don't think that will solve it since it kills the audio engine too.
There is no way around it, if you are loading samples then the audio engine will stop.
@Yannrog said in Smooth transition trough preset changing. (No sound cut):
ok, How is it working? I have a lot of samples. Is it loading once at the opening of the plugin?
Yes you have to load all the samples at the start if you need dynamic switching without stopping the audio.
-
@David-Healey
Oh, okay, I misunderstood that. I thought he wanted to stop the audio engine to avoid crackling. But the crackling happens during preset/sample changes BECAUSE that's what stops the audio engine.My mistake...