Mercurial > mplayer.hg
changeset 14093:3bf74bf969ff
Unify all image encoding examples and fix a typo (*.jpg vs *.png) noticed
by Nicolas Tourmentine.
author | diego |
---|---|
date | Fri, 03 Dec 2004 14:22:04 +0000 |
parents | 5a310666c054 |
children | a0197f7b0784 |
files | DOCS/xml/en/mencoder.xml |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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 @@ <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 @@ <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 @@ 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 @@ 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>