]> Shamusworld >> Repos - ardour-manual-diverged/blob - include/on-clock-and-time.html
Move content from _manual/ to include/.
[ardour-manual-diverged] / include / on-clock-and-time.html
1
2 <p>
3   <dfn>Synchronization</dfn> in multimedia involves two concepts which are 
4   often confused: <dfn>clock</dfn> (or speed) and <dfn>time</dfn> (location 
5   in time).
6 </p>
7
8 <p>
9   A <dfn>clock</dfn> determines the speet at which one or more systems 
10   operate. In the audio world this is generally referred to as 
11   <a href="https://en.wikipedia.org/wiki/Word_clock" title="https://en.wikipedia.org/wiki/Word_clock">Word Clock</a>.
12   It does not carry any absolute reference to a point in time: A clock is 
13   used to keep a system's sample rate regular and accurate.
14   Word clock is usually at the frequency of the sample rate &mdash; 
15   at 48&nbsp;kHz, its period is about 20&nbsp;μs. Word Clock is the most 
16   common sample rate based clock but other clocks do exist such as Black and 
17   Burst, Tri-Level and DARS. Sample rates can be derived from these clocks as well.
18 </p>
19
20 <p>
21   Time or <dfn>timecode</dfn> specifies an absolute  position on a timeline, 
22   such as <code>01:02:03:04</code> (expressed as Hours:Mins:Secs:Frames). It is 
23   actual <em>data</em> and not a clock <em>signal</em> per se.
24   The granularity of timecode is <dfn>Video Frames</dfn> and is an order of 
25   magnitude lower than, say, Word Clock which is counted in 
26   <dfn>samples</dfn>. A typical frame rate is 25&nbsp;<abbr title="frames
27   per second">fps</abbr> with a period of
28   40&nbsp;ms.
29   In the case of 48&nbsp;kHz and 25&nbsp;fps, there are 1920 audio samples 
30   per video frame.
31 </p>
32
33 <p>
34   The concepts of clock and timecode are reflected in JACK and Ardour:
35 </p>
36
37 <p>
38   JACK provides clock synchronization and is not concerned with time code 
39   (this is not entirely true, more on jack-transport later).
40   On the software side, jackd provides sample-accurate synchronization 
41   between all JACK applications.
42   On the hardware side, JACK uses the clock of the audio-interface. 
43   Synchronization of multiple interfaces requires hardware support to sync 
44   the clocks.
45   If two interfaces run at different clocks the only way to align the 
46   signals is via re-sampling (SRC - Sample Rate Conversion), which is
47   expensive in terms of CPU usage and may decreases fidelity if done
48   incorrectly.
49 </p>
50
51 <p>
52   Timecode is used to align systems already synchronized by a clock to 
53   a common point in time, this is application specific and various 
54   standards and methods exist to do this.
55 </p>
56
57 <p class="note">
58   To make things confusing, there are possibilities to synchronize clocks 
59   using timecode. e.g. using mechanism called <dfn>jam-sync</dfn> and a 
60   <dfn>phase-locked loop</dfn>.
61 </p>
62
63 <p>
64   An interesting point to note is that LTC (Linear Time Code) is a 
65   Manchester encoded, frequency modulated signal that carries both 
66   clock and time. It is possible to extract absolute position data 
67   and speed from it.
68 </p>
69
70