summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxPMo <GammaFunction@vivaldi.net>2020-02-19 08:31:53 +0000
committerwm4 <1387750+wm4@users.noreply.github.com>2020-02-19 14:37:14 +0100
commit238acbad8464dc2a0fffdb518383103db18e7fc8 (patch)
tree140afa6e9a13219214c15219ed3a9da06be8beec
parent0df0a847f40ff64457cb3e44082ac08591738507 (diff)
downloadmpv-238acbad8464dc2a0fffdb518383103db18e7fc8.tar.bz2
mpv-238acbad8464dc2a0fffdb518383103db18e7fc8.tar.xz
manpage: deprecated options in examples
example config and default term-status-msg
-rw-r--r--DOCS/man/mpv.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/DOCS/man/mpv.rst b/DOCS/man/mpv.rst
index d019f15c6a..7fb5dea6ff 100644
--- a/DOCS/man/mpv.rst
+++ b/DOCS/man/mpv.rst
@@ -602,7 +602,7 @@ setting them to *no*. Even suboptions can be specified in this way.
# Use GPU-accelerated video output by default.
vo=gpu
# Use quotes for text that can contain spaces:
- status-msg="Time: ${time-pos}"
+ term-status-msg="Time: ${time-pos}"
Escaping spaces and special characters
--------------------------------------
@@ -786,7 +786,7 @@ listed.
- ``AV:`` or ``V:`` (video only) or ``A:`` (audio only)
- The current time position in ``HH:MM:SS`` format (``playback-time`` property)
-- The total file duration (absent if unknown) (``length`` property)
+- The total file duration (absent if unknown) (``duration`` property)
- Playback speed, e.g. `` x2.0``. Only visible if the speed is not normal. This
is the user-requested speed, and not the actual speed (usually they should
be the same, unless playback is too slow). (``speed`` property.)
@@ -812,11 +812,11 @@ listed.
- Dropped frames, e.g. ``Dropped: 4``. Shows up only if the count is not 0. Can
grow if the video framerate is higher than that of the display, or if video
rendering is too slow. May also be incremented on "hiccups" and when the video
- frame couldn't be displayed on time. (``vo-drop-frame-count`` property.)
+ frame couldn't be displayed on time. (``frame-drop-count`` property.)
If the decoder drops frames, the number of decoder-dropped frames is appended
to the display as well, e.g.: ``Dropped: 4/34``. This happens only if
decoder frame dropping is enabled with the ``--framedrop`` options.
- (``drop-frame-count`` property.)
+ (``decoder-frame-drop-count`` property.)
- Cache state, e.g. ``Cache: 2s/134KB``. Visible if the stream cache is enabled.
The first value shows the amount of video buffered in the demuxer in seconds,
the second value shows the estimated size of the buffered amount in kilobytes.