# HG changeset patch # User diego # Date 1083544908 0 # Node ID 9403b245fcdacdeeb39a0947f6bd7304f031c56b # Parent 45595c6fbe0a5a214c3d31fb16d8047e241259f3 Obsolet -mf syntax replaced by mf://, based on a patch sent by Compn, bug fixes and further wording improvements by me. diff -r 45595c6fbe0a -r 9403b245fcda DOCS/xml/en/mencoder.xml --- 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 @@ -Encoding from multiple input image files (JPEGs,PNGs or TGAs) +Encoding from multiple input image files (JPEG, PNG, TGA, SGI) MEncoder is capable of creating movies from one @@ -332,50 +332,49 @@ MEncoder then feeds the decoded image to the - chosen video compressor (DivX4, Xvid, ffmpeg msmpeg4, etc.). + chosen video compressor (DivX4, XviD, FFmpeg msmpeg4, etc.). Examples -The explanation of the option can be found below in -the man page. +The explanation of the option is in the man page. -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: -mencoder -mf on:w=800:h=600:fps=25 -ovc divx4 -o output.avi \*.jpg +mencoder mf://*.jpg -mf type=jpg:w=800:h=600:fps=25 -ovc lavc -lavcopts vcodec=mpeg4 -oac copy -o output.avi + -Creating a DivX4 file from some JPEG files in the current dir: +Creating an MPEG4 file from some JPEG files in the current directory: -mencoder -mf on:w=800:h=600:fps=25 -ovc divx4 -o output.avi frame001.jpg,frame002.jpg +mencoder mf://frame001.jpg,frame002.jpg -mf type=jpg:w=800:h=600:fps=25 -ovc lavc -lavcopts vcodec=mpeg4 -oac copy -o output.avi + Creating a Motion JPEG (MJPEG) file from all the JPEG files in the current -dir: +directory: -mencoder -mf on:w=800:h=600:fps=25 -ovc copy -o output.avi \*.jpg +mencoder mf://*.jpg -mf type=jpg:w=800:h=600:fps=25 -ovc copy -oac copy -o output.avi + -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: -mencoder -mf on:w=800:h=600:fps=25:type=png -ovc raw -o output.avi \*.png +mencoder mf:// -mf w=800:h=600:fps=25:type=png -ovc raw -oac copy -o output.avi + @@ -386,9 +385,9 @@ Creating a Motion PNG (MPNG) file from all the PNG files in the current -dir: +directory: -mencoder -mf on:w=800:h=600:fps=25:type=png -ovc copy -o output.avi \*.png @@ -396,9 +395,9 @@ Creating a Motion TGA (MTGA) file from all the TGA files in the current -dir: +directory: -mencoder -mf on:w=800:h=600:fps=25:type=tga -ovc copy -o output.avi \*.tga