Make audio input and output independent
I'm trying to build a sampler in Max but can't work out how to separate the mic input (ezadc) from the speaker output (ezdac) so that they can be turned on and off independently. When I deactivate the mic input to halt sampling the speaker automatically turns off too, which is frustrating! Anyone got any suggestions?
That is not a way to mute input, what you are doing is turning dsp chain off.
Insert simple audio switch between adc~ and input to recorder.
Audio processing for your patch is turned on/off. You don't "turn on either ezadc~ or ezdac~".
To "turn off the mic" while "keeping the speakers on", you will keep audio processing on, and use things like [*~ 0.] or other gate to "ignore" your input signal.
Thanks for the tips, I'll try those ideas out!