back to Index


back to AS_SUBCUES FILE



BUS MASTERS:

-all commands begin with 'bus'



LABELS: bus label <bus channel (integer)> <label (symbol)> <bus channel> <label>... etc.


Examples: 

1, "Bus Labels ch1-5" bus label 1 bus1 2 bus2 3 bus3 4 bus4 5 bus5;

-sets bus channel 1-5 labels to 'bus1', 'bus2', 'bus3', 'bus4', 'bus5' respectively


2, "Bus Labels ch1-5" bus label 1-5 bus;

-sets bus channel 1-5 labels to 'bus'

3, "Set all Bus Labels" bus label all Buses

-sets all bus channel labels to 'Buses'


A special shortcut can be used to automate the assignment of label names for adjacent bus channels: (note the ' i ')

bus label <minChannel-maxChannel>i <label[x]>… etc.

x = optional numeric offset to use for automated incrementing. If no offset is specified, auto-numbering starts from 1


4, "Bus Labels ch5-9" bus label 5-9i bus5;

-sets bus channel 5-10 labels to 'bus5', 'bus6', 'bus7', 'bus8', 'bus9' respectively

5, "Bus Labels ch1-5" bus label 1-5i bus;

-sets bus channel 1-5 labels to 'bus1', 'bus2', 'bus3', 'bus4', 'bus5' respectively



TRIMS: bus trim <bus channel (integer)> <trim value in dB (float)> <bus channel> <trim value in dB>... etc.


Examples:

6, "Bus Trims ch1-5" bus trim 1 0 2 -3 3 0 4 3 5 0;

-sets bus channel 1-5 trims to 0dB, -3dB, -0dB, +3dB, -0dB respectively

7, "Bus Trims ch1-5" bus trim 1-3 -6 4 0 5 10;

-sets bus channel 1-3 trims to -6dB, 4 to -0dB, and 5 to +10dB

8, "Set all Bus Trims" bus trim all -10;

-sets all bus channel trims to -10dB



LEVELS: bus level <bus channel (integer)> <level value in dB (float)> <bus channel> <level value in dB>... etc.


Examples:

9, "Bus Levels ch1-5" bus level 1 0 2 -120 3 0 4 0 5 -6;

-sets bus channel 1-5 levels to 0dB, -120dB (in AudioSwitcher -120 equals -inf), -0dB, -0dB, -6dB respectively

10, "Bus Levels ch1-5" bus level 1-3 -6 4 0 5 -120;

-sets bus channel 1-3 levels to -6dB, 4 to -0dB, 5 to -120dB (i.e. -inf)

11, "Set all Bus Levels" bus level all 0;

-sets all bus channel levels to -0dB



MUTES: bus mute <bus channel (integer)> <mute state (0 or 1)> <bus channel> <mute state>... etc.


Examples:

12, "Bus Mutes ch1-5" bus mute 1 0 2 1 3 0 4 0 5 1;

-sets bus channel 1-5 mutes to off, on, off, off, on respectively


13, "Bus Mutes ch1-5" bus mute 1-3 1 4 0 5 1;

-sets bus channel 1-3 mutes to on, 4 to off, 5 to on


14, "Set all Bus Mutes" bus mute all 0;

-sets all bus channel mutes to off



SOLOS: bus solo <bus channel (integer)> <solo state (0 or 1)> <bus channel> <solo state>... etc.


Examples:

15, "Bus Solos ch1-5" bus solo 1 0 2 1 3 0 4 0 5 1;

-sets bus channel 1-5 solos to off, on, off, off, on respectively


16, "Bus Solos ch1-5" bus solo 1-3 1 4 0 5 1;

-sets bus channel 1-3 solos to on, 4 to off, 5 to on


17, "Set all Bus Solos" bus solo all 0;

-sets all bus channel solos to off



DELAYS: bus delay <bus channel (integer)> <delay value in seconds (float)> <bus channel> <delay value>... etc.


NOTE: delays of up to 1 second are supported


Examples:

18, "Bus Delays ch1-5" bus delay 1 0. 2 1. 3 0.5 4 0. 5 0.;

-sets bus channel 1-5 delays to 0. seconds, 1. seconds, 0.5 seconds, 0. seconds, 0. seconds respectively


19, "Bus Delays ch1-5" bus delay 1-3 0.25 4 0. 5 1.;

-sets bus channel 1-3 delays to 0.25 seconds, 0. seconds, 1. seconds respectively


20, "Set all Bus Delays" bus delay all 0.;

-sets all bus channel delays to 0. seconds



LOAD PATCH INSERT: bus patch_load <software bus channel (integer)> <patch name (symbol)> <software bus channel> <patch name>... etc.

Examples:

21, "Bus Patch ch1-3 -> load various patches" bus patch_load 1 4-band_EQ.maxpat 2 1P_highpass.maxpat 3 omx_limiter.maxpat;

-sets bus channel 1-3 patch inserts to 4-band_EQ.maxpat, 1P_highpass.maxpat, and omx_limiter.maxpat respectively

22, "Bus Patch ch1-15 -> load 4-band_EQ and vst_loader" bus patch_load 1-10 4-band_EQ.maxpat 11-15 vst_loader.maxpat;

-sets bus channel 1-10 patch inserts to 4-band_EQ.maxpat, 11-15 patch inserts to vst_loader.maxpat

23, "Set all Bus Patches to 4-band_EQ" bus patch_load all 4-band_EQ.maxpat;

-sets all bus channel patch inserts to 4-band_EQ.maxpat



SEND MESSAGE TO PATCH INSERT: bus patch_message <software bus channel (integer)> <message to send (list)>;

Examples:

24, "Bus Patch ch1 -> update 4-band EQ" bus patch_message 1 band_1 highpass 300. 1. 1. band_2 peaknotch 1500. 0.5 2.;

-sets 4-band EQ of bus channel 1 patch inserts to apply the following filters:

band 1: highpass filter with cutoff frequency of 300 Hz, gain of 1., and Q of 1.

band 2: peaknotch filter with center frequency of 1500 Hz, gain of 0.5, and Q of 2.

25, "Bus Patch ch1-15 -> update 4-band EQ" bus patch_message 1-15 band_1 highpass 300. 1. 1. band_2 peaknotch 1500. 0.5 2.;

-sets 4-band EQ of bus channel 1 patch inserts to apply the following filters:

band 1: highpass filter with cutoff frequency of 300 Hz, gain of 1., and Q of 1.

band 2: peaknotch filter with center frequency of 1500 Hz, gain of 0.5, and Q of 2.

26, "Update 1P_highpass for all Bus Patches" bus patch_message all 4000.;

-sets all highpass cutoff freqency to 4000 Hz for all bus channel patch inserts