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