How to boot server with mic input off

Hi, is there a command that boots the server and specifies that mic input should be off? Thank you for the help.

When you boot the server the mic is off in the sense SC does not automatically monitor inputs, so it is a bit like having a channel muted on a software mixer when you open the mixer. You see the inputs on the meter but you should not hear any output from the inputs. Are you talking about booting up the server with something like s.waitForBooth with code which is set up to monitor inputs and wanting to avoid the risk of instant feedback?

Setting the number of input bus channels to 0 prior to server boot ensures that no input audio ports are created or connected:

Server.default.options.numInputBusChannels = 0;
1 Like