2015-01-01 22:34:58 +01:00
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..utils import ExtractorError
|
|
|
|
|
|
|
|
|
|
|
|
class CommonMistakesIE(InfoExtractor):
|
|
|
|
IE_DESC = False # Do not list
|
2022-08-02 00:10:47 +02:00
|
|
|
_VALID_URL = r'(?:url|URL|yt-dlp)$'
|
2015-01-01 22:34:58 +01:00
|
|
|
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'url',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'URL',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
msg = (
|
2024-06-12 01:09:58 +02:00
|
|
|
f'You\'ve asked yt-dlp to download the URL "{url}". '
|
2015-01-01 22:34:58 +01:00
|
|
|
'That doesn\'t make any sense. '
|
|
|
|
'Simply remove the parameter in your command or configuration.'
|
2024-06-12 01:09:58 +02:00
|
|
|
)
|
2021-05-17 14:23:08 +02:00
|
|
|
if not self.get_param('verbose'):
|
2021-05-14 09:45:29 +02:00
|
|
|
msg += ' Add -v to the command line to see what arguments and configuration yt-dlp has'
|
2015-01-01 22:34:58 +01:00
|
|
|
raise ExtractorError(msg, expected=True)
|
2015-02-10 01:39:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
class UnicodeBOMIE(InfoExtractor):
|
2019-05-10 22:11:53 +02:00
|
|
|
IE_DESC = False
|
|
|
|
_VALID_URL = r'(?P<bom>\ufeff)(?P<id>.*)$'
|
|
|
|
|
2021-12-30 13:23:36 +01:00
|
|
|
_TESTS = [{
|
2019-05-10 22:11:53 +02:00
|
|
|
'url': '\ufeffhttp://www.youtube.com/watch?v=BaW_jenozKc',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
real_url = self._match_id(url)
|
|
|
|
self.report_warning(
|
|
|
|
'Your URL starts with a Byte Order Mark (BOM). '
|
2024-06-12 01:09:58 +02:00
|
|
|
f'Removing the BOM and looking for "{real_url}" ...')
|
2019-05-10 22:11:53 +02:00
|
|
|
return self.url_result(real_url)
|
2024-05-10 19:20:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
class BlobIE(InfoExtractor):
|
|
|
|
IE_DESC = False
|
|
|
|
_VALID_URL = r'blob:'
|
|
|
|
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'blob:https://www.youtube.com/4eb3d090-a761-46e6-8083-c32016a36e3b',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
raise ExtractorError(
|
|
|
|
'You\'ve asked yt-dlp to download a blob URL. '
|
|
|
|
'A blob URL exists only locally in your browser. '
|
|
|
|
'It is not possible for yt-dlp to access it.', expected=True)
|