Buses¶
Self Criticism
These docs are still under construction.
what is a bus?
buses vs bus groups
calculation rates
Lifecycle¶
Buses can only be added to running servers, so let’s create one and boot it:
>>> server = supriya.Server().boot()
Note
Scores
are neither online
nor offline, so you can add buses to them whenever you like.
Creation¶
what is allocation? leasing, block allocation
Allocate a bus with:
>>> bus = server.add_bus()
Allocate a bus group of 8 buses with:
>>> bus_group = server.add_bus_group(count=8)
Deletion¶
Free a bus with:
>>> bus.free()
Free a bus group with:
>>> bus_group.free()
Inspection¶
.bus_id
.calculation_rate
.bus_group.buses
.get()
.get_range()
Interaction¶
.set_()
.fill()
Integration¶
Referencing¶
.__int__()
Mapping controls¶
.map_symbol()
Node.map()
TODO: Node.map_range()
Inputs and outputs¶
In
Out
InFeedback
OffsetOut
XOut
ReplaceOut
Configuration¶
The number of buses available in a context is controlled by its
options
.
Set the maximum number of control buses with the
control_bus_channel_count
keyword.Set the maximum number of audio buses with the
control_bus_channel_count
keyword.Set the number of input audio buses to the server with the
input_bus_channel_count
keyword.Set the number of output audio buses to the server with the
output_bus_channel_count
keyword.
Note
The input_bus_channel_count
and output_bus_channel_count
values are
independent of what your current soundcard supports. They can be greater
than or less than the number of available channels, but won’t actually
carry more information if you select a higher value internal to the
context. Typically you select the same or fewer channels.
These can be set on an Options
instance passed the
context when initialized or booting, or just as keyword arguments.