1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-03-09 12:50:23 -05:00
This commit is contained in:
spookyahell 2025-03-09 23:14:34 +05:30 committed by GitHub
commit 9a7a7b443e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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