pull/6548/merge
spookyahell 1 week ago committed by GitHub
commit 1d186a5972
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -56,6 +56,7 @@ class WDRIE(InfoExtractor):
formats = []
subtitles = {}
seen_manifest_urls = set()
# check if the metadata contains a direct URL to a file
for kind, media in media_resource.items():
@ -76,6 +77,10 @@ class WDRIE(InfoExtractor):
if tag_name not in ('videoURL', 'audioURL'):
continue
if medium_url in seen_manifest_urls:
continue
seen_manifest_urls.add(medium_url)
ext = determine_ext(medium_url)
if ext == 'm3u8':
formats.extend(self._extract_m3u8_formats(

Loading…
Cancel
Save