1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-03 20:43:24 +08:00

[RMC Decouverte] Fix extractor

Extractor was no longer working, fixed.
This commit is contained in:
midas02 2017-04-30 19:41:17 +02:00 committed by GitHub
parent e1f2d4afee
commit 9288c8831e

View File

@ -15,13 +15,13 @@ class RMCDecouverteIE(InfoExtractor):
_TEST = { _TEST = {
'url': 'http://rmcdecouverte.bfmtv.com/mediaplayer-replay/?id=116548', 'url': 'http://rmcdecouverte.bfmtv.com/mediaplayer-replay/?id=116548',
'info_dict': { 'info_dict': {
'id': '5111223049001', 'id': '5411254766001',
'ext': 'mp4', 'ext': 'mp4',
'title': ': LES HEROS DU 88e ETAGE', 'title': '39/45:LE RESEAU DES FAUX BILLETS',
'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.', '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', 'uploader_id': '1969646226001',
'upload_date': '20160904', 'upload_date': '20170426',
'timestamp': 1472951103, 'timestamp': 1493166610,
}, },
'params': { 'params': {
# rtmp download # rtmp download
@ -35,5 +35,8 @@ class RMCDecouverteIE(InfoExtractor):
video_id = self._match_id(url) video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id) webpage = self._download_webpage(url, video_id)
brightcove_legacy_url = BrightcoveLegacyIE._extract_brightcove_url(webpage) brightcove_legacy_url = BrightcoveLegacyIE._extract_brightcove_url(webpage)
if brightcove_legacy_url:
brightcove_id = compat_parse_qs(compat_urlparse.urlparse(brightcove_legacy_url).query)['@videoPlayer'][0] brightcove_id = compat_parse_qs(compat_urlparse.urlparse(brightcove_legacy_url).query)['@videoPlayer'][0]
else:
brightcove_id = self._html_search_regex(r'data-video-id="(.*?)"', webpage, 'error message', default=None)
return self.url_result(self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, 'BrightcoveNew', brightcove_id) return self.url_result(self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, 'BrightcoveNew', brightcove_id)