youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 37768f92422c2cf61a961dbaf54d61dabd364506
parent a1aadd09a4721ffd4d782aae4ddeae2699ca17fa
Author: Remita Amine <remitamine@gmail.com>
Date:   Sun,  7 Aug 2016 10:58:11 +0100

[common] correctly lower the preference of m3u8 master manifest format

Diffstat:
Myoutube_dl/extractor/common.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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': -100, + 'preference': preference - 100 if preference else -100, 'resolution': 'multiple', 'format_note': 'Quality selection URL', }