[ie] Fix parsing of base URL in SMIL manifest (#9225)

Authored by: seproDev
pull/9223/head
sepro 1 month ago committed by GitHub
parent ed274b60b1
commit 26603d0b34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2451,7 +2451,7 @@ class InfoExtractor:
})
continue
src_url = src if src.startswith('http') else urllib.parse.urljoin(base, src)
src_url = src if src.startswith('http') else urllib.parse.urljoin(f'{base}/', src)
src_url = src_url.strip()
if proto == 'm3u8' or src_ext == 'm3u8':

Loading…
Cancel
Save