diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-06 21:31:20 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-06 21:31:20 +0530 |
commit | 41d1cca3289a274bda14c5cca4179861bdad0163 (patch) | |
tree | c87819b605e1caf42e443fcc3ad1297043b757c5 /yt_dlp/extractor/funimation.py | |
parent | 717297545b25a03819764f756edda3f9f4b29929 (diff) | |
download | hypervideo-pre-41d1cca3289a274bda14c5cca4179861bdad0163.tar.lz hypervideo-pre-41d1cca3289a274bda14c5cca4179861bdad0163.tar.xz hypervideo-pre-41d1cca3289a274bda14c5cca4179861bdad0163.zip |
Update to ytdl-commit-a726009
[blinkx] Remove extractor
https://github.com/ytdl-org/youtube-dl/commit/a7260099873acc6dc7d76cafad2f6b139087afd0
Diffstat (limited to 'yt_dlp/extractor/funimation.py')
-rw-r--r-- | yt_dlp/extractor/funimation.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/yt_dlp/extractor/funimation.py b/yt_dlp/extractor/funimation.py index 8bbedca26..d8f1e169a 100644 --- a/yt_dlp/extractor/funimation.py +++ b/yt_dlp/extractor/funimation.py @@ -16,7 +16,7 @@ from ..utils import ( class FunimationIE(InfoExtractor): - _VALID_URL = r'https?://(?:www\.)?funimation(?:\.com|now\.uk)/shows/[^/]+/(?P<id>[^/?#&]+)' + _VALID_URL = r'https?://(?:www\.)?funimation(?:\.com|now\.uk)/(?:[^/]+/)?shows/[^/]+/(?P<id>[^/?#&]+)' _NETRC_MACHINE = 'funimation' _TOKEN = None @@ -51,6 +51,10 @@ class FunimationIE(InfoExtractor): }, { 'url': 'https://www.funimationnow.uk/shows/puzzle-dragons-x/drop-impact/simulcast/', 'only_matching': True, + }, { + # with lang code + 'url': 'https://www.funimation.com/en/shows/hacksign/role-play/', + 'only_matching': True, }] def _login(self): |