Mercurial > mplayer.hg
changeset 12399:9403b245fcda
Obsolet -mf syntax replaced by mf://, based on a patch sent by Compn, bug
fixes and further wording improvements by me.
author | diego |
---|---|
date | Mon, 03 May 2004 00:41:48 +0000 |
parents | 45595c6fbe0a |
children | 903ac68f2bc8 |
files | DOCS/xml/en/mencoder.xml |
diffstat | 1 files changed, 19 insertions(+), 20 deletions(-) [+] |
line wrap: on
line diff
--- a/DOCS/xml/en/mencoder.xml Sun May 02 20:05:44 2004 +0000 +++ b/DOCS/xml/en/mencoder.xml Mon May 03 00:41:48 2004 +0000 @@ -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>