Possible to cap Samplerate to 4096 only? (Analyser & Parametric Eq)
-
When using the Display filter option it seems to cause heavy lags and same thing with analyser on 8192 Samples, when I put it on 4096 samples it work fine but somehow always revert back to 8192.
Any idea on how to fix this issue?
Thanks!
-
@Gab The properties for the FFT analyzer & other display elements are not persistent in itself, so you need to restore them using the scripting API:
This should set the FFT size of the EQ to a ridiculously low 2048 samples:
const var dp = Synth.getDisplayBufferSource("Parametriq EQ1"); const var dp0 = dp.getDisplayBuffer(0); dp0.setRingBufferProperties({ "BufferLength": 2048 });
-
@Christoph-Hart Thanks!!