09_Buses:
Filter:
Tutorials/Mark_Polishook_tutorial | Tutorials > Mark_Polishook_tutorial

09_Buses

Mark Polishook tutorial

By default, SuperCollider has 1024 buses for audio signals and 16,384 for control signals. The buses, which are items in an array, are what SuperCollider uses to represent audio and control rate data.

////////////////////////////////////////////////////////////////////////////////////////////////////

Placing audio into a bus

Use an Out ugen at the audio rate to put data into an audio bus.

A SynthDef browser

shows 1 channel of output on channel 0.

Getting audio from a bus

Send an .ar message to an In ugen to get data from an audio bus.

Control rate buses

Use In.kr and Out.kr to read from or write to control buses.

////////////////////////////////////////////////////////////////////////////////////////////////////

For additional information, see the Out, In, and Bus files in the SuperCollider help system.

////////////////////////////////////////////////////////////////////////////////////////////////////

go to 10_Controls