[HELP] Multiple voice effects patch
Hello guys, I'm asking for help !
I'm doing a patch on max msp which uses coordonates from a webcam face tracking to determine which effect to launch on my voice.
My issue is I'm a beginner and I don't know how to say in a if condition, if x > 200, then launch this effect on the voice (live taken) and I also don't know the order to connect all these.
I don't know if I'm understandable.
Thank you :)
<, >, <=, etc are actually objects in and of themselves that output 1 or 0 for true or false. There is also an object called split, that you can daisy chain to do a sort of 'if else' routine.
I'd really recommend taking some time to do the max tutorials whenever you have some idle time.
https://docs.cycling74.com/max7/
There are a lot, but they build from the necessary basics like comparison, flow well, and walk you through all the ins and outs. Of course, hacking the help patches is also one of the best ways to learn. . .
Thank you very much it helped me :)
But I still have the same issue ! I want to have a normal voice from my mic till the value of X is above 200 and it is supposed to add reverb under 200.
i can do the conditions but i don't know how to reliate them to launch effects :/
Do You know how to activate / deactivate Reverb ?
Or any other effect or whatever ?
here is a simple example of splitting range, and sending 0 or 1 out.
Then You use this 0 & 1 to turn something off or on.
I found a solution so that's ok :) Thanky you for your help :)