youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 2f0f6578c3e4b82a5decc6f906a5f58b7b34c1a9
parent 30cbd4e0d68361a20b036fc90bd53a8fa9a463dd
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon,  2 Mar 2015 22:38:44 +0600

[extractor/common] Assume non HTTP(S) URLs valid

Diffstat:
Myoutube_dl/extractor/common.py | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git 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