From: remitamine Date: Fri, 12 Feb 2016 16:38:48 +0000 (+0100) Subject: [extractor/common] strip http urls in smil manifest X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=c349456ef60d2f638be808bb023635c63df4107c;p=youtube-dl [extractor/common] strip http urls in smil manifest --- diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 6b40a8323..359bdd299 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -1224,6 +1224,7 @@ class InfoExtractor(object): continue src_url = src if src.startswith('http') else compat_urlparse.urljoin(base, src) + src_url = src_url.strip() if proto == 'm3u8' or src_ext == 'm3u8': m3u8_formats = self._extract_m3u8_formats(