annotate DOCS/xml/en/edl.xml @ 11483:462b97f8746f

move section out of <link> tags
author wight
date Sun, 16 Nov 2003 19:55:53 +0000
parents 49b1a67e7381
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
1 <?xml version="1.0" encoding="iso-8859-1"?>
10913
49b1a67e7381 Add revision keyword to english xml files, to ease translation synchronization
lumag
parents: 9948
diff changeset
2 <!-- $Revision$ -->
9948
ad081e771ada patch by Albeu + update of matrox_tvout url
nicolas
parents: 9675
diff changeset
3 <sect1 id="edl" xreflabel="Edit Decision Lists (EDL)">
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
4 <title>Edit Decision Lists (EDL)</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
5
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
6 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
7 The edit decision list (EDL) system allows you to automatically skip
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
8 or mute sections of videos during playback, based on a movie specific
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
9 EDL configuration file.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
10 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
11
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
12 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
13 This is useful for those who may want to watch a film in "family-friendly"
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
14 mode. You can cut out any violence, profanity, Jar-Jar Binks .. from a movie
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
15 according to your own personal preferences. Aside from this, there are other
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
16 uses, like automatically skipping over commercials in video files you watch.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
17 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
18
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
19 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
20 The EDL file format is pretty bare-bones. Once the EDL system has reached a
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
21 certain level of maturity, an XML-based file format will probably be implemented
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
22 (keeping backwards compatibility with previous EDL formats).
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
23 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
24
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
25 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
26 The maximum number of EDL entries for the current incarnation of EDL is 1000.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
27 If you happen to need more, change the <systemitem>#define MAX_EDL_ENTRIES</systemitem>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
28 in the <filename>edl.h</filename> file.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
29 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
30
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
31 <sect2 id="edl_using">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
32 <title>Using an EDL file</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
33 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
34 Include the <option>-edl &lt;filename&gt;</option> flag when you run
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
35 <application>MPlayer</application>, with the name of the EDL file you
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
36 want applied to the video.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
37 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
38 </sect2>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
39
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
40 <sect2 id="edl_making">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
41 <title>Making an EDL file</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
42 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
43 The current EDL file format is:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
44 <programlisting>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
45 [begin second] [end second] [action]
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
46 </programlisting>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
47 Where the seconds are floating-point numbers and the action is either
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
48 <literal>0</literal> for skip or <literal>1</literal> for mute. Example:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
49 <programlisting>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
50 5.3 7.1 0
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
51 15 16.7 1
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
52 420 422 0
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
53 </programlisting>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
54 This will skip from second 5.3 to second 7.1 of the video, then mute at
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
55 15 seconds, unmute at 16.7 seconds and skip from second 420 to second 422
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
56 of the video. These actions will be performed when the playback timer
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
57 reaches the times given in the file.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
58 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
59
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
60 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
61 To create an EDL file to work from, use the <option>-edlout &lt;filename&gt;</option>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
62 flag. During playback, when you want to mark the previous two seconds to skip over,
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
63 hit <keycap>i</keycap>. A corresponding entry will be written to the file for
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
64 that time. You can then go back and fine-tune the generated EDL file.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
65 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
66 </sect2>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
67 </sect1>