]> Shamusworld >> Repos - ardour-manual/blob - include/handling-overlapping-notes.html
Updates to Editing Clocks to reflect new display modes
[ardour-manual] / include / handling-overlapping-notes.html
1
2 <p>
3   Every MIDI note consists of two messages, a NoteOn and a NoteOff. Each one
4   has a note number and a channel (also a velocity, but that isn't relevant
5   here). The MIDI standard stresses that it is invalid to send a second NoteOn
6   for the same note number on the same channel before a NoteOff for the first
7   NoteOn. It is more or less impossible to do this with a physical MIDI
8   controller such as a keyboard, but remarkably easy to trigger when editing
9   in a DAW&mdash;simply overlapping two instances of the same note will do it.
10 </p>
11 <p>
12   Ardour offers many options for how to deal with instances where  two instances
13   of the same note overlap. Which one to use is a per-session property and can
14   be modified from <kbd class="menu">Session &gt; Properties &gt; Misc &gt; MIDI
15   Options</kbd>.
16 </p>
17
18 <table class="dl">
19   <tr><th>never allow them</th>
20   <td>Edits that would create note overlaps are not allowed</td></tr>
21   <tr><th>don't do anything in particular</th>
22   <td>Ardour leaves overlapping notes alone&mdash;the behaviour of a MIDI receiver (plugin or hardware) is undefined</td></tr>
23   <tr><th>replace any overlapped existing note</th>
24   <td>When one note is moved to overlap another, remove the one that wasn't being moved</td></tr>
25   <tr><th>shorten the overlapped existing note</th>
26   <td>When one note is moved to overlap another, shorten the one that wasn't moved so that there is no overlap</td></tr>
27   <tr><th>shorten the overlapping new note</th>
28   <td>When one note is moved to overlap another, shorten the one that was moved so that there is no overlap</td></tr>
29   <tr><th>replace both overlapping notes with a single note</th>
30   <td>When one note is moved to overlap another, merge them both to form one (longer) note</td></tr>
31 </table>
32 <p>
33   Changing the option in use will not retroactively make changes&mdash;it will
34   only affect new note overlaps created while the option remains chosen.
35 </p>
36 <p class="warning">
37   Ardour does not check for note overlaps across tracks or even across regions.
38   Dealing with the consequences is up to the user.
39 </p>