mirror of https://github.com/yt-dlp/yt-dlp.git
[limelight] Obey `allow_unplayable_formats`
This commit is contained in:
parent
6a04a74e8b
commit
b982cbdd0e
|
@ -160,7 +160,10 @@ class LimelightBaseIE(InfoExtractor):
|
||||||
for mobile_url in mobile_item.get('mobileUrls', []):
|
for mobile_url in mobile_item.get('mobileUrls', []):
|
||||||
media_url = mobile_url.get('mobileUrl')
|
media_url = mobile_url.get('mobileUrl')
|
||||||
format_id = mobile_url.get('targetMediaPlatform')
|
format_id = mobile_url.get('targetMediaPlatform')
|
||||||
if not media_url or format_id in ('Widevine', 'SmoothStreaming') or media_url in urls:
|
if not media_url or media_url in urls:
|
||||||
|
continue
|
||||||
|
if (format_id in ('Widevine', 'SmoothStreaming')
|
||||||
|
and not self._downloader.params.get('allow_unplayable_formats', False)):
|
||||||
continue
|
continue
|
||||||
urls.append(media_url)
|
urls.append(media_url)
|
||||||
ext = determine_ext(media_url)
|
ext = determine_ext(media_url)
|
||||||
|
|
Loading…
Reference in New Issue