]> Shamusworld >> Repos - ardour-manual/blob - include/sidechaining.html
Move content from _manual/ to include/.
[ardour-manual] / include / sidechaining.html
1 <p>
2   Dynamic Processors &ndash; such as compressors &ndash; in general use the the original
3   input signal for analysis and operate on the same signal.
4   Side-chaining uses the signal level of <em>another input</em> to control
5   the compression level of the original signal.
6 </p>
7 <p>
8   Effect Processors which have a side-chain input (sometimes also called <em>key input</em>)
9   have an additional input pin to receive a signal from an external input.
10   In Ardour that extra input can be connected in the plugin's <kbd class="menu">Pin Configuration</kbd>
11   dialog: the signal from one track can be tapped off and used as an input to a
12   plugin on a different track. This dialog is
13   accessed via the plugin's context-menu &gt; <kbd class="menu">Pin Connections&hellip;</kbd>.
14 </p>
15 <p>
16   In case a plugin has a dedicated sidechain input, Ardour automatically
17   creates a port for the input. This is a normal I/O port which can be fed by any
18   external signal.
19   The <kbd class="menu">Pin Configuration</kbd> dialog is not limited to
20   processors with a dedicated sidechain input, it also allows to manually create
21   (or remove) a sidechain input port and provides for flexible connection of the
22   signal to plugin pins.
23 </p>
24 <p>
25   The operational flow in the Ardour GUI starts at the processor which is to receive
26   the signal: a sidechain source is selected, and Ardour creates a dedicated send-processor in the
27   source processor box, the level of which can be adjusted either in the Pin Configuration window
28   or directly on the source's send.
29 </p>
30
31 <h2>A simple example: Sidechain compression</h2>
32
33 <p>
34   One example is the use of a bassdrum track to trigger
35   the compression on a bass track. The sidechain compressor (a-Compressor) will be placed on
36   the bass track, and will need to receive the signal from the bassdrum track as
37   a way to trigger the compression.
38 </p>
39
40 <figure>
41   <img src="/images/sc-comp-pin.png" alt="Sidechain compression: Pin configuration">
42   <img src="/images/sc-comp-mixer.png" alt="Sidechain compression: Mixer view">
43   <img src="/images/sc-comp-editor.png" alt="Sidechain compression: Editor view">
44   <figcaption>
45     A sidechain compression: Pin configuration, mixer view and editor view.
46   </figcaption>
47 </figure>
48
49 <p>
50   Here, on the bass track, an <em>a-Compressor</em> has been added, and the
51   Drum track has been set as the sidechain source. The mixer reflects this
52   by showing an <em>SC</em>-send processor in the drum track, very similar to a <a href="/signal-routing/aux-sends/">send</a>
53   The bass track also shows an arrow as one of the a-compressor input.
54 </p>
55 <p>
56   As a result, in the editor, each peak in the kick drum track triggers the compression on the bass track
57   and the resulting track shows the compression kicking in on each kick drum peak, hence
58   reducing the gain. The compression is applied to the bass, but only based on the level of the drum track.
59 </p>
60 <p>
61   This is commonly used for <em>ducking</em> effect, when e.g. a radio speaker's voice triggers the
62   compression on the audio playing.
63 </p>
64
65 <h2>MIDI Sidechaining</h2>
66
67 <p>
68   Ardour allows the sidechain sources to be either audio or MIDI tracks/busses. This is
69   particularly useful when a MIDI signal is used to control an audio effect, like a
70   vocoder or an auto-tuner, like <a href="https://github.com/x42/fat1.lv2">fat1</a>,
71   the LV2 port of Fons Adriaensen's <a href="http://kokkinizita.linuxaudio.org/linuxaudio/zita-at1-doc/quickguide.html">Zita AT1</a>
72   by Robin Gareus:
73 </p>
74
75 <figure>
76   <img src="/images/pin-connection-autotune.png" alt="MIDI Sidechain">
77   <figcaption>
78     MIDI sidechainig example: fat1.lv2.
79   </figcaption>
80 </figure>
81
82 <p>
83   Here, the MIDI track is inputed to the plugin's MIDI IN pin through a sidechain,
84   indicating to the plugin what note should the source audio be corrected to.
85 </p>
86
87 <p class="note">
88   Notice that in the example above, the output of the "Vocals" track is connected
89   to the input of the "Corrected" track. We could have chosen to insert the "Vocals" track
90   content as an audio sidechain too, totally disconnecting the input from the plugin, and
91   connecting the plugin's input pin to the audio sidechain port.
92 </p>
93
94 <h2>Pre-processing the sidechained signal</h2>
95
96 <p>
97   Sometimes, the effects of a sidechain signal on a plugin can be enhanced by
98   pre-processing the signal.
99 </p>
100 <p>
101   In the first example above, if the entire drum part is on one track,
102   then compressing with this signal as a sidechain will result in every peak triggering the compression,
103   be them bass drum kicks or snare, cymbals, etc.
104 </p>
105 <p>
106   In this case, adding an EQ to the drum track with a low pass filter would filter out the peaks
107   created by the high pitched instruments of the drum kit, and allow for a better triggering, though to
108   avoid damaging the original drum track, a send to an intermediary track would be better suited
109   to place the EQ on. This track won't be connected to the Master, as its content is of no musical
110   interest except for it's use as a trigger, allowing for some extreme EQ.
111 </p>
112