diff options
author | wm4 <wm4@nowhere> | 2016-03-01 21:46:49 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2016-03-01 21:46:57 +0100 |
commit | 33774e18ed4c49857c042870099e3e3dd6fe614d (patch) | |
tree | d19275a23ca9ea6551a52bca99d62b0d9493edd5 /DOCS | |
parent | af66fa8fa5d8e46b26a08a2b241f03d46abb3c2b (diff) | |
download | mpv-33774e18ed4c49857c042870099e3e3dd6fe614d.tar.bz2 mpv-33774e18ed4c49857c042870099e3e3dd6fe614d.tar.xz |
command: add encoder-list property
Also change decoder-list (for the sake of sharing the underlying code
for both properties).
Diffstat (limited to 'DOCS')
-rw-r--r-- | DOCS/man/input.rst | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/DOCS/man/input.rst b/DOCS/man/input.rst index 6dcf7a83e4..0cdb611583 100644 --- a/DOCS/man/input.rst +++ b/DOCS/man/input.rst @@ -1999,7 +1999,7 @@ Property list Canonical codec name, which identifies the format the decoder can handle. - ``decoder`` + ``driver`` The name of the decoder itself. Often, this is the same as ``codec``. Sometimes it can be different. It is used to distinguish multiple decoders for the same codec. @@ -2017,9 +2017,14 @@ Property list MPV_FORMAT_NODE_MAP (for each decoder entry) "family" MPV_FORMAT_STRING "codec" MPV_FORMAT_STRING - "decoder" MPV_FORMAT_STRING + "driver" MPV_FORMAT_STRING "description" MPV_FORMAT_STRING +``encoder-list`` + List of libavcodec encoders. This has the same format as ``decoder-list``. + The encoder names (``driver`` entries) can be passed to ``--ovc`` and + ``--oac`` (without the ``lavc:`` prefix required by ``--vd`` and ``--ad``). + ``mpv-version`` Return the mpv version/copyright string. Depending on how the binary was built, it might contain either a release version, or just a git hash. |