mirror of
https://github.com/l1ving/youtube-dl
synced 2025-01-24 05:22:51 +08:00
No need for a html_search - fixed typo in the test
This commit is contained in:
parent
b7c2bce0cb
commit
0311562081
@ -13,7 +13,7 @@ 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=116548',
|
||||
'url': 'http://rmcdecouverte.bfmtv.com/mediaplayer-replay/?id=16548',
|
||||
'info_dict': {
|
||||
'id': '5411254766001',
|
||||
'ext': 'mp4',
|
||||
@ -38,5 +38,5 @@ class RMCDecouverteIE(InfoExtractor):
|
||||
if brightcove_legacy_url:
|
||||
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, 'brightcove_id')
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user