]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/rmcdecouverte.py
[ie/crunchyroll] Fix stream extraction (#10005)
[yt-dlp.git] / yt_dlp / extractor / rmcdecouverte.py
index 655a58f9e9f05a894a07b3813bc22171949394da..8d29b302bb1cf1f32c52619d9f742baaf6b8060f 100644 (file)
@@ -1,8 +1,3 @@
-# coding: utf-8
-from __future__ import unicode_literals
-
-import re
-
 from .common import InfoExtractor
 from .brightcove import BrightcoveLegacyIE
 from ..compat import (
@@ -27,7 +22,6 @@ class RMCDecouverteIE(InfoExtractor):
             'upload_date': '20210428',
         },
         'params': {
-            'format': 'bestvideo',
             'skip_download': True,
         },
     }, {
@@ -48,7 +42,7 @@ class RMCDecouverteIE(InfoExtractor):
     }, {
         'url': 'https://rmcdecouverte.bfmtv.com/avions-furtifs-la-technologie-de-lextreme_10598',
         'only_matching': True,
-    },{
+    }, {
         # The website accepts any URL as long as it has _\d+ at the end
         'url': 'https://rmcdecouverte.bfmtv.com/any/thing/can/go/here/_10598',
         'only_matching': True,
@@ -60,7 +54,7 @@ class RMCDecouverteIE(InfoExtractor):
     BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/1969646226001/default_default/index.html?videoId=%s'
 
     def _real_extract(self, url):
-        mobj = re.match(self._VALID_URL, url)
+        mobj = self._match_valid_url(url)
         display_id = mobj.group('id') or 'direct'
         webpage = self._download_webpage(url, display_id)
         brightcove_legacy_url = BrightcoveLegacyIE._extract_brightcove_url(webpage)