summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-01-14 19:56:36 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-01-14 19:56:36 +0000
commit3c9c977663f6c20025b2b9fb54e0de839b013dbf (patch)
tree85c8d80d42a5d804b10e56b89acbf42f31bfb846 /DOCS
parent52e7eee8118d709fbbd1ec59f29108b96c0938bb (diff)
downloadmpv-3c9c977663f6c20025b2b9fb54e0de839b013dbf.tar.bz2
mpv-3c9c977663f6c20025b2b9fb54e0de839b013dbf.tar.xz
EDL section moved into usage.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11787 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/xml/en/documentation.xml1
-rw-r--r--DOCS/xml/en/edl.xml67
-rw-r--r--DOCS/xml/en/features.xml1
-rw-r--r--DOCS/xml/en/usage.xml68
4 files changed, 68 insertions, 69 deletions
diff --git a/DOCS/xml/en/documentation.xml b/DOCS/xml/en/documentation.xml
index a340237554..f63e5cc3ba 100644
--- a/DOCS/xml/en/documentation.xml
+++ b/DOCS/xml/en/documentation.xml
@@ -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">
diff --git a/DOCS/xml/en/edl.xml b/DOCS/xml/en/edl.xml
deleted file mode 100644
index ba2086d999..0000000000
--- a/DOCS/xml/en/edl.xml
+++ /dev/null
@@ -1,67 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision$ -->
-<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 &lt;filename&gt;</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 &lt;filename&gt;</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> \ No newline at end of file
diff --git a/DOCS/xml/en/features.xml b/DOCS/xml/en/features.xml
index 50612458d2..38138912ed 100644
--- a/DOCS/xml/en/features.xml
+++ b/DOCS/xml/en/features.xml
@@ -13,6 +13,5 @@
</sect1>
&tvinput.xml;
-&edl.xml;
</chapter>
diff --git a/DOCS/xml/en/usage.xml b/DOCS/xml/en/usage.xml
index ec004a23b1..92a65b186a 100644
--- a/DOCS/xml/en/usage.xml
+++ b/DOCS/xml/en/usage.xml
@@ -485,4 +485,72 @@ some (good) patch to make it better or start writing your own server.
</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 &lt;filename&gt;</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 &lt;filename&gt;</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>