summaryrefslogtreecommitdiffstats
path: root/DOCS/xml
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-03 14:22:04 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-03 14:22:04 +0000
commitf8f5f378c22eb6ba1cf81503b14bb5a5fe179969 (patch)
treeb62f3baa0fa9b6f1d1cd3928793c28c5f4e4438c /DOCS/xml
parentd8f4d25d0b8cbc5e4d9a6b2c1a5ee22442faff88 (diff)
downloadmpv-f8f5f378c22eb6ba1cf81503b14bb5a5fe179969.tar.bz2
mpv-f8f5f378c22eb6ba1cf81503b14bb5a5fe179969.tar.xz
Unify all image encoding examples and fix a typo (*.jpg vs *.png) noticed
by Nicolas Tourmentine. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14094 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS/xml')
-rw-r--r--DOCS/xml/en/mencoder.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/DOCS/xml/en/mencoder.xml b/DOCS/xml/en/mencoder.xml
index cfd5d0ffa4..2ecec04d5a 100644
--- a/DOCS/xml/en/mencoder.xml
+++ b/DOCS/xml/en/mencoder.xml
@@ -293,7 +293,7 @@ The explanation of the <option>-mf</option> option is in the man page.
<para>
Creating an MPEG-4 file from all the JPEG files in the current directory:
<screen>
-mencoder mf://*.jpg -mf type=jpg:w=800:h=600:fps=25 -ovc lavc -lavcopts vcodec=mpeg4 -oac copy -o <replaceable>output.avi</replaceable>
+mencoder mf://*.jpg -mf w=800:h=600:fps=25:type=jpg -ovc lavc -lavcopts vcodec=mpeg4 -oac copy -o <replaceable>output.avi</replaceable>
</screen>
</para>
</informalexample>
@@ -302,7 +302,7 @@ mencoder mf://*.jpg -mf type=jpg:w=800:h=600:fps=25 -ovc lavc -lavcopts vcodec=m
<para>
Creating an MPEG-4 file from some JPEG files in the current directory:
<screen>
-mencoder mf://<replaceable>frame001.jpg,frame002.jpg</replaceable> -mf type=jpg:w=800:h=600:fps=25 -ovc lavc -lavcopts vcodec=mpeg4 -oac copy -o <replaceable>output.avi</replaceable>
+mencoder mf://<replaceable>frame001.jpg,frame002.jpg</replaceable> -mf w=800:h=600:fps=25:type=jpg -ovc lavc -lavcopts vcodec=mpeg4 -oac copy -o <replaceable>output.avi</replaceable>
</screen>
</para>
</informalexample>
@@ -312,7 +312,7 @@ mencoder mf://<replaceable>frame001.jpg,frame002.jpg</replaceable> -mf type=jpg:
Creating a Motion JPEG (MJPEG) file from all the JPEG files in the current
directory:
<screen>
-mencoder mf://*.jpg -mf type=jpg:w=800:h=600:fps=25 -ovc copy -oac copy -o <replaceable>output.avi</replaceable>
+mencoder mf://*.jpg -mf w=800:h=600:fps=25:type=jpg -ovc copy -oac copy -o <replaceable>output.avi</replaceable>
</screen>
</para>
</informalexample>
@@ -335,7 +335,7 @@ Width must be integer multiple of 4, it's a limitation of the RAW RGB AVI format
Creating a Motion PNG (MPNG) file from all the PNG files in the current
directory:
<screen>
-mencoder mf://*.jpg -mf w=800:h=600:fps=25:type=png -ovc copy -oac copy -o <replaceable>output.avi</replaceable> <!--
+mencoder mf://*.png -mf w=800:h=600:fps=25:type=png -ovc copy -oac copy -o <replaceable>output.avi</replaceable> <!--
--></screen>
</para>
</informalexample>