diff --git a/include/osc58-controlling-ardour-with-osc.html b/include/osc58-controlling-ardour-with-osc.html index ba29b0a8..7e416131 100644 --- a/include/osc58-controlling-ardour-with-osc.html +++ b/include/osc58-controlling-ardour-with-osc.html @@ -223,6 +223,8 @@ here"/>
/master/gain dB | -See gain in strips | dB is a float indicating the desired gain in dB |
---|---|
/master/fader position | -See fader in strips | position is a float between 0 and 1 setting the desired position of the fader |
/master/trimdB dB | -see trimdb in strips | dB is a float from -20 to +20 representing the desired trim gain in dB |
/master/pan_stereo_position position | -See pan_stereo_position in strips |
/master/mute yn | -See mute in strips | position is a float from 0 to 1 representing the desired pan position | +
/master/mute state | +state is an int of o or 1 representing the desired mute state |
/monitor/gain dB | -See gain in strips | dB is a float indicating the desired gain in dB |
/monitor/fader position | -See fader in strips | position is a float between 0 and 1 setting the desired position of the fader | +
/monitor/mute state | +state is an int of 0 or 1 where 1 is muted |
/monitor/dim state | +state is an int of 0 or 1 where 1 is dimmed |
/monitor/mono state | +state is an int of 0 or 1 where 1 is mono mode |
As of Ardour 5.9, access_action can be inlined for control surfaces - that are unable to send string parameters. Action_name is composed of + that are unable to send string parameters. The action_name is composed of a group and an action in the form of Group/action which fits very well - an OSC path extension: + as an OSC path extension:
/access_action/Group/action key_pressedThe key_pressed is optional, but if present is a float 1 or 0 where the command is ignored if key_pressed is 0.
++ Some of the Menu Actions duplicate other OSC commands. In all cases it is better + to use the OSC commands rather than the Menu Actions if possible as the OSC commands + are more direct. +
- The - list of actions shows all available values of action-name as of - June 2016 for Ardour 5.0.pre0.1. You can get the current list at any - time by running Ardour with the -b flag. + The list of actions + shows all available values of action-name for Ardour.