summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorrik <rik@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-12-21 21:40:40 +0000
committerrik <rik@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-12-21 21:40:40 +0000
commitc7b410047064ba84a50a9487549b085cea45b0ab (patch)
treeb739e546e13371f66908a316cdcbcce7ebf1b104 /DOCS
parentf31be8f817fea62aa3cf3fc0c036c27fd2ed6438 (diff)
downloadmpv-c7b410047064ba84a50a9487549b085cea45b0ab.tar.bz2
mpv-c7b410047064ba84a50a9487549b085cea45b0ab.tar.xz
zrmjpeg options and two examples, per Diego's request
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11668 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/man/en/mplayer.133
1 files changed, 33 insertions, 0 deletions
diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1
index 6e26e1a7fd..b781a50a89 100644
--- a/DOCS/man/en/mplayer.1
+++ b/DOCS/man/en/mplayer.1
@@ -3261,6 +3261,33 @@ set to -1, a green rectangle is drawn on the screen to simplify finding
the right x,y,w,h parameters.
.RE
.PD 1
+.TP
+.B zrmjpeg[=options]
+Software YV12 to MJPEG encoder for use with the zr2 video
+output device.
+Multiple options can be specified separated by ':'.
+.RSs
+.IPs maxheight=h|maxwidth=w
+These options set the maximum width and height the zr card
+can handle. (the MPlayer filter layer currently can't query those)
+.IPs {dc10+,dc10,buz,lml33}-{PAL|NTSC}
+Use these options to set maxwidth and maxheight automatically to the
+values known for card/mode combo. For example, valid options are:
+dc10-PAL and buz-NTSC. The default is dc10+PAL.
+.IPs color|bw
+Select color or black and white encoding. Black and white encoding is
+faster. Color is the default.
+.IPs hdec={1,2,4}
+Horizontal decimation 1, 2 or 4.
+.IPs vdec={1,2,4}
+Vertical decimation 1, 2 or 4.
+.IPs quality=1-20
+Set JPEG compression quality [BEST] 1 - 20 [VERY BAD]
+.IPs fd|nofd
+By default, decimation is only performed if the zoran hardware
+can upscale the resulting MJPEG images to the original size. The option
+fd instructs the filter to always perform the requested decimation (ugly).
+.RE
.
.
.SH "GENERAL ENCODING OPTIONS (MENCODER ONLY)"
@@ -4736,6 +4763,12 @@ mplayer /dev/zero \-rawvideo on:pal:fps=xx \-vc null \-vo null \-noframedrop
mplayer tv:// \-tv driver=v4l:width=640:height=480:outfmt=i420 \-vc rawi420
\-vo xv
.TP
+.B Playback on zoran card (old style, depreciated)
+mplayer -vo zr -vf scale=352:288 file.avi
+.TP
+.B Playback on zoran card (new style)
+mplayer -vo zr2 -vf scale=352:288,zrmjpeg file.avi
+.TP
.B Encoding DVD title #2, only selected chapters
mencoder dvd://2 \-chapter 10-15 \-o title2.avi \-oac copy \-ovc divx4
.TP