diff options
author | sepro <sepro@sepr0.com> | 2025-03-22 22:34:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-22 22:34:07 +0100 |
commit | fe4f14b8369038e7c58f7de546d76de1ce3a91ce (patch) | |
tree | 1859c4126ae83c8029445525bdcb2b9f0b07c43d /yt_dlp/extractor/unsupported.py | |
parent | b872ffec50fd50f790a5a490e006a369a28a3df3 (diff) |
[ie/viki] Remove extractors (#12703)
Closes #2907, Closes #2869
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 e8d6ae128..2b80852dc 100644 --- a/yt_dlp/extractor/unsupported.py +++ b/yt_dlp/extractor/unsupported.py @@ -51,6 +51,7 @@ class KnownDRMIE(UnsupportedInfoExtractor): r'(?:watch|front)\.njpwworld\.com', r'qub\.ca/vrai', r'(?:beta\.)?crunchyroll\.com', + r'viki\.com', ) _TESTS = [{ @@ -160,6 +161,9 @@ class KnownDRMIE(UnsupportedInfoExtractor): }, { 'url': 'https://beta.crunchyroll.com/pt-br/watch/G8WUN8VKP/the-ruler-of-conspiracy', 'only_matching': True, + }, { + 'url': 'https://www.viki.com/videos/1175236v-choosing-spouse-by-lottery-episode-1', + 'only_matching': True, }] def _real_extract(self, url): |