]> Shamusworld >> Repos - ardour-manual/blob - include/generic-midi-binding-maps.html
Updated the Help main menu
[ardour-manual] / include / generic-midi-binding-maps.html
1
2 <p>
3   Ardour 2.X supported
4   <a href="@@generic-midi-learn"><dfn>MIDI learning</dfn></a>
5   for more or less any control. This was a nice feature that quite a few other
6   DAWs are providing by now, but it didn't allow Ardour to work "out of the
7   box" with sensible defaults for existing commercial MIDI
8   controllers. In Ardour 3 and later versions, we have augmented the
9   MIDI learn feature with the ability to load a <dfn>MIDI binding map</dfn>
10   for a given controller, which can set up an arbitrary number of physical
11   controls with anything inside Ardour that can be controlled.
12 </p>
13 <p>
14   Currently (August 2016), we have presets for the following devices/modes:
15 </p>
16 <ul>
17   <li>AKAI MidiMix (2 layouts)</li>
18   <li>AKAI MPD-32</li>
19   <li>AKAI MPK61</li>
20   <li>AKAI MPKmini</li>
21   <li>Alesis QX25</li>
22   <li>Arturia KeyLab49</li>
23   <li>Behringer BCF2000</li>
24   <li>Behringer BCF2000 (Mackie Emulation mode; better to use
25     Ardour's actual Mackie Control Protocol support)</li>
26   <li>Behringer DDX3216</li>
27   <li>Korg nanoKONTROL (3 layouts)</li>
28   <li>Korg nanoKONTROL 2 (2 layouts)</li>
29   <li>Korg Taktile</li>
30   <li>M-Audio Axiom 25</li>
31   <li>M-Audio Axiom 61</li>
32   <li>M-Audio Axiom Air 25</li>
33   <li>M-Audio Axiom Air Mini 32</li>
34   <li>M-Audio Oxygen 8v2</li>
35   <li>M-Audio Oxygen 25</li>
36   <li>M-Audio Oxygen 49</li>
37   <li>M-Audio Oxygen 61v3 (2 layouts)</li>
38   <li>Novation Impulse 49</li>
39   <li>Novation Impulse 61</li>
40   <li>Novation LaunchControl XL</li>
41   <li>Novation LaunchKey 25</li>
42   <li>Novation LaunchKey 49</li>
43   <li>Roland SI-24</li>
44   <li>Roland V Studio 20</li>
45   <li>WiiMote</li>
46   <li>Xboard 61</li>
47   <li>Yamaha KX25</li>
48 </ul>
49   At this time, new binding maps need to be created with a text editor.
50 <p>
51   MIDI binding maps are accessible by double-clicking <kbd class="menu">Edit
52   &gt; Preferences &gt; Control Surfaces &gt; Generic MIDI</kbd>. Ardour will
53   retain your selection after you choose one.
54 </p>
55
56 <h2>Creating new MIDI maps</h2>
57 <h3>The Basic Concept</h3>
58 <p>
59   Since the beginning of time (well, sometime early in the 2.X series),
60   Ardour has had the concept of identifying each track and bus with a
61   <dfn>remote control ID</dfn>. This ID uniquely identifies a track or bus
62   so that when messages arrive from elsewhere via MIDI or OSC , we can determine
63    which track or bus they are intended to control. See
64    <a href="@@controlling-track-ordering">
65    remote control IDs</a> for more information.
66    You just need to know that there is a "first track" and its remote control
67    ID is 1, and so on.
68 </p>
69 <h3>Getting Started</h3>
70 <p>
71   MIDI bindings are stored in files with the suffix ".map" attached to their
72   name. The minimal content looks like this:
73 </p>
74 <pre>
75 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
76 &lt;ArdourMIDIBindings version="1.0.0" name="The name of this set of
77 bindings"&gt;
78 &lt;/ArdourMIDIBindings&gt;
79 </pre>
80 <p>
81   So, to start, create a file with that as the initial contents.
82 </p>
83 <p>
84         The file should be located in the midi_maps sub directory located in
85         the <a href="@@files-and-directories-ardour-knows-about">Ardour configuration directory</a>
86 </p>
87
88 <h3>Finding out what your MIDI control surface sends</h3>
89 <p>
90   This is the most complex part of the job, but its still not very hard.
91   You need to connect the control surface to an application that will show
92   you the information that the device sends each time you modify a knob,
93   slider, button etc. There are a variety of such applications (notably
94   <code>gmidimon</code> and <code>kmidimon</code>, but you can actually use
95   Ardour for this if you want. Start Ardour in a terminal window, connect
96   MIDI ports up, and in the Preferences window, enable "Trace Input" on the
97   relevant MIDI port. A full trace of the MIDI data received will show up in
98   the terminal window. (Note: in Ardour3, you get a dedicated, custom dialog
99   for this kind of tracing.)
100 </p>
101 <h3>Types of Bindings</h3>
102 <p>
103   There are two basic kinds of bindings you can make between a MIDI message
104   and something inside Ardour. The first is a binding to a specific parameter
105   of a track or bus. The second is a binding to something that will change
106   Ardour's state in some way (the "something" could either be called a
107   function or an action, see below).
108 </p>
109 <h4>Binding to Track/Bus controls</h4>
110 <p>
111   A track/bus binding has one of three basic structures
112 </p>
113 <code>
114   &lt;Binding <em>msg specification</em>  uri="<em>&hellip; control address &hellip;</em>"/&gt;</br>
115   &lt;Binding <em>msg specification</em>  function="<em>&hellip; function name &hellip;</em>"/&gt;</br>
116   &lt;Binding <em>msg specification</em>  action="<em>&hellip; action name &hellip;</em>"/&gt;
117 </code>
118
119 <h4>Message specifications</h4>
120 <p>
121   You can create a binding for either 3 types of channel messages, or for a
122   system exclusive ("sysex") message.  A channel message specification looks
123   like this:
124 </p>
125 <code>
126    &lt;Binding channel="1" ctl="13" &hellip;
127 </code>
128 <p>
129   This defines a binding for a MIDI Continuous Controller message involving
130   controller 13, arriving on channel 1. There are 16 MIDI channels, numbered
131   1 to 16. Where the example above says <code>ctl</code>, you can alternatively
132   use <code>note</code> (to create binding for a Note On message) or
133   <code>pgm</code>  (to create a binding for a Program Change message).
134 </p>
135 <p>
136         Continous Controlers (CCs) have coninued to evolve for different controlers.
137         The use of Encoders, RPN, NRPN, and controller buttons that give a 0 value
138         when released instead of toggling are now supported. These all have their
139         own type. The whole list of CC types are:
140 </p>
141 <p>
142         <ul>
143                 <li>ctl - sets a CC to the value sent (works the same as
144                 <code>note</code> with the <code>momentary</code> parameter set)</li>
145                 <li>ctl-toggle - for CC controls that send a 127 for button press
146                 and 0 for button release. The release is ignored and the value is
147                 toggled with each press. (works the same as <code>note</code>)</li>
148                 <li>ctl-dial - passes the CC value to the controlled object</li>
149                 <li>rpn - The CC value may be a 14 bit value</li>
150                 <li>nrpn - The CC number and the value may both be 14 bit values</li>
151                 <li>rpn-delta - The value is expected to be a signed 14bit value
152                 that is added to the current value. For use with encoders</li>
153                 <li>nrpn-delta - The value is expected to be a signed 14bit value
154                 that is added to the current value. For use with encoders</li>
155                 <li>enc-r, enc-l, enc-2 and enc-b - For 7 bit encoders.
156                 <a href="@@generic-midi-and-encoders"> Learn more about working
157                 with encoders </a></li>
158         </ul>
159 </p>
160
161 <p class="note">
162         Ardour 5.12 has a bug with the encoder detection where the first
163         encoder message resets the control to 0. Setting "Enable Feedback"
164         on allows encoders to work as expected.
165 </p>
166 <p>
167   You can also bind sysex messages:
168 </p>
169 <code>
170   &lt;Binding sysex="f0 0 0 e 9 0 5b f7" &hellip;.</br>
171   &lt;Binding sysex="f0 7f 0 6 7 f7" &hellip;.
172 </code>
173 <p>
174   The string after the <code>sysex=</code> part is the sequence of MIDI bytes,
175   as hexadecimal values, that make up the sysex message.
176 </p>
177 <p>
178   Finally, you can bind a totally arbitrary MIDI message:</p>
179 <code>
180   &lt;Binding msg="f0 0 0 e 9 0 5b f7" &hellip;.</br>
181   &lt;Binding msg="80 60 40" &hellip;.
182 </code>
183 <p>
184   The string after the <code>msg=</code> part is the sequence of MIDI bytes, as
185   hexadecimal values, that make up the message you want to bind. Using this is
186   slightly less efficient than the other variants shown above, but is useful for
187   some oddly designed control devices.
188 </p>
189
190 <p class="note">
191   As of Ardour 4.6 it is possible to use multi-event MIDI strings such as
192   two event CC messages, RPN or NRPN.
193 </p>
194
195 <p class="note">
196   The <code>sysex=</code> and <code>msg=</code> bindings will only work with
197   <code>function=</code> or <code>action=</code> control addresses. They
198   will <em>not</em> work with the <code>uri=</code> control addresses.
199   Controls used with <code>uri=</code> require a <em>Value</em> which is
200   only available in a known place with channel mode MIDI events.
201 </p>
202
203 <h4>Control address</h4>
204 <p>
205   A <dfn>control address</dfn> defines what the binding will actually control.
206   There are quite a few different things that can be specified here:
207 </p>
208 <p class="note">
209         Enable Feeback applies to these "Control Addresses" only.
210 </p>
211 <table class="dl">
212 <tr><th>/route/gain</th>
213 <td>the gain control ("fader") for the track/bus</td></tr>
214 <tr><th>/route/trim</th>
215 <td>the trim control for the track/bus (new in 4.1)</td></tr>
216 <tr><th>/route/solo</th>
217 <td>a toggleable control for solo (and listen) of the track/bus</td></tr>
218 <tr><th>/route/mute</th>
219 <td>a toggleable control to mute/unmute the track/bus</td></tr>
220 <tr><th>/route/recenable</th>
221 <td>a toggleable control to record-enable the track</td></tr>
222 <tr><th>/route/panwidth</th>
223 <td>interpreted by the track/bus panner, should control image "width"</td></tr>
224 <tr><th>/route/pandirection</th>
225 <td>interpreted by the track/bus panner, should control image "direction"</td></tr>
226 <tr><th>/route/plugin/parameter</th>
227 <td>the Mth parameter of the Nth plugin of a track/bus
228 </td></tr>
229 <tr><th>/route/send/gain</th>
230 <td>the gain control ("fader") of the Nth send of a track/bus</td></tr>
231 </table>
232 <p>Each of the specifications needs an address, which takes various forms too. For track-level controls (solo/gain/mute/recenable), the address is one the following:</p>
233 <table class="dl">
234 <tr><th>a number, e.g. "1"
235 </th>
236 <td>identifies a track or bus by its remote control ID
237 </td></tr>
238 <tr><th>B, followed by a number
239 </th>
240 <td>identifies a track or bus by its remote control ID within the current bank (see below for more on banks)
241 </td></tr>
242 <tr><th>S, followed by a number
243 </th>
244 <td>identifies a selected track in order they have been selected, S1 should be the same track as the Editor Mixer
245 </td></tr>
246 <tr><th>one or more words
247 </th>
248 <td>identifies a track or bus by its name
249 </td></tr>
250 </table>
251 <p>
252   For send/insert/plugin controls, the address consists of a track/bus
253   address (as just described) followed by a number identifying the plugin/send
254   (starting from 1). For plugin parameters, there is an additional third
255   component: a number identifying the plugin parameter number (starting from
256   1).
257 </p>
258 <p>
259   One additional feature: for solo and mute bindings, you can also add
260   <code>momentary="yes"</code> after the control address. This is useful
261   primarily for NoteOn bindings&mdash;when Ardour gets the NoteOn it
262   will solo or mute the targetted track or bus, but then when a NoteOff
263   arrives, it will un-solo or un-mute it.
264 </p>
265
266 <h4>Bindings to Ardour "functions"</h4>
267 <p class="note">
268   There is currently no feedback available for functions.
269 </p>
270 <p>
271   Rather than binding to a specific track/bus/plugin control, it may be useful to
272   have a MIDI controller able to alter some part of Ardour's
273   state. Ardour's Generic MIDI support provides a small number of
274   easily-used "functions" to do the most common operations, using a
275   binding that looks like this:
276 </p>
277 <code>
278   &lt;Binding channel="1" note="13" function="transport-roll"/&gt;
279 </code>
280 <p>
281   In this case, a NoteOn message for note number 13 (on channel 1) will
282   start the transport rolling. 
283 </p>
284 <p>
285   Note that a much greater number of operations are possible using
286   actions, described below.
287 </p>
288 <p>
289   The following function names are available:
290 </p>
291 <table class="dl">
292 <tr><th>
293 <code>transport-stop</code>
294 </th>
295 <td>stop the transport
296 </td></tr>
297 <tr><th>
298 <code>transport-roll</code>
299 </th>
300 <td>start the transport "rolling"
301 </td></tr>
302 <tr><th>
303 <code>transport-zero</code>
304 </th>
305 <td>move the playhead to the zero position
306 </td></tr>
307 <tr><th>
308 <code>transport-start</code>
309 </th>
310 <td>move the playhead to the start marker
311 </td></tr>
312 <tr><th>
313 <code>transport-end</code>
314 </th>
315 <td>move the playhead to the end marker
316 </td></tr>
317 <tr><th>
318 <code>loop-toggle</code>
319 </th>
320 <td>turn on loop playback
321 </td></tr>
322 <tr><th>
323 <code>rec-enable</code>
324 </th>
325 <td>enable the global record button
326 </td></tr>
327 <tr><th>
328 <code>rec-disable</code>
329 </th>
330 <td>disable the global record button
331 </td></tr>
332 <tr><th>
333 <code>next-bank</code>
334 </th>
335 <td>Move track/bus mapping to the next bank (see Banks below)
336 </td></tr>
337 <tr><th>
338 <code>prev-bank</code>
339 </th>
340 <td>Move track/bus mapping to the previous bank (see Banks below)
341 </td></tr>
342 </table>
343
344 <h4>Binding to Ardour "actions"</h4>
345 <p class="note">
346   It is not possible to have feedback available for actions because
347   these represent keyboard shortcuts which are input only.
348 </p>
349 <p>
350   You can also bind a sysex or arbitrary message to any of the items
351   that occur in Ardour's main menu (and its submenus). The <a
352   href="@@list-of-menu-actions">
353   list of actions</a> shows all available values of <em>action-name</em>.
354 <p>
355   To create a binding between an arbitrary MIDI message (we'll use a
356   note-off on channel 1 of MIDI note 60 (hex) with release velocity
357   40 (hex)), the binding file would contain:
358 </p>
359 <code>
360    &lt;Binding msg="80 60 40" action="Editor/temporal-zoom-in"/&gt;
361 </code>
362 <p>
363   The general rule, when taken an item from the keybindings file and
364   using it in a MIDI binding is to simply strip the
365   <code>&lt;Action&gt;</code> prefix of the second field in the
366   keybinding definition.
367 </p>
368
369 <h3>Banks and Banking</h3>
370 <p>
371   Because many modern control surfaces offer per-track/bus controls
372   for far fewer tracks &amp; busses than many users want to control,
373   Ardour offers the relatively common place concept of <dfn>banks</dfn>. Banks
374   allow you to control any number of tracks and/or busses easily,
375   regardless of how many faders/knobs etc. your control surface has.<br>
376   To use banking, the control addresses must be specified using the
377   <dfn>bank relative</dfn> format mentioned above ("B1" to identify
378   the first track of a bank of tracks, rather than "1" to identify
379   the first track).
380 </p>
381 <p>
382   One very important extra piece of information is required to use
383   banking: an extra line near the start of the list of bindings
384   that specifies how many tracks/busses to use per bank. If the
385   device has 8 faders, then 8 would be a sensible value to use for
386   this. The line looks like this:</p>
387 <code>
388    &lt;DeviceInfo bank-size="8"/&gt;
389 </code>
390 <p>
391   In addition, you probably want to ensure that you bind something
392   on the control surface to the <code>next-bank</code> and
393   <code>prev-bank</code> functions, otherwise you and other users
394   will have to use the mouse and the GUI to change banks, which
395   rather defeats the purpose of the bindings.
396 </p>
397 <h3>The Selected Strip</h3>
398 <p>
399   Often times one wants to just deal with the strip currently
400   selected by the GUI (or the control surface). In the same way as with
401   banks above the selected strip can be designated with <em>S1</em>.
402 </p>
403 <h2>A Complete (though muddled) Example</h2>
404 <pre>
405 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
406 &lt;ArdourMIDIBindings version="1.0.0" name="pc1600x transport controls"&gt;
407   &lt;DeviceInfo bank-size="16"/&gt;
408   &lt;Binding channel="1" ctl="1"   uri="/route/gain B1"/&gt;
409   &lt;Binding channel="1" ctl="2"   uri="/route/gain B2"/&gt;
410   &lt;Binding channel="1" ctl="3"   uri="/route/send/gain B1 1"/&gt;
411   &lt;Binding channel="1" ctl="4"   uri="/route/plugin/parameter B1 1 1"/&gt;
412   &lt;Binding channel="1" ctl="6"   uri="/bus/gain master"/&gt;
413
414   &lt;Binding channel="1" note="1"  uri="/route/solo B1"/&gt;
415   &lt;Binding channel="1" note="2"  uri="/route/solo B2" momentary="yes"/&gt;
416
417   &lt;Binding channel="1" note="15"  uri="/route/mute B1" momentary="yes"/&gt;
418   &lt;Binding channel="1" note="16"  uri="/route/mute B2" momentary="yes"/&gt;
419
420   &lt;Binding channel="1" enc-r="11"   uri="/route/pandirection B1"/&gt;
421   &lt;Binding channel="1" enc-r="12"   uri="/route/pandirection B2"/&gt;
422
423   &lt;Binding sysex="f0 0 0 e 9 0 5b f7" function="transport-start"/&gt;
424   &lt;Binding sysex="f0 7f 0 6 7 f7" function="rec-disable"/&gt;
425   &lt;Binding sysex="f0 7f 0 6 6 f7" function="rec-enable"/&gt;
426   &lt;Binding sysex="f0 0 0 e 9 0 53 0 0 f7" function="loop-toggle"/&gt;
427
428   &lt;Binding channel="1" note="13" function="transport-roll"/&gt;
429   &lt;Binding channel="1" note="14" function="transport-stop"/&gt;
430   &lt;Binding channel="1" note="12" function="transport-start"/&gt;
431   &lt;Binding channel="1" note="11" function="transport-zero"/&gt;
432   &lt;Binding channel="1" note="10" function="transport-end"/&gt;
433 &lt;/ArdourMIDIBindings&gt;
434 </pre>
435 <p>
436   Please note that channel, controller and note numbers are specified as
437   decimal numbers in the ranges 1-16, 0-127 and 0-127 respectively
438   (the channel range may change at some point).
439 </p>
440