diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-01 19:47:10 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-01 21:24:31 +0530 |
commit | 88f06afc0c05cd110a8dfe14cf51aa966cbe8cbc (patch) | |
tree | 284872fff2d17b85da83b16d6de8897843f7b499 | |
parent | 40078a55e2549ad3348997180622503c2b84383c (diff) | |
download | hypervideo-pre-88f06afc0c05cd110a8dfe14cf51aa966cbe8cbc.tar.lz hypervideo-pre-88f06afc0c05cd110a8dfe14cf51aa966cbe8cbc.tar.xz hypervideo-pre-88f06afc0c05cd110a8dfe14cf51aa966cbe8cbc.zip |
[rmcdecouverte] Improve `_VALID_URL`
Closes #291
-rw-r--r-- | yt_dlp/extractor/rmcdecouverte.py | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/yt_dlp/extractor/rmcdecouverte.py b/yt_dlp/extractor/rmcdecouverte.py index c3623edcc..ecd16d130 100644 --- a/yt_dlp/extractor/rmcdecouverte.py +++ b/yt_dlp/extractor/rmcdecouverte.py @@ -13,9 +13,24 @@ from ..utils import smuggle_url class RMCDecouverteIE(InfoExtractor): - _VALID_URL = r'https?://rmcdecouverte\.bfmtv\.com/(?:(?:[^/]+/)*program_(?P<id>\d+)|(?P<live_id>mediaplayer-direct))' + _VALID_URL = r'https?://rmcdecouverte\.bfmtv\.com/(?:[^/]+/(?P<id>[^?#/]+)|(?P<live_id>mediaplayer-direct))' _TESTS = [{ + 'url': 'https://rmcdecouverte.bfmtv.com/vestiges-de-guerre_22240/les-bunkers-secrets-domaha-beach_25303/', + 'info_dict': { + 'id': '6250879771001', + 'ext': 'mp4', + 'title': 'LES BUNKERS SECRETS D“OMAHA BEACH', + 'uploader_id': '1969646226001', + 'description': 'md5:aed573ca24abde62a148e0eba909657d', + 'timestamp': 1619622984, + 'upload_date': '20210428', + }, + 'params': { + 'format': 'bestvideo', + 'skip_download': True, + }, + }, { 'url': 'https://rmcdecouverte.bfmtv.com/wheeler-dealers-occasions-a-saisir/program_2566/', 'info_dict': { 'id': '5983675500001', |