[MPlayer-DOCS] CVS: main/DOCS/xml/en documentation.xml, 1.7, 1.8 features.xml, 1.2, 1.3 usage.xml, 1.16, 1.17 edl.xml, 1.3, NONE
Diego Biurrun CVS
diego at mplayerhq.hu
Wed Jan 14 20:56:39 CET 2004
Update of /cvsroot/mplayer/main/DOCS/xml/en
In directory mail:/scsi/2/tmp/cvs-serv27006
Modified Files:
documentation.xml features.xml usage.xml
Removed Files:
edl.xml
Log Message:
EDL section moved into usage.
Index: documentation.xml
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/en/documentation.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- documentation.xml 30 Nov 2003 13:07:40 -0000 1.7
+++ documentation.xml 14 Jan 2004 19:56:36 -0000 1.8
@@ -8,7 +8,6 @@
<!ENTITY bugs.xml SYSTEM "bugs.xml">
<!ENTITY cd-dvd.xml SYSTEM "cd-dvd.xml">
<!ENTITY codecs.xml SYSTEM "codecs.xml">
-<!ENTITY edl.xml SYSTEM "edl.xml">
<!ENTITY faq.xml SYSTEM "faq.xml">
<!ENTITY features.xml SYSTEM "features.xml">
<!ENTITY formats.xml SYSTEM "formats.xml">
Index: features.xml
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/en/features.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- features.xml 21 Sep 2003 13:05:42 -0000 1.2
+++ features.xml 14 Jan 2004 19:56:36 -0000 1.3
@@ -13,6 +13,5 @@
</sect1>
&tvinput.xml;
-&edl.xml;
</chapter>
Index: usage.xml
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/en/usage.xml,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- usage.xml 3 Jan 2004 17:20:46 -0000 1.16
+++ usage.xml 14 Jan 2004 19:56:36 -0000 1.17
@@ -485,4 +485,72 @@
</sect2>
</sect1>
+
+<sect1 id="edl" xreflabel="Edit Decision Lists (EDL)">
+<title>Edit Decision Lists (EDL)</title>
+
+<para>
+The edit decision list (EDL) system allows you to automatically skip
+or mute sections of videos during playback, based on a movie specific
+EDL configuration file.
+</para>
+
+<para>
+This is useful for those who may want to watch a film in "family-friendly"
+mode. You can cut out any violence, profanity, Jar-Jar Binks .. from a movie
+according to your own personal preferences. Aside from this, there are other
+uses, like automatically skipping over commercials in video files you watch.
+</para>
+
+<para>
+The EDL file format is pretty bare-bones. Once the EDL system has reached a
+certain level of maturity, an XML-based file format will probably be implemented
+(keeping backwards compatibility with previous EDL formats).
+</para>
+
+<para>
+The maximum number of EDL entries for the current incarnation of EDL is 1000.
+If you happen to need more, change the <systemitem>#define MAX_EDL_ENTRIES</systemitem>
+in the <filename>edl.h</filename> file.
+</para>
+
+<sect2 id="edl_using">
+<title>Using an EDL file</title>
+<para>
+Include the <option>-edl <filename></option> flag when you run
+<application>MPlayer</application>, with the name of the EDL file you
+want applied to the video.
+</para>
+</sect2>
+
+<sect2 id="edl_making">
+<title>Making an EDL file</title>
+<para>
+The current EDL file format is:
+<programlisting>
+[begin second] [end second] [action]
+</programlisting>
+Where the seconds are floating-point numbers and the action is either
+<literal>0</literal> for skip or <literal>1</literal> for mute. Example:
+<programlisting>
+5.3 7.1 0
+15 16.7 1
+420 422 0
+</programlisting>
+This will skip from second 5.3 to second 7.1 of the video, then mute at
+15 seconds, unmute at 16.7 seconds and skip from second 420 to second 422
+of the video. These actions will be performed when the playback timer
+reaches the times given in the file.
+</para>
+
+<para>
+To create an EDL file to work from, use the <option>-edlout <filename></option>
+flag. During playback, when you want to mark the previous two seconds to skip over,
+hit <keycap>i</keycap>. A corresponding entry will be written to the file for
+that time. You can then go back and fine-tune the generated EDL file.
+</para>
+</sect2>
+
+</sect1>
+
</chapter>
--- edl.xml DELETED ---
More information about the MPlayer-DOCS
mailing list