diff options
Diffstat (limited to 'yt_dlp/extractor/unsupported.py')
-rw-r--r-- | yt_dlp/extractor/unsupported.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/yt_dlp/extractor/unsupported.py b/yt_dlp/extractor/unsupported.py index 8b7ec1dd9..e8d6ae128 100644 --- a/yt_dlp/extractor/unsupported.py +++ b/yt_dlp/extractor/unsupported.py @@ -50,6 +50,7 @@ class KnownDRMIE(UnsupportedInfoExtractor): r'music\.amazon\.(?:\w{2}\.)?\w+', r'(?:watch|front)\.njpwworld\.com', r'qub\.ca/vrai', + r'(?:beta\.)?crunchyroll\.com', ) _TESTS = [{ @@ -153,6 +154,12 @@ class KnownDRMIE(UnsupportedInfoExtractor): }, { 'url': 'https://www.qub.ca/vrai/l-effet-bocuse-d-or/saison-1/l-effet-bocuse-d-or-saison-1-bande-annonce-1098225063', 'only_matching': True, + }, { + 'url': 'https://www.crunchyroll.com/watch/GY2P1Q98Y/to-the-future', + 'only_matching': True, + }, { + 'url': 'https://beta.crunchyroll.com/pt-br/watch/G8WUN8VKP/the-ruler-of-conspiracy', + 'only_matching': True, }] def _real_extract(self, url): |