Skip to content

Commit

Permalink
[ie/commonmistakes] Raise error on blob URLs (#9897)
Browse files Browse the repository at this point in the history
Authored by: seproDev
  • Loading branch information
seproDev committed May 10, 2024
1 parent 00a9f2e commit 98d71d8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
6 changes: 5 additions & 1 deletion yt_dlp/extractor/_extractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,11 @@
ComedyCentralIE,
ComedyCentralTVIE,
)
from .commonmistakes import CommonMistakesIE, UnicodeBOMIE
from .commonmistakes import (
BlobIE,
CommonMistakesIE,
UnicodeBOMIE,
)
from .commonprotocols import (
MmsIE,
RtmpIE,
Expand Down
16 changes: 16 additions & 0 deletions yt_dlp/extractor/commonmistakes.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,19 @@ def _real_extract(self, url):
'Your URL starts with a Byte Order Mark (BOM). '
'Removing the BOM and looking for "%s" ...' % real_url)
return self.url_result(real_url)


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)

0 comments on commit 98d71d8

Please sign in to comment.