summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorTsukasa OMOTO <henry0312@gmail.com>2014-06-30 02:44:32 +0900
committerwm4 <wm4@nowhere>2014-06-29 20:39:49 +0200
commit1aef780b6cd7743df7e21cfb7dc45ad5f99e0825 (patch)
treec47f0ffdee6c8fc0857155946dc8b25082f5c125 /DOCS
parenta73415584c9dbf920ec14d26d0b0629cae81b3d5 (diff)
downloadmpv-1aef780b6cd7743df7e21cfb7dc45ad5f99e0825.tar.bz2
mpv-1aef780b6cd7743df7e21cfb7dc45ad5f99e0825.tar.xz
options: support setting start time relative to start PTS
Signed-off-by: wm4 <wm4@nowhere>
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/man/options.rst9
1 files changed, 6 insertions, 3 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index eacb3fbde9..7dfc4bf884 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -2133,7 +2133,8 @@ OPTIONS
Seek to given time position.
The general format for absolute times is ``[[hh:]mm:]ss[.ms]``. If the time
- is negated with ``-``, the seek is relative from the end of the file.
+ is given with a prefix of ``+`` or ``-``, the seek is relative from the start
+ or end of the file.
``pp%`` seeks to percent position pp (0-100).
@@ -2141,8 +2142,10 @@ OPTIONS
.. admonition:: Examples
- ``--start=56``
- Seeks to 56 seconds.
+ ``--start=+56``, ``--start=+00:56``
+ Seeks to the start time + 56 seconds.
+ ``--start=-56``, ``--start=-00:56``
+ Seeks to the end time - 56 seconds.
``--start=01:10:00``
Seeks to 1 hour 10 min.
``--start=50%``