summaryrefslogtreecommitdiffstats
path: root/DOCS/man
diff options
context:
space:
mode:
authorRicardo Constantino <wiiaboo@gmail.com>2018-02-10 00:06:36 +0000
committerKevin Mitchell <kevmitch@gmail.com>2018-02-11 23:27:37 -0800
commit57228b65810f1026f1ac10a0df86d7434289c345 (patch)
tree0ad244c750621833c4d826b36b910d41bb062d32 /DOCS/man
parent664e8fe66ae8532471c2528e86812122af6a04dd (diff)
downloadmpv-57228b65810f1026f1ac10a0df86d7434289c345.tar.bz2
mpv-57228b65810f1026f1ac10a0df86d7434289c345.tar.xz
ytdl_hook: add script opt for using manifest URLs
Disable by default. This feature was added in 7eb342757, which allowed stream selection in runtime. Problem with this atm is that FFmpeg will try to demux every first packet of every track leading to noticeable delay opening the URL. This option can be changed to enabled by default or removed when HLS/DASH demuxers are improved upstream.
Diffstat (limited to 'DOCS/man')
-rw-r--r--DOCS/man/options.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index 0ffd6c783a..14a901751d 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -560,6 +560,10 @@ Program Behavior
which mpv should not use with youtube-dl. The patterns are matched after
the ``http(s)://`` part of the URL.
+ The `use_manifests` script option makes mpv use the master manifest URL for
+ formats like HLS and DASH, if available, allowing for video/audio selection
+ in runtime. It's disabled ("no") by default for performance reasons.
+
``^`` matches the beginning of the URL, ``$`` matches its end, and you
should use ``%`` before any of the characters ``^$()%|,.[]*+-?`` to match
that character.