Splitting incoming signal
-
@pcs800 just insert a
container.splitthen add as many chains as you want inside it to split the signal in parallel pathsSide note: for L/R it's a
container.multi -
@ustk Thanks for that information. I have the following, which works, but there's a large latency on the chain with the pitch shifter. Is there anything that can be done to eliminate the latency?

-
@pcs800 any pitch shift algorithm will necessarily bring latency. It need to be compensated in the other chain using a delay node and a converter sample->ms
Now how much you need to compensate for this particular pitch node I don’t know… -
@ustk If I add delay to the other one, then the plugin will cause latency in the audio it's applied to in the daw. No?
-
@pcs800 ..and so you must make your plugin report its latency to the DAW...
-
@Lindon Yes I have discovered that. I don't know how to find the right latency in ms or how to get the plugin to report it. I will look.
-
-
@pcs800 Like this?
Engine.setLatencySamples(95)
-
@pcs800 yes
-
@Lindon In the interface onIt?