From: Sergey M․ Date: Mon, 2 Mar 2015 16:38:44 +0000 (+0600) Subject: [extractor/common] Assume non HTTP(S) URLs valid X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=2f0f6578c3e4b82a5decc6f906a5f58b7b34c1a9;p=youtube-dl [extractor/common] Assume non HTTP(S) URLs valid --- diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 7977fa8d0..cf39c0c21 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -767,6 +767,10 @@ class InfoExtractor(object): formats) def _is_valid_url(self, url, video_id, item='video'): + url = self._proto_relative_url(url, scheme='http:') + # For now assume non HTTP(S) URLs always valid + if not (url.startswith('http://') or url.startswith('https://')): + return True try: self._request_webpage(url, video_id, 'Checking %s URL' % item) return True