summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/en/options.rst6
-rw-r--r--mpvcore/options.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/DOCS/man/en/options.rst b/DOCS/man/en/options.rst
index 14cb2ace67..767ba93585 100644
--- a/DOCS/man/en/options.rst
+++ b/DOCS/man/en/options.rst
@@ -1927,6 +1927,12 @@
current level. With values below 100 the initial volume (which is 100%)
will be above the maximum, which e.g. the OSD cannot display correctly.
+ Note: the maximum value of ``--volume`` as well as the ``volume`` property
+ is always 100. Likewise, the volume OSD bar always goes from 0 to 100.
+ This means that with ``--softvol-max=200``, ``--volume=100`` means
+ maximum amplification, i.e. amplify by 200%. The default volume will be
+ ``50`` in this case (meaning no amplification).
+
``--speed=<0.01-100>``
Slow down or speed up playback by the factor given as parameter.
diff --git a/mpvcore/options.c b/mpvcore/options.c
index b66556d8bd..253fb364e8 100644
--- a/mpvcore/options.c
+++ b/mpvcore/options.c
@@ -550,7 +550,7 @@ const m_option_t mp_opts[] = {
{"auto", SOFTVOL_AUTO})),
OPT_FLOATRANGE("softvol-max", softvol_max, 0, 10, 10000),
OPT_INTRANGE("volstep", volstep, 0, 0, 100),
- OPT_FLOATRANGE("volume", mixer_init_volume, 0, -1, 10000),
+ OPT_FLOATRANGE("volume", mixer_init_volume, 0, -1, 100),
OPT_CHOICE("mute", mixer_init_mute, M_OPT_OPTIONAL_PARAM,
({"auto", -1},
{"no", 0},