2017-03-13 05:47:19 -04:00
|
|
|
<p>
|
|
|
|
Every Region has a fade-in and fade-out. By default, the region fade
|
|
|
|
is very short, and serves to de-click the transitions at the start and
|
2017-10-10 13:09:11 -04:00
|
|
|
end of the region. By adjusting the regions fade length, a more
|
2017-03-13 05:47:19 -04:00
|
|
|
gradual transition can be accomplished.
|
|
|
|
</p>
|
2013-07-18 21:38:31 -04:00
|
|
|
|
|
|
|
<h2>Region Fades</h2>
|
2017-03-13 05:47:19 -04:00
|
|
|
<p>
|
2017-10-10 13:09:11 -04:00
|
|
|
<dfn>Region fades</dfn> are possible at the beginning and end of
|
2017-03-13 05:47:19 -04:00
|
|
|
all audio regions. In object mode, a grip appears at the top left and
|
|
|
|
top right of an audio region when the cursor hovers over it. Placing
|
|
|
|
the cursor over the top of the grip displays the region fade cursor
|
2017-10-10 13:09:11 -04:00
|
|
|
tip. Clicking and dragging the grip left or right in the timeline adjusts the
|
|
|
|
length of the fade.
|
2014-02-18 14:12:28 -05:00
|
|
|
</p>
|
2017-03-13 05:47:19 -04:00
|
|
|
|
2013-07-18 21:38:31 -04:00
|
|
|
<h2>Crossfades</h2>
|
2017-03-13 05:47:19 -04:00
|
|
|
|
|
|
|
<p>
|
2018-02-13 16:42:39 -05:00
|
|
|
<dfn>Crossfades</dfn> refer to the behavior of two audio regions transitioning
|
2017-10-10 13:09:11 -04:00
|
|
|
smoothly (mixing) from one to another on the same
|
|
|
|
track. Historically, this was done by splicing two pieces of analog
|
2017-03-13 05:47:19 -04:00
|
|
|
tape together, and this concept was carried forward into digital
|
|
|
|
editing. Each track is a sequence of sound files (regions). If
|
|
|
|
two regions are butted against each other, there needs to be a method
|
|
|
|
to splice them smoothly together. The crossfade allows one region
|
2017-10-10 13:09:11 -04:00
|
|
|
to fade smoothly out, while the next region fades smoothly in, like two
|
2018-02-13 16:42:39 -05:00
|
|
|
pieces of tape that have been cut at an angle, and overlapped.
|
2014-05-28 17:29:01 -04:00
|
|
|
</p>
|
2017-03-13 05:47:19 -04:00
|
|
|
<p>
|
|
|
|
But Ardour uses a more refined "layered" editing model, and
|
|
|
|
therefore it is possible for multiple regions to be stacked on a single
|
|
|
|
location with arbitrary overlaps between different layers. For
|
2017-10-10 13:09:11 -04:00
|
|
|
this reason, crossfades must be implemented differently. It can't be
|
2018-02-13 16:42:39 -05:00
|
|
|
assumed that a crossfade is an entity that exists between two regions;
|
2017-03-13 05:47:19 -04:00
|
|
|
instead each region must have its own associated crossfades at each
|
|
|
|
end, and the topmost region must always crossfade down to the
|
|
|
|
underlying region(s), if any.
|
2014-05-28 17:29:01 -04:00
|
|
|
</p>
|
2017-03-13 05:47:19 -04:00
|
|
|
<p>
|
|
|
|
Ardour solves this problem by putting a crossfade at the beginning
|
|
|
|
and end of every region. The fades of the bottom-most region are
|
|
|
|
first rendered, and then each region is rendered on top of the one
|
|
|
|
below it, with fades at the end of each region providing a crossfade to
|
|
|
|
the region(s) beneath it.
|
2014-05-28 17:29:01 -04:00
|
|
|
</p>
|
2017-03-13 05:47:19 -04:00
|
|
|
<p>
|
2017-10-10 13:09:11 -04:00
|
|
|
It is important to understand that region fades <em>are</em> crossfades.
|
|
|
|
When one region has another region or multiple regions beneath its fade area,
|
|
|
|
then what will be heard is the topmost region fade-out mirrored as a fade-in
|
|
|
|
on the underlying region(s). The grip for the topmost region will allow
|
2017-03-13 05:47:19 -04:00
|
|
|
changing the length and type of the crossfade into the underlying
|
2017-10-10 13:09:11 -04:00
|
|
|
region(s). In this way complicated series of crossfades can be created, and
|
|
|
|
then another region layered atop the others, and faded into a complicated
|
|
|
|
series.
|
2014-05-28 17:29:01 -04:00
|
|
|
</p>
|
2017-03-13 05:47:19 -04:00
|
|
|
<p>
|
|
|
|
If a region doesn't have any region(s) under it, then the region is
|
2017-10-10 13:09:11 -04:00
|
|
|
crossfaded to silence; for convenience this is called a "fade"
|
2017-03-13 05:47:19 -04:00
|
|
|
rather than a crossfade.
|
2014-05-28 17:29:01 -04:00
|
|
|
</p>
|
2017-03-13 05:47:19 -04:00
|
|
|
|
|
|
|
<h2>Fade Shapes</h2>
|
|
|
|
|
2017-10-10 13:09:11 -04:00
|
|
|
<figure class=right>
|
|
|
|
<img src="/images/crossfade_menu.png">
|
|
|
|
<figcaption class=center>The fade shape context menu.</figcaption>
|
|
|
|
</figure>
|
|
|
|
|
2017-03-13 05:47:19 -04:00
|
|
|
<p>
|
|
|
|
To activate/deactivate or change the shape of a region's fadein or
|
2017-02-14 10:20:06 -05:00
|
|
|
fade-out, the cursor has to be hovered over the region fade grip until the
|
2017-10-10 13:09:11 -04:00
|
|
|
cursor tip indicates region fade editing, then <kbd class="mouse">right</kbd>
|
|
|
|
clicked to bring up a context menu. In the context menu is a list of options
|
2017-02-14 10:20:06 -05:00
|
|
|
for the region fade. <kbd class="menu">Activate/Deactivate</kbd> enables and
|
|
|
|
disables the region fade.
|
2014-05-28 17:29:01 -04:00
|
|
|
</p>
|
2017-03-13 05:47:19 -04:00
|
|
|
<p>
|
|
|
|
Because each fade is also a crossfade, it has an inverse fade shape
|
|
|
|
for the audio beneath the fade. It is important to know how the
|
|
|
|
shapes differ, and which are most suitable for various editing tasks.
|
2014-05-28 17:29:01 -04:00
|
|
|
</p>
|
2017-03-13 05:47:19 -04:00
|
|
|
<p>
|
|
|
|
The different types of fades are:
|
2014-02-18 14:12:28 -05:00
|
|
|
</p>
|
2017-03-14 12:43:24 -04:00
|
|
|
<table class="dl">
|
2017-10-10 13:09:11 -04:00
|
|
|
<tr><th><kbd class="menu">Linear</kbd></th><td>A simple linear coefficient
|
2017-02-14 10:20:06 -05:00
|
|
|
decrease, and its mathematical inverse. A Linear fade starts attenuating
|
|
|
|
quickly, and then cuts off even more abruptly at lower levels. When used as a
|
2017-10-10 13:09:11 -04:00
|
|
|
crossfade, the signals are each -6dB attenuated at the midpoint. This is the
|
|
|
|
correct crossfade to use with highly-correlated signals for a smooth
|
|
|
|
transition.</td></tr>
|
2017-02-14 10:20:06 -05:00
|
|
|
<tr><th><kbd class="menu">Constant Power</kbd></th><td>The constant power
|
2017-10-10 13:09:11 -04:00
|
|
|
curve starts fading slowly and then cuts off abruptly. When used as a
|
2018-02-13 16:42:39 -05:00
|
|
|
crossfade between 2 audio regions, the signals are symmetrically attenuated,
|
2017-10-10 13:09:11 -04:00
|
|
|
and they each reach -3dB at the midpoint. This is the correct crossfade to
|
2017-02-14 10:20:06 -05:00
|
|
|
use when splicing audio in the general (uncorrelated) case.</td></tr>
|
2017-10-10 13:09:11 -04:00
|
|
|
<tr><th><kbd class="menu">Symmetric</kbd></th><td>The Symmetric fade starts
|
|
|
|
slowly, then attenuates significantly before transitioning to a slower
|
|
|
|
fade-out near the end of the fade. When used as a crossfade, the Symmetric
|
2018-02-13 16:42:39 -05:00
|
|
|
curve is not mathematically correct like the Constant Power or Linear curves,
|
2017-10-10 13:09:11 -04:00
|
|
|
but it provides a slower fade-out at low volumes. This is sometimes useful
|
|
|
|
when editing 2 entire music works together so that the transition is more
|
|
|
|
gradual.</td></tr>
|
|
|
|
<tr><th><kbd class="menu">Slow</kbd></th><td>The Slow curve is a modified
|
|
|
|
linear decibel fade. The initial curve starts more gradually so that it has
|
|
|
|
a less abrupt transition near unity. After that, it sounds like a perfectly
|
|
|
|
smooth fader or knob moved to silence. This shape is excellent as a
|
|
|
|
general-purpose fade-out. When used as a crossfade, the inverse fade curve
|
|
|
|
maintains constant power but is therefore non-symmetric; so its use is
|
|
|
|
limited to those cases where the user finds it appropriate.</td></tr>
|
|
|
|
<tr><th><kbd class="menu">Fast</kbd></th><td>The Fast curve is a linear
|
|
|
|
decibel fade; It sounds like a perfectly smooth fader or knob moved to
|
|
|
|
silence. This shape is excellent as a general-purpose fade-in. When used as
|
|
|
|
a crossfade, the inverse fade curve maintains constant power but is
|
|
|
|
therefore non-symmetric; so its use is limited to those cases where the
|
|
|
|
user finds it appropriate.</td></tr>
|
2017-03-14 12:43:24 -04:00
|
|
|
</table>
|
2017-03-13 05:47:19 -04:00
|
|
|
|
|
|
|
<p>
|
2017-10-10 13:09:11 -04:00
|
|
|
Although these fade shapes serve specific purposes, any of the shapes is
|
|
|
|
usable in any situation, so the final decision is mostly an artistic choice.
|
2017-03-13 05:47:19 -04:00
|
|
|
</p>
|
2017-02-13 14:53:37 -05:00
|
|
|
|
2017-03-13 05:47:19 -04:00
|
|
|
<p>
|
|
|
|
These fade curves are developed to provide a range of common uses, and
|
|
|
|
are developed with the least possible amount of changes in the "slope"
|
2017-02-14 10:20:06 -05:00
|
|
|
of the line. This provides artefact-free crossfades. Some
|
2017-03-13 05:47:19 -04:00
|
|
|
DAWs provide complicated fade editors with parametric "spline" controls
|
|
|
|
of the fade curves. While it might be interesting to develop a
|
|
|
|
fade curve with a faster cutoff, the mathematical difference between
|
|
|
|
this and simply shortening the fade is vanishingly small; and the
|
|
|
|
amount of effort to shorten the fade is much easier than messing with a
|
|
|
|
crossfade editor dialog.
|
|
|
|
</p>
|