]> Shamusworld >> Repos - ardour-manual/blob - _manual/22_using-control-surfaces/03_midi-binding-maps.html
82828628b80effa9f95c7e0321663e590ce3b6f0
[ardour-manual] / _manual / 22_using-control-surfaces / 03_midi-binding-maps.html
1 ---
2 layout: default
3 title: MIDI Binding Maps
4 ---                        
5
6 <p>
7   Ardour 2.X supported 
8   <a href="/using-control-surfaces/midi-learn"><dfn>MIDI learning</dfn></a> 
9   for more or less any control. This was a nice feature that quite a few other
10   DAWs are providing by now, but it didn't allow Ardour to work "out of the
11   box" with sensible defaults for existing commercial MIDI
12   controllers. In Ardour 3 and later versions, we have augmented the
13   MIDI learn feature with the ability to load a <dfn>MIDI binding map</dfn> 
14   for a given controller, which can set up an arbitrary number of physical
15   controls with anything inside Ardour that can be controlled. 
16 </p>
17 <p>
18   At this time, these binding maps need to be created with a text editor.
19   Currently, we have presets for:
20 </p>
21 <ul>
22   <li>Behringer BCF 2000</li>
23   <li>Korg_nanoKONTROL</li>
24   <li>M-Audio Oxygen 8 v2</li>
25   <li>Roland SI-24</li>
26   <li>Behringer DDX3216</li>
27   <li>M-Audio Axiom 25</li>
28 </ul>
29 <p>
30   MIDI binding maps are accessible by double-clicking <kbd class="menu">Edit
31   &gt; Preferences &gt; Control Surfaces &gt; Generic MIDI</kbd>. Ardour will 
32   retain your selection after you choose one.
33 </p>
34
35 <h2>Creating new MIDI maps</h2>
36 <h3>The Basic Concept</h3>
37 <p>
38   Since the beginning of time (well, sometime early in the 2.X series), 
39   Ardour has had the concept of identifying each track and bus with a 
40   <dfn>remote control ID</dfn>. This ID uniquely identifies a track or bus 
41   so that when messages arrive from elsewhere via MIDI or OSC , we can determine 
42    which track or bus they are intended to control. Ardour has a 
43    <a
44   href="/working-with-tracks/controlling-track-ordering/track-ordering-and-remote-control-ids/">number 
45    of ways of assigning remote control IDs</a>, but they don't really matter 
46    very much when creating MIDI binding maps, so we won't discuss that here. 
47    You just need to know that there is a "first track" and its remote control 
48    ID is 1, and so on.
49 </p>
50 <h3>Getting Started</h3>
51 <p>
52   MIDI bindings are stored in files with the suffix ".map" attached to their 
53   name. The minimal content looks like this:
54 </p>
55 <pre>
56 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
57 &lt;ArdourMIDIBindings version="1.0.0" name="The name of this set of
58 bindings"&gt;
59 &lt;/ArdourMIDIBindings&gt;
60 </pre>
61 <p>
62   So, to start, create a file with that as the initial contents.
63 </p>
64 <p>
65   On OS X, Ardour loads midi maps from its binary-bundle folder in 
66   <code>Ardour-&lt;version&gt;/midi_maps/</code> and checks 
67   various other locations as well (defined by the ARDOUR_MIDIMAPS_PATH 
68   environment variable). On GNU/Linux the easiest is to save the file to 
69   <code>~/.config/ardour3/midi_maps/</code>.
70 </p>
71
72 <h3>Finding out what your MIDI control surface sends</h3>
73 <p>
74   This is the most complex part of the job, but its still not very hard. 
75   You need to connect the control surface to an application that will show 
76   you the information that the device sends each time you modify a knob, 
77   slider, button etc. There are a variety of such applications (notably 
78   <code>gmidimon</code> and <code>kmidimon</code>, but you can actually use 
79   Ardour for this if you want. Start Ardour in a terminal window, connect 
80   MIDI ports up, and in the Preferences window, enable "Trace Input" on the 
81   relevant MIDI port. A full trace of the MIDI data received will show up in 
82   the terminal window. (Note: in Ardour3, you get a dedicated, custom dialog 
83   for this kind of tracing.)
84 </p>
85 <h3>Types of Bindings</h3>
86 <p>
87   There are two basic kinds of bindings you can make between a MIDI message 
88   and something inside Ardour. The first is a binding to a specific parameter 
89   of a track or bus. The second is a binding to a function that will change 
90   Ardour's state in some way.
91 </p>
92 <h4>Binding to Track/Bus controls</h4>
93 <p>
94   A track/bus binding has one of two basic structures
95 </p>
96 <code>
97   &lt;Binding <em>msg specification</em>  uri="<em>... control address ...</em>"/&gt;
98   &lt;Binding <em>msg specification</em>  function="<em>... function name ...</em>"/&gt;
99 </code>
100
101 <h4>Message specifications</h4>
102 <p>
103   You can create a binding for either 3 types of channel messages, or for a
104   system exclusive ("sysex") message.  A channel message specification looks 
105   like this:
106 </p>
107 <code>
108    &lt;Binding channel="1" ctl="13" ....
109 </code>
110 <p>
111   This defines a binding for a MIDI Continuous Controller message involving 
112   controller 13, arriving on channel 1. There are 16 MIDI channels, numbered 
113   1 to 16. Where the example above says <code>ctl</code>, you can alternatively 
114   use <code>note</code> (to create binding for a Note On message) or 
115   <code>pgm</code>  (to create a binding for a Program Change message).
116 </p>
117 <p>
118   You can also bind sysex messages:
119 </p>
120 <code>
121   &lt;Binding sysex="f0 0 0 e 9 0 5b f7" ....
122   &lt;Binding sysex="f0 7f 0 6 7 f7" ....
123 </code>
124 <p>
125   The string after the <code>sysex=</code> part is the sequence of MIDI bytes, 
126   as hexadecimal values, that make up the sysex message.
127 </p>
128 <p>
129   Finally, you can bind a totally arbitrary MIDI message:</p>
130 <code>
131   &lt;Binding msg="f0 0 0 e 9 0 5b f7" ....
132   &lt;Binding msg="80 60 40" ....
133 </code>
134 <p>
135   The string after the <code>msg=</code> part is the sequence of MIDI bytes, as 
136   hexadecimal values, that make up the message you want to bind. Using this is 
137   slightly less efficient than the other variants shown above, but is useful for 
138   some oddly designed control devices.
139 </p>
140
141 <h5>Note:<h5>
142 <p>
143   The <code>sysex=</code> and <code>msg=</code> bindings will only work with
144   <code>function=</code> or <code>action=</code> control addresses. They
145   will <em>not</em> work with the <code>uri=</code> control addresses.
146 </p>
147
148 <h4>Control address</h4>
149 <p>
150   A <dfn>control address</dfn> defines what the binding will actually control. 
151   There are quite a few different things that can be specified here:
152 </p>
153 <dl class="wide-table">
154 <dt>/route/gain</dt>
155 <dd>the gain control ("fader") for the track/bus</dd>
156 <dt>/route/trim</dt>
157 <dd>the trim control for the track/bus (new in 4.1)</dd>
158 <dt>/route/solo</dt>
159 <dd>a toggleable control for solo (and listen) of the track/bus</dd>
160 <dt>/route/mute</dt>
161 <dd>a toggleable control to mute/unmute the track/bus</dd>
162 <dt>/route/recenable</dt>
163 <dd>a toggleable control to record-enable the track</dd>
164 <dt>/route/panwidth</dt>
165 <dd>interpreted by the track/bus panner, should control image "width"</dd>
166 <dt>/route/pandirection</dt>
167 <dd>interpreted by the track/bus panner, should control image "direction"</dd>
168 <dt>/route/plugin/parameter</dt>
169 <dd>the Mth parameter of the Nth plugin of a track/bus
170 </dd>
171 <dt>/route/send/gain</dt>
172 <dd>the gain control ("fader") of the Nth send of a track/bus</dd>
173 </dl>
174 <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>
175 <dl class="wide-table">
176 <dt>a number, eg. "1"
177 </dt>
178 <dd>identifies a track or bus by its remote control ID
179 </dd>
180 <dt>B, followed by a number
181 </dt>
182 <dd>identifies a track or bus by its remote control ID within the current bank (see below for more on banks)
183 </dd>
184 <dt>one or more words
185 </dt>
186 <dd>identifies a track or bus by its name
187 </dd>
188 </dl>
189 <p>
190   For send/insert/plugin controls, the address consists of a track/bus 
191   address (as just described) followed by a number identifying the plugin/send 
192   (starting from 1). For plugin parameters, there is an additional third 
193   component: a number identifying the plugin parameter number (starting from
194   1).
195 </p>
196 <p>
197   One additional feature: for solo and mute bindings, you can also add 
198   <code>momentary="yes"</code> after the control address. This is useful 
199   primarily for NoteOn bindings &mdash; when Ardour gets the NoteOn it 
200   will solo or mute the targetted track or bus, but then when a NoteOff 
201   arrives, it will un-solo or un-mute it.
202 </p>
203
204 <h4>Bindings to Ardour "functions"</h4>
205 <p>
206   Rather than binding to a specific track/bus control, it may be useful to 
207   have a MIDI controller able to alter some part of Ardour's state. A 
208   binding definition that does this looks like this:
209 </p>
210 <code>
211   &lt;Binding channel="1" note="13" function="transport-roll"/&gt;
212 </code>
213 <p>
214   In this case, a NoteOn message for note number 13 (on channel 1) will 
215   start the transport rolling. The following function names are available:
216 </p>
217 <dl class="narrower-table">
218 <dt>
219 <code>transport-stop</code>
220 </dt>
221 <dd>stop the transport
222 </dd>
223 <dt>
224 <code>transport-roll</code>
225 </dt>
226 <dd>start the transport "rolling"
227 </dd>
228 <dt>
229 <code>transport-zero</code>
230 </dt>
231 <dd>move the playhead to the zero position
232 </dd>
233 <dt>
234 <code>transport-start</code>
235 </dt>
236 <dd>move the playhead to the start marker
237 </dd>
238 <dt>
239 <code>transport-end</code>
240 </dt>
241 <dd>move the playhead to the end marker
242 </dd>
243 <dt>
244 <code>loop-toggle</code>
245 </dt>
246 <dd>turn on loop playback
247 </dd>
248 <dt>
249 <code>rec-enable</code>
250 </dt>
251 <dd>enable the global record button
252 </dd>
253 <dt>
254 <code>rec-disable</code>
255 </dt>
256 <dd>disable the global record button
257 </dd>
258 <dt>
259 <code>next-bank</code>
260 </dt>
261 <dd>Move track/bus mapping to the next bank (see Banks below)
262 </dd>
263 <dt>
264 <code>prev-bank</code>
265 </dt>
266 <dd>Move track/bus mapping to the previous bank (see Banks below)
267 </dd>
268 </dl>
269
270 <h4>Binding to Ardour "actions"</h4>
271 <p>
272   You can also bind a sysex or arbitrary message to any of the items
273   that occur in Ardour's main menu (and its submenus).  The best place 
274   to look for the (long) list of how to address each item is in your 
275   keybindings file, which will contain lines that look like this:
276 </p>
277 <code>
278 (gtk_accel_path "&lt;Actions&gt;/Editor/temporal-zoom-in" "equal")
279 </code>
280 <p>
281   To create a binding between an arbitrary MIDI message (we'll use a 
282   note-off on channel 1 of MIDI note 60 (hex) with release velocity 
283   40 (hex)), the binding file would contain:
284 </p>
285 <code>
286    &lt;Binding msg="80 60 40" action="Editor/temporal-zoom-in"/&gt;
287 </code>
288 <p>
289   The general rule, when taken an item from the keybindings file and 
290   using it in a MIDI binding is to simply strip the 
291   <code>&lt;Action&gt;</code> prefix of the second field in the 
292   keybinding definition.
293 </p>
294
295 <h3>Banks and Banking</h3>
296 <p>
297   Because many modern control surfaces offer per-track/bus controls 
298   for far fewer tracks &amp; busses than many users want to control, 
299   Ardour offers the relatively common place concept of <dfn>banks</dfn>. Banks 
300   allow you to control any number of tracks and/or busses easily, 
301   regardless of how many faders/knobs etc. your control surface has.<br /> 
302   To use banking, the control addresses must be specified using the 
303   <dfn>bank relative</dfn> format mentioned above ("B1" to identify 
304   the first track of a bank of tracks, rather than "1" to identify 
305   the first track).
306 </p>
307 <p>
308   One very important extra piece of information is required to use 
309   banking: an extra line near the start of the list of bindings 
310   that specifies how many tracks/busses to use per bank. If the 
311   device has 8 faders, then 8 would be a sensible value to use for 
312   this. The line looks like this:</p>
313 <code>
314    &lt;DeviceInfo bank-size="8"/&gt;
315 </code>
316 <p>
317   In addition, you probably want to ensure that you bind something
318   on the control surface to the <code>next-bank</code> and 
319   <code>prev-bank</code> functions, otherwise you and other users 
320   will have to use the mouse and the GUI to change banks, which 
321   rather defeats the purpose of the bindings.
322 </p>
323 <h2>A Complete (though muddled) Example</h2>
324 <pre>
325 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
326 &lt;ArdourMIDIBindings version="1.0.0" name="pc1600x transport controls"&gt;
327   &lt;DeviceInfo bank-size="16"/&gt;
328   &lt;Binding channel="1" ctl="1"   uri="/route/gain B1"/&gt;
329   &lt;Binding channel="1" ctl="2"   uri="/route/gain B2"/&gt;
330   &lt;Binding channel="1" ctl="3"   uri="/route/send/gain B1 1"/&gt;
331   &lt;Binding channel="1" ctl="4"   uri="/route/plugin/parameter B1 1 1"/&gt;
332   &lt;Binding channel="1" ctl="6"   uri="/bus/gain master"/&gt;
333
334   &lt;Binding channel="1" note="1"  uri="/route/solo B1"/&gt;
335   &lt;Binding channel="1" note="2"  uri="/route/solo B2" momentary="yes"/&gt;
336
337   &lt;Binding channel="1" note="15"  uri="/route/mute B1" momentary="yes"/&gt;
338   &lt;Binding channel="1" note="16"  uri="/route/mute B2" momentary="yes"/&gt;
339
340   &lt;Binding sysex="f0 0 0 e 9 0 5b f7" function="transport-start"/&gt;
341   &lt;Binding sysex="f0 7f 0 6 7 f7" function="rec-disable"/&gt;
342   &lt;Binding sysex="f0 7f 0 6 6 f7" function="rec-enable"/&gt;
343   &lt;Binding sysex="f0 0 0 e 9 0 53 0 0 f7" function="loop-toggle"/&gt;
344
345   &lt;Binding channel="1" note="13" function="transport-roll"/&gt;
346   &lt;Binding channel="1" note="14" function="transport-stop"/&gt;
347   &lt;Binding channel="1" note="12" function="transport-start"/&gt;
348   &lt;Binding channel="1" note="11" function="transport-zero"/&gt;
349   &lt;Binding channel="1" note="10" function="transport-end"/&gt;
350 &lt;/ArdourMIDIBindings&gt;
351 </pre>
352 <p>
353   Please note that channel, controller and note numbers are specified as 
354   decimal numbers in the ranges 1-16, 0-127 and 0-127 respectively 
355   (the channel range may change at some point).
356 </p>
357