diff options
author | sepro <sepro@sepr0.com> | 2025-03-22 22:53:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-22 22:53:20 +0100 |
commit | be5af3f9e91747768c2b41157851bfbe14c663f7 (patch) | |
tree | aab2cd7afcbcf5fc25eee912dd80b0f925e4fc09 /yt_dlp/extractor/unsupported.py | |
parent | fe4f14b8369038e7c58f7de546d76de1ce3a91ce (diff) |
[ie/deezer] Remove extractors (#12704)
Authored by: seproDev
Diffstat (limited to 'yt_dlp/extractor/unsupported.py')
-rw-r--r-- | yt_dlp/extractor/unsupported.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/yt_dlp/extractor/unsupported.py b/yt_dlp/extractor/unsupported.py index 2b80852dc..31393b02a 100644 --- a/yt_dlp/extractor/unsupported.py +++ b/yt_dlp/extractor/unsupported.py @@ -52,6 +52,7 @@ class KnownDRMIE(UnsupportedInfoExtractor): r'qub\.ca/vrai', r'(?:beta\.)?crunchyroll\.com', r'viki\.com', + r'deezer\.com', ) _TESTS = [{ @@ -164,6 +165,9 @@ class KnownDRMIE(UnsupportedInfoExtractor): }, { 'url': 'https://www.viki.com/videos/1175236v-choosing-spouse-by-lottery-episode-1', 'only_matching': True, + }, { + 'url': 'http://www.deezer.com/playlist/176747451', + 'only_matching': True, }] def _real_extract(self, url): |