]> Shamusworld >> Repos - ardour-manual/blob - include/track-types.html
Minor PDF tweaks: indent the TOC
[ardour-manual] / include / track-types.html
1
2 <p>
3   Ardour offers three <dfn>track types</dfn> depending on the type of
4   data they contain, and differentiates between three <dfn>track modes</dfn>,
5   depending on their recording behaviour.
6 </p>
7
8 <h2>Track types</h2>
9 <p>
10   An Ardour track can be of type <dfn>audio</dfn> or <dfn>MIDI</dfn>,
11   depending on the <dfn>data</dfn> that the track will primarily record
12   and play back. <em>However, either type of track can pass either
13   type of data.</em> Hence, for example, one might have a MIDI track that
14   contains an instrument plugin; such a track would record and play back
15   MIDI data from disk but would produce audio, since the instrument plugin
16   would turn MIDI data into audio data.
17 </p>
18 <p>
19   Nevertheless, when adding tracks to a session, its content is typically
20   known, and Ardour offers three choices:
21 </p>
22 <table class="dl">
23   <tr><th>Audio</th>
24                 <td>An <dfn>Audio Track</dfn> is created with a user-specified number of
25                 inputs. The number of outputs is defined by the master bus channel count
26                 (for details see <a href="@@channel-configuration">Channel Configuration</a>).
27                 This is the type of track to use when planning to work with
28                 existing or newly recorded audio.</td></tr>
29   <tr><th>MIDI</th>
30                 <td>A <dfn>MIDI track</dfn> is created with a single MIDI input, and a
31                 single MIDI output. This is the type of track to use when planning to
32                 record and play back MIDI. There are several methods to enable playback
33                 of a MIDI track: add an instrument plugin to the track, connect the
34                 track to a software synthesizer, or connect it to external MIDI hardware.
35                 <p class="note">
36                         If an instrument plugin is added, the MIDI track outputs audio alongside
37                         MIDI data.
38                 </p></td></tr>
39   <tr><th>Audio/MIDI</th>
40                 <td>There are a few notable plugins that can usefully accept both <dfn>Audio
41                 and MIDI</dfn> data (Reaktor is one, and various "auto-tune" like plugins
42                 are another). It can be tricky to configure this type of track manually,
43                 so Ardour allows to select this type specifically for use with such
44                 plugins. It is <em>not</em> generally the right choice when working normal
45                 MIDI tracks, and a dialog will warn of this.</td></tr>
46   <tr><th>Audio or MIDI Bus</th>
47                 <td>A bus is a pseudo-track where multiple audio tracks can be mixed together
48                 for some common processing before being routed to the Master Bus (which itself
49                 is a bus). A bus doesn't contain any regions or audio/MIDI data, it is fed a
50                 signal by <a href="@@aux-sends">sends</a> from one or multiple other tracks, or
51                 by <a href="@@audiomidi-busses-mixer-strips">connecting tracks outputs</a> to
52                 the bus' input. Busses are often used to apply one effect on multiple tracks,
53                 with the benefits of having the same parameters and less computer processing
54                 required as only one instance of the plugin is used.<br>
55                 Ardour can differentiate Audio busses from MIDI busses, allowing e.g. one
56                 instrument plugin to be used for several MIDI tracks.<br>
57                 A bus output can also be routed to another bus.
58                 </td></tr>
59         <tr><th>VCA</th>
60                 <td>A <abbr title="Voltage-Controlled Amplifier">VCA</abbr> is a way to group
61                 together tracks or busses to enable grouped-control over gain, solo and mute.
62                 Like the Bus, it does not contain regions, but unlike it, it does not contain
63                 effects either. VCAs are commonly used to group together related tracks (e.g. "drums"
64                 or "vocals") to allow controlling the gain of all those tracks at once in the
65                 mix while retaining their relative gain.<br>
66                 VCAs are fed audio by <a href="@@control-masters-mixer-strips">assigning them</a>
67                 to one or more tracks or busses.
68                 </td></tr>
69 </table>
70