mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 15:33:16 +00:00
[extractor/common] Test URLs with GET
This commit is contained in:
parent
7010577720
commit
4069766c52
|
@ -753,9 +753,7 @@ def _check_formats(self, formats, video_id):
|
||||||
|
|
||||||
def _is_valid_url(self, url, video_id, item='video'):
|
def _is_valid_url(self, url, video_id, item='video'):
|
||||||
try:
|
try:
|
||||||
self._request_webpage(
|
self._request_webpage(url, video_id, 'Checking %s URL' % item)
|
||||||
HEADRequest(url), video_id,
|
|
||||||
'Checking %s URL' % item)
|
|
||||||
return True
|
return True
|
||||||
except ExtractorError as e:
|
except ExtractorError as e:
|
||||||
if isinstance(e.cause, compat_HTTPError):
|
if isinstance(e.cause, compat_HTTPError):
|
||||||
|
|
Loading…
Reference in a new issue