diff options
author | aarubui <aarubui@users.noreply.github.com> | 2023-11-16 10:21:33 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-15 23:21:33 +0000 |
commit | e569c2d1f4b665795a2b64f0aaf7f76930664233 (patch) | |
tree | 4c928f5e948a5ed1864614a9d60124c8ec6d31d0 /yt_dlp/extractor/unsupported.py | |
parent | a489f071508ec5caf5f32052d142afe86c28df7a (diff) |
[ie/njpwworld] Remove (#8570)
Authored by: aarubui
Diffstat (limited to 'yt_dlp/extractor/unsupported.py')
-rw-r--r-- | yt_dlp/extractor/unsupported.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/yt_dlp/extractor/unsupported.py b/yt_dlp/extractor/unsupported.py index d610baecb..a3f9911e2 100644 --- a/yt_dlp/extractor/unsupported.py +++ b/yt_dlp/extractor/unsupported.py @@ -48,6 +48,7 @@ class KnownDRMIE(UnsupportedInfoExtractor): r'joyn\.de', r'amazon\.(?:\w{2}\.)?\w+/gp/video', r'music\.amazon\.(?:\w{2}\.)?\w+', + r'(?:watch|front)\.njpwworld\.com', ) _TESTS = [{ @@ -141,6 +142,13 @@ class KnownDRMIE(UnsupportedInfoExtractor): # https://github.com/yt-dlp/yt-dlp/issues/5767 'url': 'https://www.hulu.com/movie/anthem-6b25fac9-da2b-45a3-8e09-e4156b0471cc', 'only_matching': True, + }, { + # https://github.com/yt-dlp/yt-dlp/pull/8570 + 'url': 'https://watch.njpwworld.com/player/36447/series?assetType=series', + 'only_matching': True, + }, { + 'url': 'https://front.njpwworld.com/p/s_series_00563_16_bs', + 'only_matching': True, }] def _real_extract(self, url): |