summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorMohammad AlSaleh <CE.Mohammad.AlSaleh@gmail.com>2020-09-09 17:48:45 +0300
committerwm4 <1387750+wm4@users.noreply.github.com>2020-09-17 10:34:57 +0200
commitb959a2229176a98ba83c196ad32cad538520c3aa (patch)
tree5bdff0892b3d3971eb73b44ec8b67584ae2b682a /DOCS
parent49f5c9b4820b082b8d25b753ff010562939a754f (diff)
downloadmpv-b959a2229176a98ba83c196ad32cad538520c3aa.tar.bz2
mpv-b959a2229176a98ba83c196ad32cad538520c3aa.tar.xz
stream_slice: interpret `end` as offset if it starts with '+'
Example: slice://1g-2g@file.ts (1 to 2) slice://1g-+2g@file.ts (1 to 3) Signed-off-by: Mohammad AlSaleh <CE.Mohammad.AlSaleh@gmail.com>
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/man/mpv.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/DOCS/man/mpv.rst b/DOCS/man/mpv.rst
index 09c3e24ea6..7b1c48c4a2 100644
--- a/DOCS/man/mpv.rst
+++ b/DOCS/man/mpv.rst
@@ -1208,6 +1208,8 @@ PROTOCOLS
``start`` and ``end`` represent a byte range and accept
suffixes such as ``KiB`` and ``MiB``. ``end`` is optional.
+ if ``end`` starts with ``+``, it is considered as offset from ``start``.
+
Only works with seekable streams.
Examples::
@@ -1217,6 +1219,11 @@ PROTOCOLS
This starts reading from cap.ts after seeking 1 GiB, then
reads until reaching 2 GiB or end of file.
+ mpv slice://1g-+2g@cap.ts
+
+ This starts reading from cap.ts after seeking 1 GiB, then
+ reads until reaching 3 GiB or end of file.
+
mpv slice://100m@appending://cap.ts
This starts reading from cap.ts after seeking 100MiB, then