diff options
| author | Anarky <ghostanarky+aur@gmail.com> | 2018-12-30 14:30:36 +0100 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2019-01-01 20:50:57 +0700 | 
| commit | 3d8eb6beb9aa6545be3184761df12cdcd0cb2944 (patch) | |
| tree | 8383918f388bfaccd544349e657a83f168356828 | |
| parent | 38d15ba7f981cc82db91edcbf05ea3844082d045 (diff) | |
[rmcdecouverte] Update _VALID_URL (closes #18595)
| -rw-r--r-- | youtube_dl/extractor/rmcdecouverte.py | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/youtube_dl/extractor/rmcdecouverte.py b/youtube_dl/extractor/rmcdecouverte.py index e921ca3e6..c44b90274 100644 --- a/youtube_dl/extractor/rmcdecouverte.py +++ b/youtube_dl/extractor/rmcdecouverte.py @@ -10,18 +10,18 @@ from ..compat import (  class RMCDecouverteIE(InfoExtractor): -    _VALID_URL = r'https?://rmcdecouverte\.bfmtv\.com/mediaplayer-replay.*?\bid=(?P<id>\d+)' +    _VALID_URL = r'https?://rmcdecouverte\.bfmtv\.com/.+/program_(?P<id>\d+)'      _TEST = { -        'url': 'http://rmcdecouverte.bfmtv.com/mediaplayer-replay/?id=13502&title=AQUAMEN:LES%20ROIS%20DES%20AQUARIUMS%20:UN%20DELICIEUX%20PROJET', +        'url': 'https://rmcdecouverte.bfmtv.com/wheeler-dealers-occasions-a-saisir/program_2566/',          'info_dict': { -            'id': '5419055995001', +            'id': '5983675500001',              'ext': 'mp4', -            'title': 'UN DELICIEUX PROJET', -            'description': 'md5:63610df7c8b1fc1698acd4d0d90ba8b5', +            'title': 'CORVETTE', +            'description': 'md5:c1e8295521e45ffebf635d6a7658f506',              'uploader_id': '1969646226001', -            'upload_date': '20170502', -            'timestamp': 1493745308, +            'upload_date': '20181226', +            'timestamp': 1545861635,          },          'params': {              'skip_download': True, | 
