diff options
author | wm4 <wm4@nowhere> | 2014-02-19 16:16:42 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-02-19 16:16:42 +0100 |
commit | 844efa54313b395750d139abcea9425e9f4ee6f9 (patch) | |
tree | ea89e27e6fa1f6a61b979793abeee1b35edccf1e /DOCS | |
parent | 15fa1202229b149cc52448535f7fcd0e7f6aba08 (diff) | |
download | mpv-844efa54313b395750d139abcea9425e9f4ee6f9.tar.bz2 mpv-844efa54313b395750d139abcea9425e9f4ee6f9.tar.xz |
command: move metadata entry access to metadata/by-key/
The old way still works, and is fine to use. Still discourage it,
because it might conflict with other ways to access this property, such
as the one added in the next commit.
Diffstat (limited to 'DOCS')
-rw-r--r-- | DOCS/man/en/input.rst | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/DOCS/man/en/input.rst b/DOCS/man/en/input.rst index c23685848d..4077d22e83 100644 --- a/DOCS/man/en/input.rst +++ b/DOCS/man/en/input.rst @@ -649,8 +649,14 @@ an option at runtime. key and value strings separated by ``,``. (If a key or value contains ``,``, you're screwed.) -``metadata/<key>`` - Value of metadata entry ``<key>``. + This has a number of sub-properties: + + ``metadata/by-key/<key>`` + Value of metadata entry ``<key>``. + + ``metadata/<key>`` + Old version of ``metadata/by-key/<key>``. Use is discouraged, because + the metadata key string could conflict with other sub-properties. ``chapter-metadata`` Metadata of current chapter. Works similar to ``metadata`` property. This |