# HG changeset patch # User diego # Date 1102083724 0 # Node ID 3bf74bf969fff36dfddd8a7d86156669d7d4ae26 # Parent 5a310666c054bd620d11350768f5730744bd1d41 Unify all image encoding examples and fix a typo (*.jpg vs *.png) noticed by Nicolas Tourmentine. diff -r 5a310666c054 -r 3bf74bf969ff DOCS/xml/en/mencoder.xml --- a/DOCS/xml/en/mencoder.xml Fri Dec 03 14:14:29 2004 +0000 +++ b/DOCS/xml/en/mencoder.xml Fri Dec 03 14:22:04 2004 +0000 @@ -293,7 +293,7 @@ Creating an MPEG-4 file from all the JPEG files in the current directory: -mencoder mf://*.jpg -mf type=jpg:w=800:h=600:fps=25 -ovc lavc -lavcopts vcodec=mpeg4 -oac copy -o output.avi +mencoder mf://*.jpg -mf w=800:h=600:fps=25:type=jpg -ovc lavc -lavcopts vcodec=mpeg4 -oac copy -o output.avi @@ -302,7 +302,7 @@ Creating an MPEG-4 file from some JPEG files in the current directory: -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 +mencoder mf://frame001.jpg,frame002.jpg -mf w=800:h=600:fps=25:type=jpg -ovc lavc -lavcopts vcodec=mpeg4 -oac copy -o output.avi @@ -312,7 +312,7 @@ Creating a Motion JPEG (MJPEG) file from all the JPEG files in the current directory: -mencoder mf://*.jpg -mf type=jpg:w=800:h=600:fps=25 -ovc copy -oac copy -o output.avi +mencoder mf://*.jpg -mf w=800:h=600:fps=25:type=jpg -ovc copy -oac copy -o output.avi @@ -335,7 +335,7 @@ Creating a Motion PNG (MPNG) file from all the PNG files in the current directory: -mencoder mf://*.jpg -mf w=800:h=600:fps=25:type=png -ovc copy -oac copy -o output.avi