diff options
author | wm4 <wm4@nowhere> | 2013-01-31 00:39:45 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-01-31 01:58:58 +0100 |
commit | 6469322c5ac40730990763d13491b3ee822e7a06 (patch) | |
tree | 8e363665fb64cf3c93c097707f30d3240ae82beb | |
parent | fd5637888ac5f6be60d2aac843afe5235930214a (diff) | |
download | mpv-6469322c5ac40730990763d13491b3ee822e7a06.tar.bz2 mpv-6469322c5ac40730990763d13491b3ee822e7a06.tar.xz |
manpage: fixes
Add missing documentation for --quvi-format switch.
Fix description how hw decoding is enabled. The old way currently still
works, but is deprecated.
-rw-r--r-- | DOCS/man/en/options.rst | 10 | ||||
-rw-r--r-- | DOCS/man/en/vo.rst | 4 |
2 files changed, 11 insertions, 3 deletions
diff --git a/DOCS/man/en/options.rst b/DOCS/man/en/options.rst index dbf7a5a2e0..107e3be377 100644 --- a/DOCS/man/en/options.rst +++ b/DOCS/man/en/options.rst @@ -1573,6 +1573,16 @@ Particularly useful on slow terminals or broken ones which do not properly handle carriage return (i.e. \\r). +--quvi-format=<best|default|...> + Video format/quality that is directly passed to libquvi (default: ``best``). + This is used when opening links to streaming sites like YouTube. The + interpretation of this value is highly specific to the streaming site and + the video. The only well defined values that work on all sites are ``best`` + (best quality/highest bandwidth, default), and ``default`` (lowest quality). + + The quvi command line tool can be used to find out which formats are + supported for a given URL: ``quvi --query-formats URL``. + --radio=<option1:option2:...> These options set various parameters of the radio capture module. For listening to radio with mpv use ``radio://<frequency>`` (if channels diff --git a/DOCS/man/en/vo.rst b/DOCS/man/en/vo.rst index b87f982632..e15436a061 100644 --- a/DOCS/man/en/vo.rst +++ b/DOCS/man/en/vo.rst @@ -62,9 +62,7 @@ x11 (X11 only) vdpau (X11 only) Uses the VDPAU interface to display and optionally also decode video. - Hardware decoding is used with ``--vc=ffmpeg12vdpau``, - ``--vc=ffwmv3vdpau``, ``--vc=ffvc1vdpau``, ``--vc=ffh264vdpau`` or - ``--vc=ffodivxvdpau``. + Hardware decoding is used with ``--hwdec=vdpau``. sharpen=<-1-1> For positive values, apply a sharpening algorithm to the video, for |