mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-12 10:11:07 +01:00
[generic] If the url doesn't specify the protocol, then try to extract prepending 'http://'
This commit is contained in:
parent
a490fda746
commit
a7130543fa
@ -109,6 +109,11 @@ def http_error_405(self, req, fp, code, msg, headers):
|
|||||||
return new_url
|
return new_url
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
parsed_url = compat_urlparse.urlparse(url)
|
||||||
|
if not parsed_url.scheme:
|
||||||
|
self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http')
|
||||||
|
return self.url_result('http://' + url)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
new_url = self._test_redirect(url)
|
new_url = self._test_redirect(url)
|
||||||
if new_url:
|
if new_url:
|
||||||
|
Loading…
Reference in New Issue
Block a user