1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 03:29:32 +00:00

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

This commit is contained in:
Remita Amine 2016-08-07 10:58:11 +01:00
parent a1aadd09a4
commit 37768f9242

View file

@ -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',
}