mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[ie] Fix parsing of base URL in SMIL manifest (#9225)
Authored by: seproDev
This commit is contained in:
		| @@ -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': | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 sepro
					sepro