mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 09:40:30 +00:00
[generic] Fix URL concatenation
When the url is something like http://example.org/foo/bar?x=y and the added is file/video.mp4 , we want http://example.org/foo/file/video.mp4 Fixes #1268.
This commit is contained in:
parent
8cf5ee7831
commit
ae3531adf9
@ -166,7 +166,12 @@ def _real_extract(self, url):
|
||||
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
|
||||
up = compat_urllib_parse_urlparse(url)
|
||||
if video_url.startswith('/'):
|
||||
video_url = up.scheme + '://' + up.netloc + video_url
|
||||
else: # relative path
|
||||
video_url = (up.scheme + '://' + up.netloc +
|
||||
up.path.rpartition('/')[0] + '/' + video_url)
|
||||
video_id = os.path.basename(video_url)
|
||||
|
||||
# here's a fun little line of code for you:
|
||||
|
Loading…
Reference in New Issue
Block a user