summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-01-31 00:46:52 +0100
committerwm4 <wm4@nowhere>2014-01-31 00:46:52 +0100
commit8ff1a339e9f1443c5809f7a05ed00325271ffb0f (patch)
tree63b9d52c47c68e8bf927e17ab215616ede4440e8
parent36f6e6b82677fb19374995ffb88cf76975ef2b5a (diff)
downloadmpv-8ff1a339e9f1443c5809f7a05ed00325271ffb0f.tar.bz2
mpv-8ff1a339e9f1443c5809f7a05ed00325271ffb0f.tar.xz
quvi: disable subtitle fetching by default
This is slow and unreliable, basically unusable.
-rw-r--r--DOCS/man/en/options.rst10
-rw-r--r--options/options.c2
2 files changed, 7 insertions, 5 deletions
diff --git a/DOCS/man/en/options.rst b/DOCS/man/en/options.rst
index 0a66f325c5..46586e69cf 100644
--- a/DOCS/man/en/options.rst
+++ b/DOCS/man/en/options.rst
@@ -1764,11 +1764,13 @@ OPTIONS
Also see ``--really-quiet`` and ``--msglevel``.
``--quvi-fetch-subtitles=<yes|no>``
- Toggles fetching of subtitles from streaming sites with libquvi.
+ Toggles fetching of subtitles from streaming sites with libquvi. Disabled
+ by default, because it's unreliable and slow. Note that when enabled,
+ subtitles will always be fetched, even if subtitles are explicitly
+ disabled with ``--no-sub`` (because you might want to enable subtitles
+ at runtime).
- Supported in libquvi 0.9.x.
-
- Enabled by default
+ Supported when using libquvi 0.9.x.
``--quvi-format=<best|default|...>``
Video format/quality that is directly passed to libquvi (default: ``best``).
diff --git a/options/options.c b/options/options.c
index b1131f0938..1eaccb8063 100644
--- a/options/options.c
+++ b/options/options.c
@@ -718,7 +718,7 @@ const struct MPOpts mp_default_opts = {
.sub_visibility = 1,
.sub_pos = 100,
.sub_speed = 1.0,
- .quvi_fetch_subtitles = 1,
+ .quvi_fetch_subtitles = 0,
.audio_output_channels = MP_CHMAP_INIT_STEREO,
.audio_output_format = 0, // AF_FORMAT_UNKNOWN
.playback_speed = 1.,