aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-08-06 18:55:05 +0100
committerRemita Amine <remitamine@gmail.com>2016-08-06 18:55:05 +0100
commitc57244cdb10cac6ff88fd4fa430c98f3909c065a (patch)
treebde7ec60f242a3cb26a60bb66dd79b9348489126
parenta7e5f274123dcfe9afd53134a33f83d53d1e497e (diff)
downloadyoutube-dl-c57244cdb10cac6ff88fd4fa430c98f3909c065a.tar.xz
[common] lower the preference of m3u8 master manifest format
-rw-r--r--youtube_dl/extractor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index 70909fc1c..b54a36996 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -1140,7 +1140,7 @@ class InfoExtractor(object):
'url': m3u8_url,
'ext': ext,
'protocol': 'm3u8',
- 'preference': preference - 1 if preference else -1,
+ 'preference': -100,
'resolution': 'multiple',
'format_note': 'Quality selection URL',
}