]> Shamusworld >> Repos - ardour-manual/blob - include/midi-tracer.html
Documenting the MIDI tracer
[ardour-manual] / include / midi-tracer.html
1
2 <figure>
3   <img src="/images/midi-tracer.png" alt="The MIDI Tracer window">
4   <figcaption>
5     The MIDI Tracer window
6   </figcaption>
7 </figure>
8
9 <p>
10   The <dfn>MIDI Tracer</dfn> is similar to the <a href="@@midi-list-editor">MIDI
11   List Editor</a>, in the way that it displays MIDI information as a tabular text
12   view, and has a vertical flow, i.e. the events follow a top to bottom time
13   order.
14 </p>
15 <p>
16   Its use is different though, as it is <em>not</em> bound to a specific region or track:
17   the MIDI that is monitored is any global input or output Ardour presents to the
18   system. It is hence a very useful option to monitor a MIDI port, be it an external
19   controller/device or the in/output of any track.
20 </p>
21 <p>
22   It is accessed by selecting the <kbd class="menu">Window &gt; MIDI Tracer</kbd>
23   menu.
24 </p>
25 <p>
26   The window is made of:
27 </p>
28 <dl>
29   <dt><dfn>Port</dfn></dt><dd>a list of all the MIDI ports Ardour presents to the system. They
30     are both internal and external and are the same ports Ardour presents to JACK, if
31     enabled.</dd>
32   <dt>the events list</dt><dd>where all the events for this port are listed, see below</dd>
33   <dt><dfn>Line history</dfn></dt><dd>how many lines should be kept in the events list</dd>
34   <dt><dfn>Delta times</dfn></dt><dd>if checked, shows the times as the duration since the last event, instead of the <a href="@@on-clock-and-time">absolute time</a></dd>
35   <dt><dfn>Decimal</dfn></dt><dd>if checked, shows the MIDI data as decimal values instead of the original hexadecimal values</dd>
36   <dt><dfn>Enabled</dfn></dt><dd>if checked, the events are displayed in the events list, otherwise stops the logging</dd>
37   <dt><dfn>Auto-Scroll</dfn></dt><dd>if checked, the events list scrolls as new events are logged, allowing to keep the newest events on screen</dd>
38 </dl>
39
40 <p>
41   The events list displays the events as columns:
42 </p>
43 <dl>
44   <dt>time of the event</dt><dd>either absolute or relative, based on the <kbd class="option">Delta times</kbd> checkbox</dd>
45   <dt>MIDI status (event type)</dt><dd>what midi events happened (e.g. Note On, Note Off, Pitch Bend, &hellip;)</dd>
46   <dt>MIDI channel</dt><dd>in which MIDI channel did the event happen</dd>
47   <dt>MIDI data bytes (event parameters)</dt><dd>parameters of the event, e.g. for a Note On: what <a gref="@@midi-notes-ref">note</a> was it, and which was the note's velocity</dd>
48 </dl>
49
50 <p class="note">
51   Note: The MIDI Tracer can lists all kind of MIDI events, "audio" ones, but also <a href="@@midi-scene-automation">scene automation</a> or <a href="@@timecode-generators-and-slaves">timecodes</a> ones.
52 </p>