mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 15:33:16 +00:00
[extractor/common] Fix preference for m3u8 quality selection URL
This commit is contained in:
parent
c010af6f19
commit
9fe6ef7ab2
|
@ -833,7 +833,7 @@ def _extract_m3u8_formats(self, m3u8_url, video_id, ext=None,
|
||||||
'url': m3u8_url,
|
'url': m3u8_url,
|
||||||
'ext': ext,
|
'ext': ext,
|
||||||
'protocol': 'm3u8',
|
'protocol': 'm3u8',
|
||||||
'preference': -1,
|
'preference': preference - 1 if preference else -1,
|
||||||
'resolution': 'multiple',
|
'resolution': 'multiple',
|
||||||
'format_note': 'Quality selection URL',
|
'format_note': 'Quality selection URL',
|
||||||
}]
|
}]
|
||||||
|
|
Loading…
Reference in a new issue