youtube-dl

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

commit 9585f890f8c0eff70eb874c7962dc30baea1049c
parent 0838239e8e454c55903f3d69560cf53e25ce69f4
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sat, 24 Aug 2013 22:56:37 +0200

[generic] add support for relative URLs (Fixes #1308)

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

diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py @@ -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: