]> Shamusworld >> Repos - ardour-manual/blob - include/video-timeline-setup.html
771930d88d1b11c2bb789d1117e2b634a9c42513
[ardour-manual] / include / video-timeline-setup.html
1
2 <p>
3   No configuration is required if everything is to meant be run on a single
4   machine, and the version of Ardour comes from <a href="http://www.ardour.org"
5   title="http://www.ardour.org">http://www.ardour.org</a>. Everything is
6   pre-configured and included with the download/install.
7 </p>
8
9 <h2>Single Machine</h2>
10
11 <p>
12   If Ardour is compiled from source, or installed from a 3rd party
13   repository, three additional tools will need to be installed manually, which are
14   used by Ardour to provide video features:
15 </p>
16
17 <ul>
18   <li>xjadeo (the video monitor application): <a
19     href="http://xjadeo.sourceforge.net/" title="http://xjadeo.sourceforge.net/"
20     rel="nofollow">http://xjadeo.sf.net</a></li>
21   <li>harvid (a video decoder used for the thumbnail timeline):
22     <a href="http://x42.github.io/harvid/" title="http://x42.github.io/harvid/"
23     rel="nofollow">http://x42.github.com/harvid/</a></li>
24   <li>ffmpeg, ffprobe (used to import/export video, extract soundtracks and query
25     video information and encode mp3 for export): <a
26     href="http://ffmpeg.org" title="http://ffmpeg.org"
27     rel="nofollow">http://ffmpeg.org</a></li>
28 </ul>
29
30 <p>
31   Ardour requires xjadeo &ge; version 0.6.4, harvid &ge; version 0.7.0 and
32   ffmpeg (known to work versions: 1.2, 2.8.2)
33 </p>
34
35 <p>
36   The Ardour development team is in control of the first two applications.
37   ffmpeg however can be a bit of a problem. To avoid conflicts with distribution
38   packages, Ardour looks for <code>ffmpeg_harvid</code> and
39   <code>ffprobe_harvid</code>.
40 </p>
41
42 <p>
43   All four applications need to be found in <code>$PATH</code> (e.g.
44   <code>$HOME/bin</code> or <code>/usr/local/bin</code>). For convenience the
45   binary releases of harvid include ffmpeg_harvid and ffprobe_harvid, but if the
46   distribution provides suitable ffmpeg commands, symbolic links can be created
47   to the distribution-provided binaries:
48 </p>
49
50 <kbd class="cmd lin">sudo ln -s /usr/bin/ffmpeg /usr/bin/ffmpeg_harvid</kbd>
51 <kbd class="cmd lin">sudo ln -s /usr/bin/ffprobe /usr/bin/ffprobe_harvid</kbd>
52
53 <p>
54   Binary releases are available from ardour.org as well as an installer script:
55   <a href="https://github.com/Ardour/ardour/blob/master/tools/videotimeline/install_video_tools.sh"
56   title="https://github.com/Ardour/ardour/blob/master/tools/videotimeline/install_video_tools.sh"
57   rel="nofollow">install_video_tools.sh</a>.
58 </p>
59
60 <p>
61   The easiest way to install the video-utilities is by running the following
62   line in a terminal:
63 </p>
64
65 <kbd class="cmd lin">sh -c &quot;$(curl -s -L http://git.io/tVUCkw)&quot;</kbd>
66
67 <h2>Studio Setup</h2>
68
69 <p>
70   As Setting up a proper A/V post-production studio can be a complicated task, it
71   is advised to read the info in the previous section to get familiar with
72   the tools involved first. As much as the Ardour team streamlines and simplifies
73   the <em>single machine</em> setup, the <dfn>studio setup</dfn> is focused on
74   modularity.
75 </p>
76
77 <ul class="fixme">
78   <li>TODO:</li>
79   <li>Synchronization ardour &rarr; video-display-box should be accomplished by
80     external means. Jack-transport(netjack), MTC, LTC
81     (<abbr title="Open Sound Control&mdash;&quot;postmodern MIDI&quot;">OSC</abbr>
82     and/or ssh-pipe work but introduce additional latency + jitter)</li>
83   <li>Ardour launches <code>XJREMOTE</code> (environment variable, default
84     &#039;xjremote&#039; which comes with xjadeo).</li>
85   <li>Either use a custom shell script that ssh&#039;es into the remote box and
86     launches/controls xjadeo there, selects the sync-source and passes though
87     communication between ardour &iff; xjadeo via ssh (xjadeo is launched stopped with
88     the session).</li>
89   <li>&hellip;or override xjremote&#039;s behavior&mdash;instead of IPC with a local
90     running xjadeo-process, using <abbr title="Open Sound
91     Control&mdash;&quot;postmodern MIDI&quot;">OSC</abbr> for example. Xjadeo would
92     run permanently and Ardour will just tell it to load files and set offsets via
93     <acronym title="Open Sound Control&mdash;&quot;postmodern
94     MIDI&quot;">OSC</acronym>. See <a
95     href="http://xjadeo.git.sourceforge.net/git/gitweb.cgi?p=xjadeo/xjadeo;a=blob_plain;f=contrib/xjremote-osc"
96     title="http://xjadeo.git.sourceforge.net/git/gitweb.cgi?p=xjadeo/xjadeo;a=blob_plain;f=contrib/xjremote-osc"
97     rel="nofollow">xjremote-osc</a> example script.</li>
98   <li>If the video server runs remotely, Ardour needs to be configured in Ardour &gt;
99     Preference &gt; Video (hostname of the video-server).</li>
100   <li>Ideally the machines have a common shared folder (NFS or similar).
101     Ardour&#039;s import (audio-extract) and export (mux) functionality depends on
102     having access to the video file. Also Ardour's video-import transcodes the file
103     into a suitable proxy-format that allows reliable seeking to any
104     frame&hellip;</li>
105 </ul>