diff options
author | wm4 <wm4@nowhere> | 2019-05-28 22:26:36 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2019-09-19 20:37:05 +0200 |
commit | 7d3bdb91da4a74ff22fa34c9b0098c56ea165485 (patch) | |
tree | ebfb894a19c8dcdfaaaacc0b2b6a087dd6ebe176 /DOCS/man | |
parent | a11aad4964234ddb62d00678fdf241ab80983cbe (diff) | |
download | mpv-7d3bdb91da4a74ff22fa34c9b0098c56ea165485.tar.bz2 mpv-7d3bdb91da4a74ff22fa34c9b0098c56ea165485.tar.xz |
manpage: document accidental feature/bug
Clarify existing semantics for the --start/--end/--length options.
De-emphasize the difference between absolute and relative timestamps,
since they've not been different by default since mpv 0.14.
Document a bug, that also happens to work as a feature: if the option
value begins with spaces, the code for checking for relative timestamps
is inactive, and they're always considered absolute. The check is done
on the first character of the string - so even a negative timestamp will
be treated as absolute.)
Yes, this is useful in extremely rare situations, such as when you
really want send a specific timestamp (even a negative one) to the
demuxer.
Diffstat (limited to 'DOCS/man')
-rw-r--r-- | DOCS/man/options.rst | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst index 6da1b58b6c..f0d138ec1c 100644 --- a/DOCS/man/options.rst +++ b/DOCS/man/options.rst @@ -89,10 +89,12 @@ Playback Control ``--start=<relative time>`` Seek to given time position. - The general format for absolute times is ``[[hh:]mm:]ss[.ms]``. If the time - is given with a prefix of ``+`` or ``-``, the seek is relative from the start - or end of the file. (Since mpv 0.14, the start of the file is always - considered 0.) + The general format for times is ``[+|-][[hh:]mm:]ss[.ms]``. If the time is + prefixed with ``-``, the time is considered relative from the end of the + file (as signaled by the demuxer/the file). A ``+`` is usually ignored (but + see below). + + The following alternative time specifications are recognized: ``pp%`` seeks to percent position pp (0-100). @@ -100,9 +102,17 @@ Playback Control ``none`` resets any previously set option (useful for libmpv). + If ``--rebase-start-time=no`` is given, then prefixing times with ``+`` + makes the time relative to the start of the file. A timestamp without + prefix is considered an absolute time, i.e. should seek to a frame with a + timestamp as the file contains it. As a bug, but also a hidden feature, + putting 1 or more spaces before the ``+`` or ``-`` always interprets the + time as absolute, which can be used to seek to negative timestamps (useful + for debugging at most). + .. admonition:: Examples - ``--start=+56``, ``--start=+00:56`` + ``--start=+56``, ``--start=00:56`` Seeks to the start time + 56 seconds. ``--start=-56``, ``--start=-00:56`` Seeks to the end time - 56 seconds. @@ -129,6 +139,10 @@ Playback Control If both ``--end`` and ``--length`` are provided, playback will stop when it reaches either of the two endpoints. + Obscurity note: this does not work correctly if ``--rebase-start-time=no``, + and the specified time is not an "absolute" time, as defined in the + ``--start`` option description. + ``--rebase-start-time=<yes|no>`` Whether to move the file start time to ``00:00:00`` (default: yes). This is less awkward for files which start at a random timestamp, such as |