]> Shamusworld >> Repos - ardour-manual/blob - include/osc58-controlling-ardour-with-osc.html
Add touch command to OSC pages
[ardour-manual] / include / osc58-controlling-ardour-with-osc.html
1
2 <p>
3   <abbr title="Open Sound Control"><dfn>OSC</dfn></abbr> lets synthesizers
4   and other devices communicate with Ardour. OSC devices can send commands
5   relating to playback (such as play or stop), performance (such as volume,
6   play, stop, and almost any other function (such as Edit, or Undo).
7 </p>
8
9 <p class="note">
10   <em>Note:</em> OSC control has changed dramatically since Ardour 4.7.
11   The Path structure has been completely redone, Banking has been introduced,
12   The controller is now able to tell Ardour what kind of feedback it can
13   work with (including bank size) and two new math styles have been added
14   to gain controls. If you are using an Ardour version of 4.7 or less,
15   please read <a
16   href="@@osc-control-for-ardour-4.7-and-prior">
17   Osc control in ardour 4.7 and prior.</a>
18 </p>
19
20 <p>
21   Ardour is probably one of the most OSC-controllable audio applications
22   around, but as with all OSC-controllable apps, you can't do much without
23   knowing what <dfn>messages</dfn> can be sent. This document describes the
24   various categories of messages that Ardour understands. It is subject to
25   change, particularly the "Actions" part below, since this relates to the
26   GTK GUI for Ardour rather than the backend.
27 </p>
28
29 <h2>Connecting to Ardour via OSC</h2>
30 <p>
31   OSC support is not enabled by default, but can be turned on via
32   <kbd class="menu">Edit &gt; Preferences &gt; Control Surfaces</kbd>.
33   Once enabled, Ardour will listen on port <code>3819</code> by default.
34   This port number can be changed by editing <code>$ARDOUR_CONFIG</code>
35   and adding this line within the <code>&lt;Config&gt;</code> section:
36 </p>
37 <kbd class="input">&lt;Option name="osc-port" value="<em>Your choice
38 here</em>"/&gt;</kbd>
39
40 <p>
41   Ardour sends any feedback to the port and address that sent any
42   feedback request. The port does not have to match Ardour's port. In
43   fact it is better not to. This means that Ardour can deal with more
44   than one controller at a time. The two controllers can bank
45   independently and even use different math for faders. This could be
46   used to allow talent to adjust their own monitor mix using a tablet
47   or phone that can run an OSC controller. For a full explanation of
48   how Ardour's feedback works please read <a
49   href="@@osc58-feedback">
50   OSC feedback In Ardour.</a>
51 </p>
52
53 <h2>Control Surface Set Up</h2>
54
55 <p>
56   Control surface set up allows the controller to tell Ardour about it's
57   capabilities. The surface can tell Ardour how many control strips it
58   has for banking, if it is capable of setting it's faders or buttons
59   to values set by Ardour's GUI or automation, What kind of math the
60   faders use and more.
61 </p>
62 <p>
63   Any time the <em>/set_surface</em> command is sent, the current bank
64   is recalculated and if feedback is turned on, the values of each
65   strip's controls are sent (or refreshed) as well. This will also
66   refresh the Master feedback setup.
67 </p>
68 <p class="note">
69   Surface Port Setting is available in the OSC GUI.
70 </p>
71 <p>
72   As of Ardour 5.1, There is now a GUI setup in response to those using
73   tablets with applications such as touchOSC or AndrOSC who need to be
74   able to set a port for Ardour to send to. It can also change the
75   default setting for set_surface. For more information about Ardour's
76   OSC configuration GUI please read <a
77   href="@@osc58-using-the-setup-dialog">
78   Ardour's Setup Dialog.</a>
79 </p>
80 <p>If /set_surface is not sent, the default values are used:
81   <ul>
82           <li><em>Bank Size</em>: 0&mdash;No banking (or infinite bank size).</li>
83           <li><em>Strip Types</em>: All strip types except hidden and special.</li>
84           <li><em>Feedback</em>: 0&mdash;All off.</li>
85           <li><em>Fader Mode</em>: 0&mdash;gain in dB (not relevant with feedback off)</li>
86   </ul>
87 </p>
88 <p>
89   These values give the same behaviour as prior versions of Ardour. (or the closest possible)
90 </p>
91 <table class="dl">
92   <tr><th><kbd class="osc">/set_surface <em>bank_size</em> <em>strip_types</em>
93   <em>feedback</em> <em>fadermode</em></kbd></th>
94   <td>
95           See below for an explanation of each parameter.
96   </td></tr>
97 </table>
98 <h3>bank_size</h3>
99 <p>
100   Bank Size is the number of channel strips the controller supports
101   without banking. Setting this to 0 turns banking off by setting the
102   bank size to infinite.
103 </p>
104 <p class="note">
105         Bank size can also be set with <em>/set_surface/bank_size size.</em>
106 </p>
107 <h3>strip_types</h3>
108 <p>
109   strip_types is an integer made up of bits. The easy way to
110   deal with this is to think of strip_types items being worth a number and
111   then adding all those numbers together for a value to send.
112   Strip Types will determine what kind of strips will be included in
113   bank. This would include: Audio, MIDI, busses, VCAs, Master, Monitor
114   and hidden or selected strips.
115 </p>
116 <p>
117   Aside from setting the track types for the main mix assignments, using
118   /set_surface/strip_types with more than one surface button will allow
119   switching between modes for example: inputs only, busses only,
120   selected only, hidden only, by having the buttons send values of: 3,
121   12, 256, 512. A full mix button might have a value 31.
122 </p>
123 <p>
124   While Master and Monitor are listed as possibilities, most surfaces
125   will not use them. Using /master and /monitor makes more sense.
126   However, in the case where there are no master or monitor fader strips
127   on the surface, it may be necessary to include them in the banked
128   strips.
129 </p>
130 <p>Please see: <a
131   href="@@osc58-feedback-and-strip-types-values">
132   Calculating Feedback and Strip-types Values.</a>
133 </p>
134 <p class="note">
135         Strip types can also be set with <em>/set_surface/strip_types types.</em>
136 </p>
137 <h3>feedback</h3>
138 <p>Feedback is an integer made up of bits. The easy way to
139   deal with this is to think of feedback items being worth a number and
140   then adding all those numbers together for a value to send.
141 </p>
142 <p>Please see: <a
143   href="@@osc58-feedback-and-strip-types-values">
144   Calculating Feedback and Strip-types Values.</a></p>
145 <p class="note">
146         Feedback can also be set with <em>/set_surface/feedback feedback.</em>
147 </p>
148
149 <h3>gainmode</h3>
150 <p>
151   Gainmode is a an int that acts as a bool:
152   <ul>
153           <li><em>0 (or false)</em> dB value as a float from -193 to +6. Sent as
154           /strip/gain SSID value. (-193 or below are the same as -inf)</li>
155           <li><em>1 (or true)</em> A positional fader based on the same math
156           as Ardour's GUI.  An Float from 0 to 1. Sent as
157           /strip/fader SSID value</li>
158   </ul>
159 </p>
160 <p>
161   Gainmode applies only to feedback values. The controller can choose
162   which gain math to use by choosing to use the /*/gain or /*/fader path
163   to send to Ardour. This makes sure a controller that doesn't set up
164   Ardour's OSC can still use either math. The gainmode for feedback also
165   determines the path Ardour uses for feedback so that the feedback
166   messages match the control messages.
167 </p>
168 <p class="note">
169         Gain mode can also be set with <em>/set_surface/gainmode gainmode.</em>
170 </p>
171
172 <h2>Querying Ardour for information</h2>
173 <p>
174   The control Surface may wish to control the type a frequency of
175   updates it receives. It can do this with querying commands. See: <a
176   href="@@osc58-querying-ardour">
177   Querying Ardour with OSC.</a>
178 </p>
179
180 <h2>List of OSC messages</h2>
181 <p class="note">
182         Parameter types show how the value will be used. However, they may
183         be sent as a different type if needed, see: <a
184         href="@@osc58-parameter-types">
185         Parameter Types in OSC.</a>
186 </p>
187 <h3>Master or Global messages</h3>
188
189 <h4>Transport Control</h4>
190 <table class="dl">
191   <tr><th><kbd class="osc">/transport_stop</kbd></th>
192   <td>Stops a rolling transport</td></tr>
193   <tr><th><kbd class="osc">/transport_play</kbd></th>
194   <td>Puts transport in play mode</td></tr>
195   <tr><th><kbd class="osc">/toggle_roll</kbd></th>
196   <td>Toggles between play and stop</td></tr>
197   <tr><th><kbd class="osc">/stop_forget</kbd></th>
198   <td>Stop transport and delete/forget last take</td></tr>
199   <tr><th><kbd class="osc">/set_transport_speed <em>speed</em></kbd></th>
200   <td>where <em>speed</em> is a float ranging from -8.0f to 8.0f</td></tr>
201   <tr><th><kbd class="osc">/ffwd</kbd></th>
202   <td>Adds 1.5 times to transport speed to maximum +8 times normal speed</td></tr>
203   <tr><th><kbd class="osc">/rewind</kbd></th>
204   <td>Adds -1.5 times to transport speed to maximum -8 times normal speed</td></tr>
205   <tr><th><kbd class="osc">/goto_start</kbd></th>
206   <td>Move playhead to start of session</td></tr>
207   <tr><th><kbd class="osc">/goto_end</kbd></th>
208   <td>Move playhead to end of session</td></tr>
209   <tr><th><kbd class="osc">/jump_bars <em>bars</em></kbd></th>
210   <td>Where <em>bars</em> is a float (+/-) of the number of bars to jump</td></tr>
211   <tr><th><kbd class="osc">/jump_seconds <em>seconds</em></kbd></th>
212   <td>Where <em>seconds</em> is a float (+/-) of the number of seconds to jump</td></tr>
213   <tr><th><kbd class="osc">/toggle_click</kbd></th>
214   <td>Toggle metronome click on and off</td></tr>
215   <tr><th><kbd class="osc">/add_marker</kbd></th>
216   <td>(adds marker to the current transport position)</td></tr>
217   <tr><th><kbd class="osc">/remove_marker</kbd></th>
218   <td>Removes marker at the current transport position (if there is one)</td></tr>
219   <tr><th><kbd class="osc">/next_marker</kbd></th>
220   <td>Move playhead to next marker</td></tr>
221   <tr><th><kbd class="osc">/prev_marker</kbd></th>
222   <td>Move playhead to previous marker</td></tr>
223   <tr><th><kbd class="osc">/locate <em>spos</em> <em>roll</em></kbd></th>
224   <td>where <em>spos</em> is the target position in samples and
225   <em>roll</em> is a bool/integer defining whether you want transport
226   to be kept rolling or not</td></tr>
227   <tr><th><kbd class="osc">/loop_toggle</kbd></th>
228   <td>Toggle loop mode on and off</td></tr>
229   <tr><th><kbd class="osc">/loop_location <em>start</em> <em>end</em></kbd></th>
230   <td><em>start</em> is the beginning of a loop and <em>end</em> is the
231   end of a loop both are integer frame positions.</td></tr>
232   <tr><th><kbd class="osc">/midi_panic</kbd></th>
233   <td>Ardour will send an all notes off to all midi tracks</td></tr>
234   <tr><th><kbd class="osc">/cancel_all_solos</kbd></th>
235   <td>Cancel All Solos/PFLs/AFLs</td></tr>
236 </table>
237 <p>
238   New for Ardour 5.9.
239 </p>
240 <table class="dl">
241   <tr><th><kbd class="osc">/scrub <em>delta</em></kbd></th>
242   <td>Where <em>delta</em> is a float indicating forward or reverse movement.
243   See <a href="@@osc58-jog-modes#scrub">OSC Scrub Modes</a></td></tr> <!--#scrub-->
244   <tr><th><kbd class="osc">/jog <em>delta</em></kbd></th>
245   <td>Where <em>delta</em> is a float indicating forward or reverse movement</td></tr>
246   <tr><th><kbd class="osc">/jog/mode <em>mode</em></kbd></th>
247   <td>Where <em>mode</em> is an int from 0 to 7 indicating what the <em>/jog</em>
248   command controls. See <a href="@@osc58-jog-modes">
249   OSC Jog Modes</a></td></tr>
250 </table>
251
252 <h4>Recording control</h4>
253 <table class="dl">
254   <tr><th><kbd class="osc">/toggle_punch_in</kbd></th>
255   <td></td></tr>
256   <tr><th><kbd class="osc">/toggle_punch_out</kbd></th>
257   <td></td></tr>
258   <tr><th><kbd class="osc">/rec_enable_toggle</kbd></th>
259   <td>Toggles master record enable</td></tr>
260 </table>
261
262 <h4>Transport Information</h4>
263 <table class="dl">
264   <tr><th><kbd class="osc">/transport_frame</kbd></th>
265   <td>Ardour sends /transport_frame <em>current_frame</em></td></tr>
266   <tr><th><kbd class="osc">/transport_speed</kbd></th>
267   <td>Ardour sends /transport_speed <em>speed</em></td></tr>
268   <tr><th><kbd class="osc">/record_enabled</kbd></th>
269   <td>Ardour sends /record_enabled <em>recordenable_status</em></td></tr>
270 </table>
271
272 <h4>Editing-related</h4>
273 <table class="dl">
274   <tr><th><kbd class="osc">/undo</kbd></th>
275   <td></td></tr>
276   <tr><th><kbd class="osc">/redo</kbd></th>
277   <td></td></tr>
278   <tr><th><kbd class="osc">/save_state</kbd></th>
279   <td>(this is the regular <kbd class="menu">Session &gt; Save</kbd>
280   operation)</td></tr>
281 </table>
282
283 <h4>Master and Monitor strip control</h4>
284 <table class="dl">
285   <tr><th><kbd class="osc">/master/gain <em>dB</em></kbd></th>
286   <td>dB is a float indicating the desired gain in dB</td></tr>
287   <tr><th><kbd class="osc">/master/fader  <em>position</em></kbd></th>
288   <td>position is a float between 0 and 1 setting the desired position of the fader</td></tr>
289   <tr><th><kbd class="osc">/master/trimdB <em>dB</em></kbd></th>
290   <td>dB is a float from -20 to +20 representing the desired trim gain in dB</td></tr>
291   <tr><th><kbd class="osc">/master/pan_stereo_position <em>position</em></kbd></th>
292   <td>position is a float from 0 to 1 representing the desired pan position</td></tr>
293   <tr><th><kbd class="osc">/master/mute  <em>state</em></kbd></th>
294   <td>state is an int of o or 1 representing the desired mute state</td></tr>
295   <tr><th><kbd class="osc">/monitor/gain <em>dB</em></kbd></th>
296   <td>dB is a float indicating the desired gain in dB</td></tr>
297   <tr><th><kbd class="osc">/monitor/fader  <em>position</em></kbd></th>
298   <td>position is a float between 0 and 1 setting the desired position of the fader</td></tr>
299   <tr><th><kbd class="osc">/monitor/mute  <em>state</em></kbd></th>
300   <td>state is an int of 0 or 1 where 1 is muted</td></tr>
301   <tr><th><kbd class="osc">/monitor/dim  <em>state</em></kbd></th>
302   <td>state is an int of 0 or 1 where 1 is dimmed</td></tr>
303   <tr><th><kbd class="osc">/monitor/mono  <em>state</em></kbd></th>
304   <td>state is an int of 0 or 1 where 1 is mono mode</td></tr>
305 </table>
306
307 <h3>Track specific operations</h3>
308 <p>
309   For each of the following, <em>ssid</em> is the Surface Strip ID for the track
310 </p>
311 <p class="note">
312   SSID has a different meaning than RID in Ardour version 4.7 and before.
313   Effectively, banking is always being used and the SSID is generated on
314   the fly. The SSID is the position of the strip within bank as an int
315   1 to bank size. There are no gaps as there have been in the past.
316   Depending on the value of strip_types sent to Ardour, Master and
317   Monitor, may be included in the list of SSIDs or not as set in
318   <em>/set_surface</em>.
319 </p>
320 <p class="note">
321   Some Surfaces (many Android applets) are not able to deal with more
322   than one parameter in a command. However, the two parameter commands
323   below can also be sent as /strip/command/ssid param. In this case the
324   param should be a float even if an int is required below.
325 </p>
326 <table class="dl">
327   <tr><th><kbd class="osc">/bank_up </kbd></th>
328   <td>Change bank to the next higher bank.</td></tr>
329   <tr><th><kbd class="osc">/bank_down </kbd></th>
330   <td>Change bank to the next lower bank.</td></tr>
331   <tr><th><kbd class="osc">/strip/mute <em>ssid</em> <em>mute_st</em></kbd></th>
332   <td>where <em>mute_st</em> is a bool/int representing the desired mute state of the track</td></tr>
333   <tr><th><kbd class="osc">/strip/solo <em>ssid</em> <em>solo_st</em></kbd></th>
334   <td>where <em>solo_st</em> is a bool/int representing the desired solo state of the track</td></tr>
335   <tr><th><kbd class="osc">/strip/solo_iso <em>ssid</em> <em>state</em></kbd></th>
336   <td>where <em>state</em> is a bool/int representing the desired solo isolate state of the track</td></tr>
337   <tr><th><kbd class="osc">/strip/solo_safe <em>ssid</em> <em>state</em></kbd></th>
338   <td>where <em>state</em> is a bool/int representing the desired solo safe/lock state of the track</td></tr>
339   <tr><th><kbd class="osc">/strip/monitor_input <em>ssid</em> <em>monitor_st</em></kbd></th>
340   <td>where <em>monitor_st</em> is a bool/int where 1 is forced input monitoring.</td></tr>
341   <tr><th><kbd class="osc">/strip/monitor_disk <em>ssid</em> <em>monitor_st</em></kbd></th>
342   <td>where <em>monitor_st</em> is a bool/int where 1 is forced disk monitoring. When input and disk are both off,
343   Auto monitoring is enabled.</td></tr>
344   <tr><th><kbd class="osc">/strip/recenable <em>ssid</em> <em>rec_st</em></kbd></th>
345   <td>where <em>rec_st</em> is a bool/int representing the desired rec state of the track</td></tr>
346   <tr><th><kbd class="osc">/strip/record_safe <em>ssid</em> <em>rec_st</em></kbd></th>
347   <td>where <em>rec_st</em> is a bool/int representing the desired record safe state of the track</td></tr>
348   <tr><th><kbd class="osc">/strip/polarity <em>ssid</em> <em>invert</em></kbd></th>
349   <td>where <em>invert</em> is a bool/int representing the desired polarity of the track</td></tr>
350   <tr><th><kbd class="osc">/strip/gain <em>ssid</em>  <em>gain</em></kbd></th>
351   <td>where <em>gain</em> is a float ranging from -193 to 6 representing the desired gain of the track in dB.</td></tr>
352   <tr><th><kbd class="osc">/strip/fader <em>ssid</em>  <em>position</em></kbd></th>
353   <td>where <em>position</em> is a float ranging from 0 to 1 representing the fader control position.</td></tr>
354   <tr><th><kbd class="osc">/strip/*/automation <em>ssid</em>  <em>mode</em></kbd></th>
355   <td>where <em>mode</em> is an int ranging from 0 to 3 representing the desired automation mode for the control.
356   <a href="@@osc58-automation">See OSC Automation.</a></td></tr>
357   <tr><th><kbd class="osc">/strip/*/touch  <em>ssid</em> <em>state</em></kbd></th>
358   <td>where <em>state</em> is an int of 1 for touched and 0 for released.
359   <a href="@@osc58-automation">See OSC Automation.</a></td></tr>
360   <tr><th><kbd class="osc">/strip/trimdB <em>ssid</em>  <em>trim_db</em></kbd></th>
361   <td>where <em>trim_db</em> is a float ranging from -20 to 20 representing the desired trim of the track in dB.</td></tr>
362   <tr><th><kbd class="osc">/strip/pan_stereo_position <em>ssid</em> <em>position</em></kbd></th>
363   <td>where <em>position</em> is a float ranging from 0 to 1 representing the desired pan position of the track</td></tr>
364   <tr><th><kbd class="osc">/strip/pan_stereo_width <em>ssid</em> <em>width</em></kbd></th>
365   <td>where <em>width</em> is a float ranging from 0 to 1 representing the desired pan width of the track</td></tr>
366   <tr><th><kbd class="osc">/strip/send/gain <em>ssid</em> <em>sendid</em> <em>send_gain</em></kbd></th>
367   <td>where <em>sendid</em> = nth_send, <em>send_gain</em> is a float
368   ranging from -193 to +6 representing the desired gain in dB for the send</td></tr>
369   <tr><th><kbd class="osc">/strip/send/fader <em>ssid</em> <em>sendid</em> <em>send_gain</em></kbd></th>
370   <td>where <em>sendid</em> = nth_send, <em>send_gain</em> is a float
371   ranging from 0 to 1 representing the desired position for the send as a fader</td></tr>
372   <tr><th><kbd class="osc">/strip/send/enable <em>ssid</em> <em>sendid</em> <em>state</em></kbd></th>
373   <td>where <em>sendid</em> = nth_send, <em>state</em> is 1 for enabled and 0 for disabled</td></tr>
374   <tr><th><kbd class="osc">/strip/list </kbd></th>
375   <td>see: <a href="@@osc58-querying-ardour">
376   Querying Ardour with OSC.</a></td></tr>
377   <tr><th><kbd class="osc">/strip/sends <em>ssid</em></kbd></th>
378   <td>see: <a href="@@osc58-querying-ardour">
379   Querying Ardour with OSC.</a></td></tr>
380   <tr><th><kbd class="osc">/strip/receives <em>ssid</em></kbd></th>
381   <td>see: <a href="@@osc58-querying-ardour">
382   Querying Ardour with OSC.</a></td></tr>
383   <tr><th><kbd class="osc">/strip/plugin/list <em>ssid</em></kbd></th>
384   <td>see: <a href="@@osc58-querying-ardour">
385   Querying Ardour with OSC.</a></td></tr>
386   <tr><th><kbd class="osc">/strip/plugin/descriptor <em>ssid</em></kbd></th>
387   <td>see: <a href="@@osc58-querying-ardour">
388   Querying Ardour with OSC.</a></td></tr>
389   <tr><th><kbd class="osc">/strip/plugin/reset <em>ssid</em> <em>piid</em> </kbd></th>
390   <td>where <em>piid</em> = nth Plugin, will reset all values to the plugin's original values</td></tr>
391   <tr><th><kbd class="osc">/strip/plugin/activate <em>ssid</em> <em>piid</em> </kbd></th>
392   <td>where <em>piid</em> = nth Plugin, will set the plugin's state to active</td></tr>
393   <tr><th><kbd class="osc">/strip/plugin/deactivate <em>ssid</em> <em>piid</em> </kbd></th>
394   <td>where <em>piid</em> = nth Plugin, will set the plugin's state to inactive</td></tr>
395   <tr><th><kbd class="osc">/strip/plugin/parameter <em>ssid</em> <em>piid</em> <em>param</em> <em>value</em></kbd></th>
396   <td>where <em>piid</em> = nth Plugin, <em>param</em> = nth param, <em>value</em>
397   is a float ranging from 0 to 1 representing the desired parameter value</td></tr>
398   <tr><th><kbd class="osc">/strip/name <em>ssid</em> <em>name</em></kbd></th>
399   <td>where <em>name</em> is a string for the desired name of the track</td></tr>
400 </table>
401 <h3>Selected Strip Operations</h3>
402 <p>
403   New for Ardour 5, A whole set of operations that work on the selected
404   or expanded strip.
405 </p>
406 <p class="note">
407   Selected strip operations are complex enough for their own page.
408   Please read: <a
409   href="@@osc58-selection-and-expansion-considerations">
410   Selection Considerations in OSC.</a> This is most important if more
411   than one OSC surface is being used with Ardour.
412 </p>
413 <p>
414   There are two kinds of selection in OSC. GUI selection and local
415   expansion. By default expansion follows selection.
416   <ul>
417         <li>
418                 GUI selection: Use <em>/strip/select</em> to set.  Selecting
419                 a strip in the GUI will set OSC surface select and the surface
420                 will set GUI selection as well.
421         </li>
422         <li>
423                 Local expansion: Use <em>/strip/expand</em> to expand a strip
424                 without changing overall selection. When /strip/expand is set
425                 to 0 or false, the select channel will go back to using the
426                 strip selected by the GUI. While expand is turned on,
427                 selecting a strip on the GUI does not
428                 select the OSC strip. Sending a /strip/select message will
429                 override the expand as if it had been set to false.
430                 Good for more than one OSC controller at a time.
431         </li>
432   </ul>
433 </p>
434
435 <table class="dl">
436   <tr><th><kbd class="osc">/strip/select <em>ssid</em> <em>y/n</em></kbd></th>
437   <td>Where <em>y/n</em> = 1 for select. Sets both GUI select and strip
438   to expanded mode. (0 is ignored)</td></tr>
439   <tr><th><kbd class="osc">/strip/expand <em>ssid</em> <em>y/n</em></kbd></th>
440   <td>Where <em>y/n</em> = 1 for expanded mode. Sets only local strip to
441   Expanded. Setting to 0 resets the expansion to follow selection.</td></tr>
442   <tr><th><kbd class="osc">/select/expand <em>y/n</em></kbd></th>
443   <td>Where <em>y/n</em> = 1 for expanded mode, 0 for Select mode.</td></tr>
444   <tr><th><kbd class="osc">/select/recenable <em>y/n</em></kbd></th>
445   <td>Where <em>y/n</em> is 1 for enabled and 0 for disabled</td></tr>
446   <tr><th><kbd class="osc">/select/record_safe <em>y/n</em></kbd></th>
447   <td>Where <em>y/n</em> is 1 for safe and 0 for unlocked</td></tr>
448   <tr><th><kbd class="osc">/select/mute <em>y/n</em></kbd></th>
449   <td>Where <em>y/n</em> is 1 for enabled and 0 for disabled</td></tr>
450   <tr><th><kbd class="osc">/select/solo <em>y/n</em></kbd></th>
451   <td>Where <em>y/n</em> is 1 for enabled and 0 for disabled</td></tr>
452   <tr><th><kbd class="osc">/select/solo_iso <em>state</em></kbd></th>
453   <td>where <em>state</em> is a bool/int representing the desired solo isolate state of the track</td></tr>
454   <tr><th><kbd class="osc">/select/solo_safe <em>state</em></kbd></th>
455   <td>where <em>state</em> is a bool/int representing the desired solo safe/lock state of the track</td></tr>
456   <tr><th><kbd class="osc">/select/monitor_input <em>y/n</em></kbd></th>
457   <td>Where <em>y/n</em> is 1 for monitor from input and 0 for auto</td></tr>
458   <tr><th><kbd class="osc">/select/monitor_disk <em>y/n</em></kbd></th>
459   <td>Where <em>y/n</em> is 1 for monitor from disk and 0 for auto</td></tr>
460   <tr><th><kbd class="osc">/select/polarity <em>invert</em></kbd></th>
461   <td>where <em>invert</em> is a bool/int representing the desired polarity of the track</td></tr>
462   <tr><th><kbd class="osc">/select/gain <em>gain</em></kbd></th>
463   <td>Where <em>gain</em> is a float ranging from -193 to 6 representing the desired gain of the track in dB.</td></tr>
464   <tr><th><kbd class="osc">/select/fader <em>position</em></kbd></th>
465   <td>Where <em>position</em> is an float ranging from 0 to 1 representing the fader control position.</td></tr>
466   <tr><th><kbd class="osc">/select/*/automation  <em>mode</em></kbd></th>
467   <td>where <em>mode</em> is an int ranging from 0 to 3 representing the desired automation mode for the control.
468   <a href="@@osc58-automation">See OSC Automation.</a></td></tr>
469   <tr><th><kbd class="osc">/select/*/touch  <em>state</em></kbd></th>
470   <td>where <em>state</em> is an int of 1 for touched and 0 for released.
471   <a href="@@osc58-automation">See OSC Automation.</a></td></tr>
472   <tr><th><kbd class="osc">/select/trimdB <em>trim_db</em></kbd></th>
473   <td>where <em>trim_db</em> is a float ranging from -20 to 20 representing the desired trim of the track in dB.</td></tr>
474   <tr><th><kbd class="osc">/select/pan_stereo_position <em>position</em></kbd></th>
475   <td>where <em>position</em> is a float ranging from 0 to 1 representing the desired pan position of the track</td></tr>
476   <tr><th><kbd class="osc">/select/pan_stereo_width <em>width</em></kbd></th>
477   <td>where <em>width</em> is a float ranging from 0 to 1 representing the desired pan width of the track</td></tr>
478   <tr><th><kbd class="osc">/select/pan_elevation_position <em>position</em></kbd></th>
479   <td>where <em>position</em> is a float ranging from 0 to 1 representing the desired pan elevation of the track</td></tr>
480   <tr><th><kbd class="osc">/select/pan_frontback_position <em>position</em></kbd></th>
481   <td>where <em>position</em> is a float ranging from 0 to 1 representing the desired front to back position of the track</td></tr>
482   <tr><th><kbd class="osc">/select/pan_lfe_control <em>value</em></kbd></th>
483   <td>where <em>value</em> is a float ranging from 0 to 1 representing the desired LFE control value for the track</td></tr>
484   <tr><th><kbd class="osc">/select/send_gain", <em>sendid</em> <em>send_gain</em></kbd></th>
485   <td>where <em>sendid</em> = nth_send, <em>send_gain</em> is a float
486   ranging from -193 to +6 representing the desired gain in dB for the send</td></tr>
487   <tr><th><kbd class="osc">/select/send_fader", <em>sendid</em> <em>send_gain</em></kbd></th>
488   <td>where <em>sendid</em> = nth_send, <em>send_gain</em> is a float
489   ranging from 0 to 1 representing the desired position for the send as a fader</td></tr>
490   <tr><th><kbd class="osc">/select/send_enable", <em>sendid</em> <em>state</em></kbd></th>
491   <td>where <em>sendid</em> = nth_send, <em>state</em> is 1 for enabled and 0 for disabled</td></tr>
492 </table>
493
494 <h3>Menu actions</h3>
495 <p>
496   Every single menu item in Ardour's GUI is accessible via OSC. There is
497   a single common syntax to trigger the action as if it was selected
498   with the mouse (or keyboard):</p>
499 <kbd class="osc">/access_action <em>action_name</em></kbd>
500 <p>
501   As of Ardour 5.9, <em>access_action</em> can be inlined for control surfaces
502   that are unable to send string parameters. The <em>action_name</em> is composed of
503   a group and an action in the form of <em>Group/action</em> which fits very well
504   as an OSC path extension:
505 </p>
506 <kbd class="osc">/access_action/<em>Group/action</em> <em>key_pressed</em></kbd>
507 <p>
508   The key_pressed is optional, but if present is a float 1 or 0 where the
509   command is ignored if key_pressed is  0.
510 </p>
511 <p class="note">
512   Some of the Menu Actions duplicate other OSC commands. In all cases it is better
513   to use the OSC commands rather than the Menu Actions if possible as the OSC commands
514   are more direct.
515 </p>
516 <p>
517   The <a href="@@list-of-menu-actions"> list of actions</a>
518   shows all available values of <em>action-name</em> for Ardour.
519 </p>
520
521 <!--p> These listed below are still working but may in the future not work
522 any more. All of them are just short cuts to a menu action and since menu
523 actions can now be "inlined", all known OSC controllers can call them directly.
524 Any of these actions that can be moved to session->action calls may reapear.
525 </p>
526
527   <tr><th><kbd class="osc">/mark_in</kbd></th>
528   <td>Marks the begining of a range at the current transport position</td></tr>
529   <tr><th><kbd class="osc">/mark_out</kbd></th>
530   <td>Marks the end of a range at the current transport position</td></tr>
531   <tr><th><kbd class="osc">/set_loop_range</kbd></th>
532   <td>Uses edit range as loop range</td></tr>
533   <tr><th><kbd class="osc">/set_session_range</kbd></th>
534   <td>Uses edit range as session range</td></tr>
535   <tr><th><kbd class="osc">/quick_snapshot_switch</kbd></th>
536   <td>Take a snapshot and switch to new version</td></tr>
537   <tr><th><kbd class="osc">/quick_snapshot_stay</kbd></th>
538   <td>Take a snapshot and keep working on this version</td></tr>
539   <tr><th><kbd class="osc">/fit_*_track(s)</kbd></th>
540   <td>Were <em>*</em> is one of 1, 2, 4, 8, 16, 32 or all. Fits this
541   many tracks in editor window. (add s for more than 1)</td></tr>
542   <tr><th><kbd class="osc">/zoom_*</kbd></th>
543   <td>Zoom editor to include <em>*</em> where <em>*</em> is 100_ms, 1_sec,
544   10_sec, 1_min, 5_min, 10_min or to_session</td></tr>
545   <tr><th><kbd class="osc">/temporal_zoom_in</kbd></th>
546   <td>Zoom editor in to show less time</td></tr>
547   <tr><th><kbd class="osc">/temporal_zoom_out</kbd></th>
548   <td>Zoom editor out to show more time</td></tr>
549   <tr><th><kbd class="osc">/scroll_up_1_track</kbd></th>
550   <td>Scroll the editor pane up 1 track</td></tr>
551   <tr><th><kbd class="osc">/scroll_up_1_page</kbd></th>
552   <td>Scroll the editor pane up 1 page</td></tr>
553   <tr><th><kbd class="osc">/scroll_dn_1_track</kbd></th>
554   <td>Scroll the editor pane down 1 track</td></tr>
555   <tr><th><kbd class="osc">/scroll_dn_1_page</kbd></th>
556   <td>Scroll the editor pane down 1 page</td></tr>
557   <tr><th><kbd class="osc">/set_punch_range</kbd></th>
558   <td>Uses edit range as punch range</td></tr>
559   <dt><kbd class="osc">/toggle_all_rec_enables</kbd></th>
560   <td>(toggles all tracks' recording state)</dd-->