]> Shamusworld >> Repos - ardour-manual/blob - include/working-with-regions.html
Ruler/Markers rewrite, part 1 of N
[ardour-manual] / include / working-with-regions.html
1
2 <h2>Working With Regions</h2>
3
4 <p>
5   <dfn>Regions</dfn> are the basic elements of editing and composing in
6   Ardour. In most cases, a region represents a single contiguous section of one or
7   more media files. Regions are defined by a fixed set of attributes:
8 </p>
9
10 <ul>
11   <li>the audio or <abbr title="Musical Instrument Digital Interface">MIDI</abbr>
12     <dfn>source file(s)</dfn> they represent,</li>
13   <li>an <dfn>offset</dfn> (the "start point") in the audio or MIDI file(s), and</li>
14   <li>a <dfn>length</dfn>.</li>
15 </ul>
16
17 <p>
18   When placed into a playlist, they gain additional attributes:
19 </p>
20
21 <ul>
22   <li>a <dfn>position</dfn> along the timeline, and</li>
23   <li>a <dfn>layer</dfn>.</li>
24 </ul>
25
26 <p>
27   There are other attributes as well, but they do not <em>define</em> the
28   region. Things to know about regions:
29 </p>
30
31 <h3>Regions Are Cheap</h3>
32
33 <p>
34   By themselves, regions consume very little in terms of computer's resources.
35   Each region requires a small amount of memory, and represents a rather small
36   amount of CPU work if placed into an active track. So, multiplying regions creation
37   whenever needed should not be much of an issue CPU wise.
38 </p>
39
40 <h3>Regions Are Not Files</h3>
41
42 <p>
43   Although a region can represent an entire audio file, they are never
44   equivalent to an audio file. Most regions represent just parts of an audio
45   file(s) on disk, and removing a region from a track has nothing to do with
46   removing the audio file(s) from the disk (the <kbd class="menu">Destroy</kbd>
47   operation, one of Ardour's few destructive operations, can affect this).
48   Changing the length of a region has no effect on the audio file(s) on disk.
49   Splitting and copying regions does not alter the audio file in any way, nor does
50   it create new audio files (only <dfn>recording</dfn>, and the <kbd
51   class="menu">Export</kbd>, <kbd class="menu">Bounce</kbd> and <kbd
52   class="menu">Reverse</kbd> operations create new audio files).
53 </p>
54