2017

Table Of Contents
Example 1: One Track
0 1 2 3 4 5 6 7
Clip [=====+=====+=====+=====+=====[
Track 0 [=====+=====+=====+=====+=====[
Feed v0 [=====+=====+=====+=====+=====[
This first example of an Open Clip contains a single video track. This one track contains one <feed> for
which there is only a single referenced media file. This is the simplest Open Clip you can create.
<?xml version="1.0"?>
<clip type="clip" version="4">
<tracks>
<track uid="t0">
<trackType>video</trackType>
<feeds>
<feed vuid="v0" uid="f0">
<spans>
<span>
<path encoding="file">Media/Video1.mov</path>
</span>
</spans>
</feed>
</feeds>
</track>
</tracks>
</clip>
Remarks:
Only a subset of the XML schema is used. You do not need more than this to create an Open Clip.
Since the referenced file in the
<span> (page 1424) is a streaming media, the path encoding is set to "file".
The clip starts at frame 1: it uses the timing defined by the media in the
<span> (page 1424). There is no
need to specify any timecode or duration: information not explicitly set in an Open Clip is inferred from
the media. In this case, the timecode is inferred from the .mov file header. As for the duration of the
clip, it is inferred from the media duration.
Example 2: Two Tracks (Video + Audio)
0 1 2 3 4 5
Clip [=====+=====+=====+=====+=====[
Track 0 [=====+=====+=====+=====+=====[
Feed v0 [=====+=====+=====+=====+=====[
Track 1 [=====+=====+=====+=====+=====[
Feed a0 [=====+=====+=====+=====+=====[
Track 2 [=====+=====+=====+=====+=====[
Feed a1 [=====+=====+=====+=====+=====[
This second example illustrates a 2-track Open Clip, with one video and two audio tracks.
<?xml version="1.0"?>
<clip type="clip" version="4">
<tracks>
<track uid="t0">
<trackType>video</trackType>
<feeds>
<feed vuid="v0" uid="f0">
1408 | Chapter 29 Open Clip Description