[generic] add support for relative URLs (Fixes #1308)
authorPhilipp Hagemeister <phihag@phihag.de>
Sat, 24 Aug 2013 20:56:37 +0000 (22:56 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Sat, 24 Aug 2013 20:56:37 +0000 (22:56 +0200)
youtube_dl/extractor/generic.py

index ccbbdd255588f5085b7c85cddc86863d8eeeabe3..8488dca05293f2779619ae59a7b4e17f1c856290 100644 (file)
@@ -165,6 +165,8 @@ class GenericIE(InfoExtractor):
         video_url = compat_urllib_parse.unquote(mobj.group(1))
         if video_url.startswith('//'):
             video_url = compat_urllib_parse_urlparse(url).scheme + ':' + video_url
+        if '://' not in video_url:
+            video_url = url + ('' if url.endswith('/') else '/') + video_url
         video_id = os.path.basename(video_url)
 
         # here's a fun little line of code for you: