]> Shamusworld >> Repos - ardour-manual/blob - include/osc58-controlling-ardour-with-osc.html
OSC: add /scrub
[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</td></tr>
243 </table>
244
245 <h4>Recording control</h4>
246 <table class="dl">
247   <tr><th><kbd class="osc">/toggle_punch_in</kbd></th>
248   <td></td></tr>
249   <tr><th><kbd class="osc">/toggle_punch_out</kbd></th>
250   <td></td></tr>
251   <tr><th><kbd class="osc">/rec_enable_toggle</kbd></th>
252   <td>Toggles master record enable</td></tr>
253 </table>
254
255 <h4>Transport Information</h4>
256 <table class="dl">
257   <tr><th><kbd class="osc">/transport_frame</kbd></th>
258   <td>Ardour sends /transport_frame <em>current_frame</em></td></tr>
259   <tr><th><kbd class="osc">/transport_speed</kbd></th>
260   <td>Ardour sends /transport_speed <em>speed</em></td></tr>
261   <tr><th><kbd class="osc">/record_enabled</kbd></th>
262   <td>Ardour sends /record_enabled <em>recordenable_status</em></td></tr>
263 </table>
264
265 <h4>Editing-related</h4>
266 <table class="dl">
267   <tr><th><kbd class="osc">/undo</kbd></th>
268   <td></td></tr>
269   <tr><th><kbd class="osc">/redo</kbd></th>
270   <td></td></tr>
271   <tr><th><kbd class="osc">/save_state</kbd></th>
272   <td>(this is the regular <kbd class="menu">Session &gt; Save</kbd>
273   operation)</td></tr>
274 </table>
275
276 <h4>Master and Monitor strip control</h4>
277 <table class="dl">
278   <tr><th><kbd class="osc">/master/gain <em>dB</em></kbd></th>
279   <td>dB is a float indicating the desired gain in dB</td></tr>
280   <tr><th><kbd class="osc">/master/fader  <em>position</em></kbd></th>
281   <td>position is a float between 0 and 1 setting the desired position of the fader</td></tr>
282   <tr><th><kbd class="osc">/master/trimdB <em>dB</em></kbd></th>
283   <td>dB is a float from -20 to +20 representing the desired trim gain in dB</td></tr>
284   <tr><th><kbd class="osc">/master/pan_stereo_position <em>position</em></kbd></th>
285   <td>position is a float from 0 to 1 representing the desired pan position</td></tr>
286   <tr><th><kbd class="osc">/master/mute  <em>state</em></kbd></th>
287   <td>state is an int of o or 1 representing the desired mute state</td></tr>
288   <tr><th><kbd class="osc">/monitor/gain <em>dB</em></kbd></th>
289   <td>dB is a float indicating the desired gain in dB</td></tr>
290   <tr><th><kbd class="osc">/monitor/fader  <em>position</em></kbd></th>
291   <td>position is a float between 0 and 1 setting the desired position of the fader</td></tr>
292   <tr><th><kbd class="osc">/monitor/mute  <em>state</em></kbd></th>
293   <td>state is an int of 0 or 1 where 1 is muted</td></tr>
294   <tr><th><kbd class="osc">/monitor/dim  <em>state</em></kbd></th>
295   <td>state is an int of 0 or 1 where 1 is dimmed</td></tr>
296   <tr><th><kbd class="osc">/monitor/mono  <em>state</em></kbd></th>
297   <td>state is an int of 0 or 1 where 1 is mono mode</td></tr>
298 </table>
299
300 <h3>Track specific operations</h3>
301 <p>
302   For each of the following, <em>ssid</em> is the Surface Strip ID for the track
303 </p>
304 <p class="note">
305   SSID has a different meaning than RID in Ardour version 4.7 and before.
306   Effectively, banking is always being used and the SSID is generated on
307   the fly. The SSID is the position of the strip within bank as an int
308   1 to bank size. There are no gaps as there have been in the past.
309   Depending on the value of strip_types sent to Ardour, Master and
310   Monitor, may be included in the list of SSIDs or not as set in
311   <em>/set_surface</em>.
312 </p>
313 <p class="note">
314   Some Surfaces (many Android applets) are not able to deal with more
315   than one parameter in a command. However, the two parameter commands
316   below can also be sent as /strip/command/ssid param. In this case the
317   param should be a float even if an int is required below.
318 </p>
319 <table class="dl">
320   <tr><th><kbd class="osc">/bank_up </kbd></th>
321   <td>Change bank to the next higher bank.</td></tr>
322   <tr><th><kbd class="osc">/bank_down </kbd></th>
323   <td>Change bank to the next lower bank.</td></tr>
324   <tr><th><kbd class="osc">/strip/mute <em>ssid</em> <em>mute_st</em></kbd></th>
325   <td>where <em>mute_st</em> is a bool/int representing the desired mute state of the track</td></tr>
326   <tr><th><kbd class="osc">/strip/solo <em>ssid</em> <em>solo_st</em></kbd></th>
327   <td>where <em>solo_st</em> is a bool/int representing the desired solo state of the track</td></tr>
328   <tr><th><kbd class="osc">/strip/solo_iso <em>ssid</em> <em>state</em></kbd></th>
329   <td>where <em>state</em> is a bool/int representing the desired solo isolate state of the track</td></tr>
330   <tr><th><kbd class="osc">/strip/solo_safe <em>ssid</em> <em>state</em></kbd></th>
331   <td>where <em>state</em> is a bool/int representing the desired solo safe/lock state of the track</td></tr>
332   <tr><th><kbd class="osc">/strip/monitor_input <em>ssid</em> <em>monitor_st</em></kbd></th>
333   <td>where <em>monitor_st</em> is a bool/int where 1 is forced input monitoring.</td></tr>
334   <tr><th><kbd class="osc">/strip/monitor_disk <em>ssid</em> <em>monitor_st</em></kbd></th>
335   <td>where <em>monitor_st</em> is a bool/int where 1 is forced disk monitoring. When input and disk are both off,
336   Auto monitoring is enabled.</td></tr>
337   <tr><th><kbd class="osc">/strip/recenable <em>ssid</em> <em>rec_st</em></kbd></th>
338   <td>where <em>rec_st</em> is a bool/int representing the desired rec state of the track</td></tr>
339   <tr><th><kbd class="osc">/strip/record_safe <em>ssid</em> <em>rec_st</em></kbd></th>
340   <td>where <em>rec_st</em> is a bool/int representing the desired record safe state of the track</td></tr>
341   <tr><th><kbd class="osc">/strip/polarity <em>ssid</em> <em>invert</em></kbd></th>
342   <td>where <em>invert</em> is a bool/int representing the desired polarity of the track</td></tr>
343   <tr><th><kbd class="osc">/strip/gain <em>ssid</em>  <em>gain</em></kbd></th>
344   <td>where <em>gain</em> is a float ranging from -193 to 6 representing the desired gain of the track in dB.</td></tr>
345   <tr><th><kbd class="osc">/strip/fader <em>ssid</em>  <em>position</em></kbd></th>
346   <td>where <em>position</em> is a float ranging from 0 to 1 representing the fader control position.</td></tr>
347   <tr><th><kbd class="osc">/strip/trimdB <em>ssid</em>  <em>trim_db</em></kbd></th>
348   <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>
349   <tr><th><kbd class="osc">/strip/pan_stereo_position <em>ssid</em> <em>position</em></kbd></th>
350   <td>where <em>position</em> is a float ranging from 0 to 1 representing the desired pan position of the track</td></tr>
351   <tr><th><kbd class="osc">/strip/pan_stereo_width <em>ssid</em> <em>width</em></kbd></th>
352   <td>where <em>width</em> is a float ranging from 0 to 1 representing the desired pan width of the track</td></tr>
353   <tr><th><kbd class="osc">/strip/send/gain <em>ssid</em> <em>sendid</em> <em>send_gain</em></kbd></th>
354   <td>where <em>sendid</em> = nth_send, <em>send_gain</em> is a float
355   ranging from -193 to +6 representing the desired gain in dB for the send</td></tr>
356   <tr><th><kbd class="osc">/strip/send/fader <em>ssid</em> <em>sendid</em> <em>send_gain</em></kbd></th>
357   <td>where <em>sendid</em> = nth_send, <em>send_gain</em> is a float
358   ranging from 0 to 1 representing the desired position for the send as a fader</td></tr>
359   <tr><th><kbd class="osc">/strip/send/enable <em>ssid</em> <em>sendid</em> <em>state</em></kbd></th>
360   <td>where <em>sendid</em> = nth_send, <em>state</em> is 1 for enabled and 0 for disabled</td></tr>
361   <tr><th><kbd class="osc">/strip/list </kbd></th>
362   <td>see: <a href="@@osc58-querying-ardour">
363   Querying Ardour with OSC.</a></td></tr>
364   <tr><th><kbd class="osc">/strip/sends <em>ssid</em></kbd></th>
365   <td>see: <a href="@@osc58-querying-ardour">
366   Querying Ardour with OSC.</a></td></tr>
367   <tr><th><kbd class="osc">/strip/receives <em>ssid</em></kbd></th>
368   <td>see: <a href="@@osc58-querying-ardour">
369   Querying Ardour with OSC.</a></td></tr>
370   <tr><th><kbd class="osc">/strip/plugin/list <em>ssid</em></kbd></th>
371   <td>see: <a href="@@osc58-querying-ardour">
372   Querying Ardour with OSC.</a></td></tr>
373   <tr><th><kbd class="osc">/strip/plugin/descriptor <em>ssid</em></kbd></th>
374   <td>see: <a href="@@osc58-querying-ardour">
375   Querying Ardour with OSC.</a></td></tr>
376   <tr><th><kbd class="osc">/strip/plugin/reset <em>ssid</em> <em>piid</em> </kbd></th>
377   <td>where <em>piid</em> = nth Plugin, will reset all values to the plugin's original values</td></tr>
378   <tr><th><kbd class="osc">/strip/plugin/activate <em>ssid</em> <em>piid</em> </kbd></th>
379   <td>where <em>piid</em> = nth Plugin, will set the plugin's state to active</td></tr>
380   <tr><th><kbd class="osc">/strip/plugin/deactivate <em>ssid</em> <em>piid</em> </kbd></th>
381   <td>where <em>piid</em> = nth Plugin, will set the plugin's state to inactive</td></tr>
382   <tr><th><kbd class="osc">/strip/plugin/parameter <em>ssid</em> <em>piid</em> <em>param</em> <em>value</em></kbd></th>
383   <td>where <em>piid</em> = nth Plugin, <em>param</em> = nth param, <em>value</em>
384   is a float ranging from 0 to 1 representing the desired parameter value</td></tr>
385   <tr><th><kbd class="osc">/strip/name <em>ssid</em> <em>name</em></kbd></th>
386   <td>where <em>name</em> is a string for the desired name of the track</td></tr>
387 </table>
388 <h3>Selected Strip Operations</h3>
389 <p>
390   New for Ardour 5, A whole set of operations that work on the selected
391   or expanded strip.
392 </p>
393 <p class="note">
394   Selected strip operations are complex enough for their own page.
395   Please read: <a
396   href="@@osc58-selection-and-expansion-considerations">
397   Selection Considerations in OSC.</a> This is most important if more
398   than one OSC surface is being used with Ardour.
399 </p>
400 <p>
401   There are two kinds of selection in OSC. GUI selection and local
402   expansion. By default expansion follows selection.
403   <ul>
404         <li>
405                 GUI selection: Use <em>/strip/select</em> to set.  Selecting
406                 a strip in the GUI will set OSC surface select and the surface
407                 will set GUI selection as well.
408         </li>
409         <li>
410                 Local expansion: Use <em>/strip/expand</em> to expand a strip
411                 without changing overall selection. When /strip/expand is set
412                 to 0 or false, the select channel will go back to using the
413                 strip selected by the GUI. While expand is turned on,
414                 selecting a strip on the GUI does not
415                 select the OSC strip. Sending a /strip/select message will
416                 override the expand as if it had been set to false.
417                 Good for more than one OSC controller at a time.
418         </li>
419   </ul>
420 </p>
421
422 <table class="dl">
423   <tr><th><kbd class="osc">/strip/select <em>ssid</em> <em>y/n</em></kbd></th>
424   <td>Where <em>y/n</em> = 1 for select. Sets both GUI select and strip
425   to expanded mode. (0 is ignored)</td></tr>
426   <tr><th><kbd class="osc">/strip/expand <em>ssid</em> <em>y/n</em></kbd></th>
427   <td>Where <em>y/n</em> = 1 for expanded mode. Sets only local strip to
428   Expanded. Setting to 0 resets the expansion to follow selection.</td></tr>
429   <tr><th><kbd class="osc">/select/expand <em>y/n</em></kbd></th>
430   <td>Where <em>y/n</em> = 1 for expanded mode, 0 for Select mode.</td></tr>
431   <tr><th><kbd class="osc">/select/recenable <em>y/n</em></kbd></th>
432   <td>Where <em>y/n</em> is 1 for enabled and 0 for disabled</td></tr>
433   <tr><th><kbd class="osc">/select/record_safe <em>y/n</em></kbd></th>
434   <td>Where <em>y/n</em> is 1 for safe and 0 for unlocked</td></tr>
435   <tr><th><kbd class="osc">/select/mute <em>y/n</em></kbd></th>
436   <td>Where <em>y/n</em> is 1 for enabled and 0 for disabled</td></tr>
437   <tr><th><kbd class="osc">/select/solo <em>y/n</em></kbd></th>
438   <td>Where <em>y/n</em> is 1 for enabled and 0 for disabled</td></tr>
439   <tr><th><kbd class="osc">/select/solo_iso <em>state</em></kbd></th>
440   <td>where <em>state</em> is a bool/int representing the desired solo isolate state of the track</td></tr>
441   <tr><th><kbd class="osc">/select/solo_safe <em>state</em></kbd></th>
442   <td>where <em>state</em> is a bool/int representing the desired solo safe/lock state of the track</td></tr>
443   <tr><th><kbd class="osc">/select/monitor_input <em>y/n</em></kbd></th>
444   <td>Where <em>y/n</em> is 1 for monitor from input and 0 for auto</td></tr>
445   <tr><th><kbd class="osc">/select/monitor_disk <em>y/n</em></kbd></th>
446   <td>Where <em>y/n</em> is 1 for monitor from disk and 0 for auto</td></tr>
447   <tr><th><kbd class="osc">/select/polarity <em>invert</em></kbd></th>
448   <td>where <em>invert</em> is a bool/int representing the desired polarity of the track</td></tr>
449   <tr><th><kbd class="osc">/select/gain <em>gain</em></kbd></th>
450   <td>Where <em>gain</em> is a float ranging from -193 to 6 representing the desired gain of the track in dB.</td></tr>
451   <tr><th><kbd class="osc">/select/fader <em>position</em></kbd></th>
452   <td>Where <em>position</em> is an float ranging from 0 to 1 representing the fader control position.</td></tr>
453   <tr><th><kbd class="osc">/select/trimdB <em>trim_db</em></kbd></th>
454   <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>
455   <tr><th><kbd class="osc">/select/pan_stereo_position <em>position</em></kbd></th>
456   <td>where <em>position</em> is a float ranging from 0 to 1 representing the desired pan position of the track</td></tr>
457   <tr><th><kbd class="osc">/select/pan_stereo_width <em>width</em></kbd></th>
458   <td>where <em>width</em> is a float ranging from 0 to 1 representing the desired pan width of the track</td></tr>
459   <tr><th><kbd class="osc">/select/pan_elevation_position <em>position</em></kbd></th>
460   <td>where <em>position</em> is a float ranging from 0 to 1 representing the desired pan elevation of the track</td></tr>
461   <tr><th><kbd class="osc">/select/pan_frontback_position <em>position</em></kbd></th>
462   <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>
463   <tr><th><kbd class="osc">/select/pan_lfe_control <em>value</em></kbd></th>
464   <td>where <em>value</em> is a float ranging from 0 to 1 representing the desired LFE control value for the track</td></tr>
465   <tr><th><kbd class="osc">/select/send_gain", <em>sendid</em> <em>send_gain</em></kbd></th>
466   <td>where <em>sendid</em> = nth_send, <em>send_gain</em> is a float
467   ranging from -193 to +6 representing the desired gain in dB for the send</td></tr>
468   <tr><th><kbd class="osc">/select/send_fader", <em>sendid</em> <em>send_gain</em></kbd></th>
469   <td>where <em>sendid</em> = nth_send, <em>send_gain</em> is a float
470   ranging from 0 to 1 representing the desired position for the send as a fader</td></tr>
471   <tr><th><kbd class="osc">/select/send_enable", <em>sendid</em> <em>state</em></kbd></th>
472   <td>where <em>sendid</em> = nth_send, <em>state</em> is 1 for enabled and 0 for disabled</td></tr>
473 </table>
474
475 <h3>Menu actions</h3>
476 <p>
477   Every single menu item in Ardour's GUI is accessible via OSC. There is
478   a single common syntax to trigger the action as if it was selected
479   with the mouse (or keyboard):</p>
480 <kbd class="osc">/access_action <em>action_name</em></kbd>
481 <p>
482   As of Ardour 5.9, <em>access_action</em> can be inlined for control surfaces
483   that are unable to send string parameters. The <em>action_name</em> is composed of
484   a group and an action in the form of <em>Group/action</em> which fits very well
485   as an OSC path extension:
486 </p>
487 <kbd class="osc">/access_action/<em>Group/action</em> <em>key_pressed</em></kbd>
488 <p>
489   The key_pressed is optional, but if present is a float 1 or 0 where the
490   command is ignored if key_pressed is  0.
491 </p>
492 <p class="note">
493   Some of the Menu Actions duplicate other OSC commands. In all cases it is better
494   to use the OSC commands rather than the Menu Actions if possible as the OSC commands
495   are more direct.
496 </p>
497 <p>
498   The <a href="@@list-of-menu-actions"> list of actions</a>
499   shows all available values of <em>action-name</em> for Ardour.
500 </p>
501
502 <!--p> These listed below are still working but may in the future not work
503 any more. All of them are just short cuts to a menu action and since menu
504 actions can now be "inlined", all known OSC controllers can call them directly.
505 Any of these actions that can be moved to session->action calls may reapear.
506 </p>
507
508   <tr><th><kbd class="osc">/mark_in</kbd></th>
509   <td>Marks the begining of a range at the current transport position</td></tr>
510   <tr><th><kbd class="osc">/mark_out</kbd></th>
511   <td>Marks the end of a range at the current transport position</td></tr>
512   <tr><th><kbd class="osc">/set_loop_range</kbd></th>
513   <td>Uses edit range as loop range</td></tr>
514   <tr><th><kbd class="osc">/set_session_range</kbd></th>
515   <td>Uses edit range as session range</td></tr>
516   <tr><th><kbd class="osc">/quick_snapshot_switch</kbd></th>
517   <td>Take a snapshot and switch to new version</td></tr>
518   <tr><th><kbd class="osc">/quick_snapshot_stay</kbd></th>
519   <td>Take a snapshot and keep working on this version</td></tr>
520   <tr><th><kbd class="osc">/fit_*_track(s)</kbd></th>
521   <td>Were <em>*</em> is one of 1, 2, 4, 8, 16, 32 or all. Fits this
522   many tracks in editor window. (add s for more than 1)</td></tr>
523   <tr><th><kbd class="osc">/zoom_*</kbd></th>
524   <td>Zoom editor to include <em>*</em> where <em>*</em> is 100_ms, 1_sec,
525   10_sec, 1_min, 5_min, 10_min or to_session</td></tr>
526   <tr><th><kbd class="osc">/temporal_zoom_in</kbd></th>
527   <td>Zoom editor in to show less time</td></tr>
528   <tr><th><kbd class="osc">/temporal_zoom_out</kbd></th>
529   <td>Zoom editor out to show more time</td></tr>
530   <tr><th><kbd class="osc">/scroll_up_1_track</kbd></th>
531   <td>Scroll the editor pane up 1 track</td></tr>
532   <tr><th><kbd class="osc">/scroll_up_1_page</kbd></th>
533   <td>Scroll the editor pane up 1 page</td></tr>
534   <tr><th><kbd class="osc">/scroll_dn_1_track</kbd></th>
535   <td>Scroll the editor pane down 1 track</td></tr>
536   <tr><th><kbd class="osc">/scroll_dn_1_page</kbd></th>
537   <td>Scroll the editor pane down 1 page</td></tr>
538   <tr><th><kbd class="osc">/set_punch_range</kbd></th>
539   <td>Uses edit range as punch range</td></tr>
540   <dt><kbd class="osc">/toggle_all_rec_enables</kbd></th>
541   <td>(toggles all tracks' recording state)</dd-->