A ServerMeter is a simple graphical display showing the volume levels of inputs and outputs on the server.
Also see: Server: -meter
Create a new ServerMeter.
server |
The Server whose inputs and outputs you wish to visualize. |
numIns |
The number of inputs you want to display (starts counting at the first input bus, similar to SoundIn) |
numOuts |
The number of outputs you want to display (starts counting at bus 0) |
A reference to the newly created ServerMeter
Get a reference to the ServerMeterView of this ServerView
a ServerMeterView reference
s = Server.internal; // use the internal server
s.boot;
// display 4 input channels & main stereo output
m = ServerMeter.new(s, 4, 2);