From: Sergey M․ Date: Thu, 1 Oct 2015 16:54:54 +0000 (+0600) Subject: [extractor/common] Check validity of direct URLs X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=c78e48177c72baa0c985c4d47f95e6edc6ec33dc;p=youtube-dl [extractor/common] Check validity of direct URLs --- diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index b86d06523..b928e24be 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -1145,7 +1145,7 @@ class InfoExtractor(object): formats.extend(self._extract_f4m_formats(f4m_url, video_id, f4m_id='hds')) continue - if src_url.startswith('http'): + if src_url.startswith('http') and self._is_valid_url(src, video_id): http_count += 1 formats.append({ 'url': src_url,