[MPlayer-DOCS] CVS: main/DOCS/xml/en mencoder.xml,1.19,1.20

Diego Biurrun CVS syncmail at mplayerhq.hu
Mon May 3 02:41:50 CEST 2004


CVS change done by Diego Biurrun CVS

Update of /cvsroot/mplayer/main/DOCS/xml/en
In directory mail:/var2/tmp/cvs-serv14201/en

Modified Files:
	mencoder.xml 
Log Message:
Obsolet -mf syntax replaced by mf://, based on a patch sent by Compn, bug
fixes and further wording improvements by me.


Index: mencoder.xml
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/en/mencoder.xml,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- mencoder.xml	2 Feb 2004 22:07:28 -0000	1.19
+++ mencoder.xml	3 May 2004 00:41:48 -0000	1.20
@@ -315,7 +315,7 @@
 
 
 <sect1 id="menc-feat-enc-images">
-<title>Encoding from multiple input image files (JPEGs,PNGs or TGAs)</title>
+<title>Encoding from multiple input image files (JPEG, PNG, TGA, SGI)</title>
 
 <para>
 <application>MEncoder</application> is capable of creating movies from one
@@ -332,50 +332,49 @@
   </para></listitem>
 <listitem><para>
   <application>MEncoder</application> then feeds the decoded image to the
-  chosen video compressor (DivX4, Xvid, ffmpeg msmpeg4, etc.).
+  chosen video compressor (DivX4, XviD, FFmpeg msmpeg4, etc.).
   </para></listitem>
 </orderedlist>
 
 <formalpara>
 <title>Examples</title>
 <para>
-The explanation of the <option>-mf</option> option can be found below in
-the man page.
+The explanation of the <option>-mf</option> option is in the man page.
 
 <informalexample>
 <para>
-Creating a DivX4 file from all the JPEG files in the current dir:
+Creating an MPEG4 file from all the JPEG files in the current directory:
 <screen>
-mencoder -mf on:w=800:h=600:fps=25 -ovc divx4 -o <replaceable>output.avi</replaceable> \*.jpg<!--
---></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>
+</screen>
 </para>
 </informalexample>
 
 <informalexample>
 <para>
-Creating a DivX4 file from some JPEG files in the current dir:
+Creating an MPEG4 file from some JPEG files in the current directory:
 <screen>
-mencoder -mf on:w=800:h=600:fps=25 -ovc divx4 -o <replaceable>output.avi</replaceable> <replaceable>frame001.jpg,frame002.jpg</replaceable> <!--
---></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>
+</screen>
 </para>
 </informalexample>
 
 <informalexample>
 <para>
 Creating a Motion JPEG (MJPEG) file from all the JPEG files in the current
-dir:
+directory:
 <screen>
-mencoder -mf on:w=800:h=600:fps=25 -ovc copy -o <replaceable>output.avi</replaceable> \*.jpg<!--
---></screen>
+mencoder mf://*.jpg -mf type=jpg:w=800:h=600:fps=25 -ovc copy -oac copy -o <replaceable>output.avi</replaceable>
+</screen>
 </para>
 </informalexample>
 
 <informalexample>
 <para>
-Creating an uncompressed file from all the PNG files in the current dir:
+Creating an uncompressed file from all the PNG files in the current directory:
 <screen>
-mencoder -mf on:w=800:h=600:fps=25:type=png -ovc raw -o <replaceable>output.avi</replaceable> \*.png<!--
---></screen>
+mencoder mf:// -mf w=800:h=600:fps=25:type=png -ovc raw -oac copy -o <replaceable>output.avi</replaceable>
+</screen>
 </para>
 </informalexample>
 
@@ -386,9 +385,9 @@
 <informalexample>
 <para>
 Creating a Motion PNG (MPNG) file from all the PNG files in the current
-dir:
+directory:
 <screen>
-mencoder -mf on:w=800:h=600:fps=25:type=png -ovc copy -o <replaceable>output.avi</replaceable> \*.png<!--
+mencoder mf://*.jpg -mf w=800:h=600:fps=25:type=png -ovc copy -oac copy -o <replaceable>output.avi</replaceable> <!--
 --></screen>
 </para>
 </informalexample>
@@ -396,9 +395,9 @@
 <informalexample>
 <para>
 Creating a Motion TGA (MTGA) file from all the TGA files in the current
-dir:
+directory:
 <screen>
-mencoder -mf on:w=800:h=600:fps=25:type=tga -ovc copy -o <replaceable>output.avi</replaceable> \*.tga<!--
+mencoder mf://*.tga -mf w=800:h=600:fps=25:type=tga -ovc copy -oac copy -o <replaceable>output.avi</replaceable><!--
 --></screen>
 </para>
 </informalexample>




More information about the MPlayer-DOCS mailing list