diff options
author | gmes78 <gmes.078@gmail.com> | 2024-01-21 18:56:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 18:56:01 +0000 |
commit | c0ecceeefe6ebd27452d9d8f20658f83ae121d04 (patch) | |
tree | 0f05c02ae0b24e8383ee3f6b2f7ddcaa74c87bbe | |
parent | 3e083191cdc34dd8c482da9a9b4bc682f824cb9d (diff) |
[ie/Rule34Video] Fix `_VALID_URL` (#9044)
Authored by: gmes78
-rw-r--r-- | yt_dlp/extractor/rule34video.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/rule34video.py b/yt_dlp/extractor/rule34video.py index e6bb4258e..85ad7e2ff 100644 --- a/yt_dlp/extractor/rule34video.py +++ b/yt_dlp/extractor/rule34video.py @@ -18,10 +18,10 @@ from ..utils.traversal import traverse_obj class Rule34VideoIE(InfoExtractor): - _VALID_URL = r'https?://(?:www\.)?rule34video\.com/videos/(?P<id>\d+)' + _VALID_URL = r'https?://(?:www\.)?rule34video\.com/videos?/(?P<id>\d+)' _TESTS = [ { - 'url': 'https://rule34video.com/videos/3065157/shot-it-mmd-hmv/', + 'url': 'https://rule34video.com/video/3065157/shot-it-mmd-hmv/', 'md5': 'ffccac2c23799dabbd192621ae4d04f3', 'info_dict': { 'id': '3065157', |