mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 09:57:59 +09:00
[generic] add support for relative URLs (Fixes #1308)
This commit is contained in:
parent
0838239e8e
commit
9585f890f8
@ -165,6 +165,8 @@ class GenericIE(InfoExtractor):
|
|||||||
video_url = compat_urllib_parse.unquote(mobj.group(1))
|
video_url = compat_urllib_parse.unquote(mobj.group(1))
|
||||||
if video_url.startswith('//'):
|
if video_url.startswith('//'):
|
||||||
video_url = compat_urllib_parse_urlparse(url).scheme + ':' + video_url
|
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)
|
video_id = os.path.basename(video_url)
|
||||||
|
|
||||||
# here's a fun little line of code for you:
|
# here's a fun little line of code for you:
|
||||||
|
Loading…
Reference in New Issue
Block a user