summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-02-12 22:41:45 +0100
committerwm4 <wm4@nowhere>2015-02-12 22:41:45 +0100
commitaee0978d50e21d8f114382fdb9c014c029f71a04 (patch)
tree5f53913088d11b7ae76da58f05a7845ed526485e /DOCS
parentc59a4f12db96784b054f28d52eaa33cb7553d630 (diff)
downloadmpv-aee0978d50e21d8f114382fdb9c014c029f71a04.tar.bz2
mpv-aee0978d50e21d8f114382fdb9c014c029f71a04.tar.xz
player: add a --loop=force mode
Requested. See manpage additions. This also makes the magical loop_times constants slightly saner, but shouldn't change the semantics of any existing --loop option values.
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/man/options.rst7
1 files changed, 6 insertions, 1 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index 648eabcf4d..a7ec90b2ff 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -107,12 +107,17 @@ Playback Control
If ``--audio-pitch-correction`` is used, playing with a speed higher than
normal automatically inserts the ``scaletempo`` audio filter.
-``--loop=<N|inf|no>``
+``--loop=<N|inf|force|no>``
Loops playback ``N`` times. A value of ``1`` plays it one time (default),
``2`` two times, etc. ``inf`` means forever. ``no`` is the same as ``1`` and
disables looping. If several files are specified on command line, the
entire playlist is looped.
+ The ``force`` mode is like ``inf``, but does not skip playlist entries
+ which have been marked as failing. This means the player might waste CPU
+ time trying to loop a file that doesn't exist. But it might be useful for
+ playing webradios under very bad network conditions.
+
``--pause``
Start the player in paused state.