summary refs log tree commit diff
diff options
context:
space:
mode:
authormidas02 <midas02@users.noreply.github.com>2017-04-30 19:36:44 +0200
committerSergey M․ <dstftw@gmail.com>2017-05-06 17:56:10 +0700
commit74c09c852a183813174803306176a86d449da889 (patch)
treef1016e0e119a91a0e9f672a0cfe0705b15c79f93
parentfd178b8748979ab19f1cb3d7d689fe19a447ca2f (diff)
downloadyoutube-dl-74c09c852a183813174803306176a86d449da889.tar.gz
youtube-dl-74c09c852a183813174803306176a86d449da889.tar.xz
youtube-dl-74c09c852a183813174803306176a86d449da889.zip
[rmcdecouverte] Fix extraction
-rw-r--r--youtube_dl/extractor/rmcdecouverte.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/youtube_dl/extractor/rmcdecouverte.py b/youtube_dl/extractor/rmcdecouverte.py
index 2340dae53..f6ef6d747 100644
--- a/youtube_dl/extractor/rmcdecouverte.py
+++ b/youtube_dl/extractor/rmcdecouverte.py
@@ -13,15 +13,15 @@ class RMCDecouverteIE(InfoExtractor):
     _VALID_URL = r'https?://rmcdecouverte\.bfmtv\.com/mediaplayer-replay.*?\bid=(?P<id>\d+)'
 
     _TEST = {
-        'url': 'http://rmcdecouverte.bfmtv.com/mediaplayer-replay/?id=1430&title=LES%20HEROS%20DU%2088e%20ETAGE',
+        'url': 'http://rmcdecouverte.bfmtv.com/mediaplayer-replay/?id=16548',
         'info_dict': {
-            'id': '5111223049001',
+            'id': '5411254766001',
             'ext': 'mp4',
-            'title': ': LES HEROS DU 88e ETAGE',
-            'description': 'Découvrez comment la bravoure de deux hommes dans la Tour Nord du World Trade Center a sauvé  la vie d\'innombrables personnes le 11 septembre 2001.',
+            'title': '39/45:LE RESEAU DES FAUX BILLETS',
+            'description': 'ic Brunet propose un nouvel \u00e9pisode des Grains de sable de l\'Histoire sur la plus grosse affaire de contrefa\u00e7on de la Seconde Guerre mondiale.',
             'uploader_id': '1969646226001',
-            'upload_date': '20160904',
-            'timestamp': 1472951103,
+            'upload_date': '20170426',
+            'timestamp': 1493166610,
         },
         'params': {
             # rtmp download
@@ -35,5 +35,8 @@ class RMCDecouverteIE(InfoExtractor):
         video_id = self._match_id(url)
         webpage = self._download_webpage(url, video_id)
         brightcove_legacy_url = BrightcoveLegacyIE._extract_brightcove_url(webpage)
-        brightcove_id = compat_parse_qs(compat_urlparse.urlparse(brightcove_legacy_url).query)['@videoPlayer'][0]
+        if brightcove_legacy_url:
+            brightcove_id = compat_parse_qs(compat_urlparse.urlparse(brightcove_legacy_url).query)['@videoPlayer'][0]
+        else:
+            brightcove_id = self._search_regex(r'data-video-id="(.*?)"', webpage, 'brightcove_id')
         return self.url_result(self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, 'BrightcoveNew', brightcove_id)