mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
parent
fec41d17a5
commit
da27aeea5c
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ def _real_extract(self, url):
|
|||
platform_tag_video, featureset_video = next(
|
||||
((platform_tag, featureset)
|
||||
for platform_tag, featuresets in reversed(list(variants.items())) for featureset in featuresets
|
||||
if try_get(featureset, lambda x: x[:2]) == ['hls', 'aes']),
|
||||
if set(try_get(featureset, lambda x: x[:2]) or []) == {'aes', 'hls'}),
|
||||
(None, None))
|
||||
if not platform_tag_video or not featureset_video:
|
||||
raise ExtractorError('No downloads available', expected=True, video_id=video_id)
|
||||
|
|
Loading…
Reference in a new issue