manual/include/trimming-regions.html

57 lines
2.3 KiB
HTML
Raw Permalink Normal View History

2013-01-29 19:26:36 -05:00
2014-02-18 14:12:28 -05:00
<p>
2017-01-17 03:46:03 -05:00
Changing the <dfn>length</dfn> of a region is a very common editing
operation, often known as <dfn>trimming</dfn>. There are several ways
to accomplish this with Ardour, and some very useful specialized trimming
2014-02-18 14:12:28 -05:00
operations.
</p>
2013-01-29 19:26:36 -05:00
2014-02-18 14:12:28 -05:00
<h2>Drag-Trimming With the Mouse</h2>
2017-03-07 14:05:03 -05:00
<figure class="right">
<img src="/images/trimming-region-before.png" alt="Trimming region - before">
<img src="/images/trimming-region-after.png" alt="Trimming region - after">
<figcaption>
Trimming region - before and after
</figcaption>
</figure>
2014-02-18 14:12:28 -05:00
<p>
2017-03-07 14:05:03 -05:00
In Grab mode, moving the pointer near the beginning or end of the region changes
the cursor to indicate that trimming is possible, and the edge of the region can
then be <kbd class="mouse">Left</kbd>-dragged in both directions.
2014-02-18 14:12:28 -05:00
</p>
<p>
Trimming will obey <a href="@@grid-controls">Snap settings</a>.
2014-02-18 14:12:28 -05:00
</p>
2017-03-07 14:05:03 -05:00
<h2>Other Trimming operations</h2>
2014-02-18 14:12:28 -05:00
<p>
2017-01-17 03:46:03 -05:00
There are several commands for region trimming. Some use the
<a href="@@edit-point-control">edit point</a> to determine where
2017-01-17 03:46:03 -05:00
to trim to. Some are not bound to any keys by default (but could be via the
<a href="@@keyboard-shortcuts">Keybindings Editor</a>).
2014-02-18 14:12:28 -05:00
</p>
<p>
2017-03-07 14:05:03 -05:00
These command are both in the <kbd class="menu">Region &gt; Trim</kbd> main menu
2017-02-14 10:20:06 -05:00
(with a region selected) or in the context menu of a region, <kbd class="menu">
2017-03-07 14:05:03 -05:00
<kbd class="mouse">right</kbd> click on a region &gt; <em>Name_Of_The_Region</em>
&gt; Trim</kbd>
2014-02-18 14:12:28 -05:00
</p>
2017-03-14 12:43:24 -04:00
<table class="dl">
<tr><th><dfn>Trim Start at Edit Point</dfn> (<kbd>j</kbd>)</th>
<td>Trim selected region(s) start to edit point.</td></tr>
<tr><th><dfn>Trim End at Edit Point</dfn> (<kbd>k</kbd>)</th>
<td>Trim selected region(s) end to edit point.</td></tr>
<tr><th><dfn>Trim to Loop/Punch</dfn></th>
<td>Trim selected region(s) beginning and end to the loop/punch boundaries (if it exists).</td></tr>
<tr><th><dfn>Trim to Previous</dfn> (<kbd class="mod1">j</kbd>)</th>
<td>Trim the start of selected region(s) to the end of the previous region.
If the region is too short, it is extended to its maximum to the left.</td></tr>
2017-03-14 12:43:24 -04:00
<tr><th><dfn>Trim to Next</dfn> (<kbd class="mod1">k</kbd>)</th>
<td>Trim the end of selected region(s) to the start of the following region.
If the region is too short, it is extended to its maximum to the right.</td></tr>
2017-03-14 12:43:24 -04:00
</table>
2017-03-14 23:57:34 -04:00