]> Shamusworld >> Repos - ardour-manual/blob - include/region-gain-adjustment.html
Update Lua doc for 7.1
[ardour-manual] / include / region-gain-adjustment.html
1 <p>
2   Ardour allows adjusting region gain by a constant amount as opposed to
3   adjusting gain envelope where it's possible to change it gradually over time.
4   Like everything in Ardour, this is a non-destructive change. The result can be
5   adjusted at any a later time or discarded altogether. Internally, region gain
6   is an inherent property of regions, it can be edited directly in the region
7   properties dialog.
8 </p>
9
10 <figure>
11   <img style="width:50%;" src="/images/region-properties-gain-adjusted.png" alt="Region Properties">
12   <figcaption>
13     Region Properties
14   </figcaption>
15 </figure>
16
17 <p>
18   There are two additional ways to adjust region gain: by boosting or cutting
19   gain with a 1dB step, or by normalizing audio.
20 </p>
21
22 <h2>Boosting and Cutting Gain</h2>
23
24 <p>
25   The quickest way to increase or decrease gain of selected regions without
26   involving the gain envelope is to use <em>Boost Gain</em> and
27   <em>Cut Gain</em> commands respectively.
28 </p>
29
30 <p>
31   These commands can be accessed via the main <em>Region &gt; Gain</em> menu or
32   region's context menu. A much easier way is to use shortcuts:
33   <strong>Alt+6</strong> boosts gain by 1dB, <strong>Alt+7</strong> cuts gain
34   by 1dB.
35 </p>
36
37 <p>
38   When gain is boosted or cut, the region caption in the bottom of the affected
39   region specifies the amount in parentheses. In an example below, gain was cut
40   by 2dB.
41 </p>
42
43 <figure>
44   <img style="width:50%;" src="/images/gain-cut-example.png" alt="Gain cut">
45   <figcaption>
46     Gain cut
47   </figcaption>
48 </figure>
49
50 <h2>Normalizing Audio Regions</h2>
51
52 <p>
53   Audio normalization is a way to bring the amplitude of a signal to a target
54   level by applying the same amount of gain to an entire piece of audio data.
55   Unlike other ways to treat perceived loudness, such as compression,
56   normalization retains the original dynamic range.
57 </p>
58
59 <p>
60   Normalization is a common step in exporting an entire project to an audio
61   file. However, with Ardour, it's also possible to normalize some of the
62   regions. This effectively changes the region gain setting, the same one that
63   the boost/cut gain commands change.
64 </p>
65
66 <p>
67   Region-level normalization in Ardour can be accessed via the <em>Region &gt;
68   Gain &gt; Normalize…</em> menu command
69 </p>
70
71 <figure>
72   <img style="width:50%;" src="/images/normalize-region-settings.png" alt="Normalize Region">
73   <figcaption>
74     Normalize Region
75   </figcaption>
76 </figure>
77
78 <p>
79   The normalization tool locates the part of the audio region that has the
80   largest amplitude and adjusts the whole region so that that part matches the
81   normalization target. In an example below, an audio region was normalized
82   to -3dBFS, which led to -2.5dB gain reduction, and this is the part with the
83   largest amplitude hitting the exact -3dBFS target:
84 </p>
85
86 <figure>
87   <img style="width:50%;" src="/images/peak-normalization-zoomed-in.png" alt="Normalized region, zoomed in">
88   <figcaption>
89     Normalized region, zoomed in
90   </figcaption>
91 </figure>
92
93 <p>
94   It's also possible to apply additional constraints by analyzing perceieved
95   loudness of the material. The first option is to constraint root mean square
96   (RMS) to a certain amplitude value. The second option is to constrain loudness
97   units (LUFS) to a certain value.
98 </p>
99
100 <p>
101   The normalization tool will use the peak amplitude value, but will also
102   correct the calculated gain adjustment when the constraint demands that.
103   In the example below the same region as in example above was normalized to the
104   same peak amplitude of -3dB but with an additional constraint of -21LUFS.
105   The normalization tool took the peak amplitude into account and made sure it
106   wouldn't exceed the target value of -3dBFS, then adjusted the region gain
107   further from -2.5dB to -3.3dB to meet the LUFS constraint demands. This
108   resulted in the peak amplitude hitting -4.2dBFS rather than the target -3dBFS.
109 </p>
110
111 <figure>
112   <img style="width:50%;" src="/images/peak-normalization-with-lufs-zoomed-in.png" alt="Normalization with LUFS constraint, zoomed in">
113   <figcaption>
114     Normalization with LUFS constraint, zoomed in
115   </figcaption>
116 </figure>
117
118 <h2>Resetting Gain</h2>
119
120 <p>
121   To reset gain correction for a region entirely you can either set it to
122   <tt>0</tt> in the region properties dialog or use the
123   <em>Region &gt; Gain &gt; Reset Gain</em> menu command.
124 </p>