2013-02-15 13:21:59 -05:00
|
|
|
|
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
<dfn>Synchronization</dfn> in multimedia involves two concepts which are
|
|
|
|
often confused: <dfn>clock</dfn> (or speed) and <dfn>time</dfn> (location
|
2014-02-18 17:13:02 -05:00
|
|
|
in time).
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2017-03-09 06:39:33 -05:00
|
|
|
A <dfn>clock</dfn> determines the speed at which one or more systems
|
2017-02-25 00:30:29 -05:00
|
|
|
operate. In the audio world this is generally referred to as
|
2017-01-03 12:03:08 -05:00
|
|
|
<a href="https://en.wikipedia.org/wiki/Word_clock" title="https://en.wikipedia.org/wiki/Word_clock">Word Clock</a>.
|
2017-02-25 00:30:29 -05:00
|
|
|
It does not carry any absolute reference to a point in time: A clock is
|
2014-02-18 17:13:02 -05:00
|
|
|
used to keep a system's sample rate regular and accurate.
|
2019-08-04 02:36:55 -04:00
|
|
|
Word clock is usually at the frequency of the sample rate—at 48 kHz,
|
|
|
|
its period is about 20 μs. Word Clock is the most
|
2017-02-25 00:30:29 -05:00
|
|
|
common sample rate based clock but other clocks do exist such as Black and
|
2014-02-18 17:13:02 -05:00
|
|
|
Burst, Tri-Level and DARS. Sample rates can be derived from these clocks as well.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
Time or <dfn>timecode</dfn> specifies an absolute position on a timeline,
|
|
|
|
such as <code>01:02:03:04</code> (expressed as Hours:Mins:Secs:Frames). It is
|
2014-02-18 17:13:02 -05:00
|
|
|
actual <em>data</em> and not a clock <em>signal</em> per se.
|
2017-02-25 00:30:29 -05:00
|
|
|
The granularity of timecode is <dfn>Video Frames</dfn> and is an order of
|
|
|
|
magnitude lower than, say, Word Clock which is counted in
|
2014-02-18 17:13:02 -05:00
|
|
|
<dfn>samples</dfn>. A typical frame rate is 25 <abbr title="frames
|
|
|
|
per second">fps</abbr> with a period of
|
|
|
|
40 ms.
|
2017-02-25 00:30:29 -05:00
|
|
|
In the case of 48 kHz and 25 fps, there are 1920 audio samples
|
2014-02-18 17:13:02 -05:00
|
|
|
per video frame.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2014-02-18 17:13:02 -05:00
|
|
|
The concepts of clock and timecode are reflected in JACK and Ardour:
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2019-08-04 02:36:55 -04:00
|
|
|
JACK (Ardour does this internally if using the ALSA backend) provides
|
|
|
|
clock synchronization and is not concerned with time code
|
2014-02-18 17:13:02 -05:00
|
|
|
(this is not entirely true, more on jack-transport later).
|
2017-02-25 00:30:29 -05:00
|
|
|
On the software side, jackd provides sample-accurate synchronization
|
2014-02-18 17:13:02 -05:00
|
|
|
between all JACK applications.
|
2019-08-04 02:36:55 -04:00
|
|
|
On the hardware side, JACK and Ardour use the clock of the audio-interface.
|
2017-02-25 00:30:29 -05:00
|
|
|
Synchronization of multiple interfaces requires hardware support to sync
|
2014-02-18 17:13:02 -05:00
|
|
|
the clocks.
|
2017-02-25 00:30:29 -05:00
|
|
|
If two interfaces run at different clocks the only way to align the
|
2017-02-13 22:47:33 -05:00
|
|
|
signals is via re-sampling (SRC—Sample Rate Conversion), which is
|
2017-02-14 10:20:06 -05:00
|
|
|
expensive in terms of CPU usage and may decrease fidelity if done
|
2014-02-18 17:13:02 -05:00
|
|
|
incorrectly.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
Timecode is used to align systems already synchronized by a clock to
|
|
|
|
a common point in time, this is application specific and various
|
2014-02-18 17:13:02 -05:00
|
|
|
standards and methods exist to do this.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
|
2014-02-18 17:13:02 -05:00
|
|
|
<p class="note">
|
2017-02-25 00:30:29 -05:00
|
|
|
To make things confusing, there are possibilities to synchronize clocks
|
|
|
|
using timecode. e.g. using mechanism called <dfn>jam-sync</dfn> and a
|
2014-02-18 17:13:02 -05:00
|
|
|
<dfn>phase-locked loop</dfn>.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
|
2013-02-15 18:49:44 -05:00
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
An interesting point to note is that LTC (Linear Time Code) is a
|
|
|
|
Manchester encoded, frequency modulated signal that carries both
|
|
|
|
clock and time. It is possible to extract absolute position data
|
2014-02-18 17:13:02 -05:00
|
|
|
and speed from it.
|
2013-02-15 18:49:44 -05:00
|
|
|
</p>
|
2017-03-14 23:57:34 -04:00
|
|
|
|