]> Shamusworld >> Repos - ardour-manual/blob - _manual/15_editing-and-arranging/12_editing-midi/06_handling-overlapping-notes.html
Revert "update s/editing/edit/ -midi (fixes 85e48bfa)"
[ardour-manual] / _manual / 15_editing-and-arranging / 12_editing-midi / 06_handling-overlapping-notes.html
1 ---
2 layout: default
3 title: Handling Overlapping Notes
4 ---                        
5
6
7   
8   
9 <p>Every MIDI note consists of two messages, a NoteOn and a NoteOff message. Each one has a note number and a channel (also a velocity, but that isn't relevant here). The MIDI standard stresses that it is invalid to send a second NoteOn for the same note number on the same channel before a NoteOff for the first NoteOn. It is more or less impossible to do this with a physical MIDI controller such as a keyboard, but remarkably easy to trigger when editing in a DAW - simply overlapping two instances of the same note will do it.</p>
10 <p>Ardour offers many options for how to deal with instances where you overlap two instances of the same note. Which one to use is a per-session property and can be modified from <code>Session &gt; Properties &gt; Misc &gt; MIDI Options</code></p>
11 <dl class="wide-table">
12 <dt>never allow them</dt>
13 <dd>Edits that would create note overlaps are not allowed</dd>
14 <dt>don't do anything in particular</dt>
15 <dd>Ardour leaves overlapping notes alone - the behaviour of a MIDI receiver (plugin or hardware) is undefined</dd>
16 <dt>replace any overlapped existing note</dt>
17 <dd>When one note is moved to overlap another, remove the one that wasn't being moved</dd>
18 <dt>shorten the overlapped existing note</dt>
19 <dd>When one note is moved to overlap another, shorten the one that wasn't moved so that there is no overlap</dd>
20 <dt>shorten the overlapping new note</dt>
21 <dd>When one note is moved to overlap another, shorten the one that was moved so that there is no overlap</dd>
22 <dt>replace both overlapping notes with a single note</dt>
23 <dd>When one note is moved to overlap another, merge them both to form one (longer) note</dd>
24 </dl>
25 <p>Changing the option in use will <strong>not</strong> retroactively make changes - it will only affect new note overlaps created while the option remains chosen.</p>
26 <blockquote><p>Ardour does not check for note overlaps across tracks or even across regions. If you create these, it is your responsibility to deal with the consequences.
27 </p></blockquote>
28