Phase inversion in scriptnode .
-
How can I flip the phase of a signal in scriptnode , I read I could multiply by -1 but not sure how to do that ?
-
@lalalandsynth Yeah that's it, just insert a
math.mul
and set it to-1
-
I cant seem to be able to set it to a negative value ?
Also , is there something I can do about the zipper noise of the knobs ?
-
You can define the range of the knobs yourself, just set the
MinValue
of the Parameter to -1, then it's there.The
math.mul
is just a simple multiplication without any filter, if you want a zipperless gain change, usecore.gain
. -
Thanks, that did the trick!