2016-10-02 13:39:18 +02:00
|
|
|
|
# coding: utf-8
|
2016-09-07 18:32:35 +02:00
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
2019-01-01 14:49:13 +01:00
|
|
|
|
|
2016-09-07 18:32:35 +02:00
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
from .brightcove import BrightcoveLegacyIE
|
|
|
|
|
from ..compat import (
|
|
|
|
|
compat_parse_qs,
|
|
|
|
|
compat_urlparse,
|
|
|
|
|
)
|
2019-01-01 14:49:13 +01:00
|
|
|
|
from ..utils import smuggle_url
|
2016-09-07 18:32:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class RMCDecouverteIE(InfoExtractor):
|
2021-05-11 14:53:38 +02:00
|
|
|
|
_VALID_URL = r'https?://rmcdecouverte\.bfmtv\.com/(?:[^?#]*_(?P<id>\d+)|mediaplayer-direct)/?(?:[#?]|$)'
|
2016-09-07 18:32:35 +02:00
|
|
|
|
|
2019-01-01 14:49:13 +01:00
|
|
|
|
_TESTS = [{
|
2021-05-01 16:17:10 +02:00
|
|
|
|
'url': 'https://rmcdecouverte.bfmtv.com/vestiges-de-guerre_22240/les-bunkers-secrets-domaha-beach_25303/',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '6250879771001',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'title': 'LES BUNKERS SECRETS D´OMAHA BEACH',
|
|
|
|
|
'uploader_id': '1969646226001',
|
|
|
|
|
'description': 'md5:aed573ca24abde62a148e0eba909657d',
|
|
|
|
|
'timestamp': 1619622984,
|
|
|
|
|
'upload_date': '20210428',
|
|
|
|
|
},
|
|
|
|
|
'params': {
|
|
|
|
|
'skip_download': True,
|
|
|
|
|
},
|
|
|
|
|
}, {
|
2018-12-30 14:30:36 +01:00
|
|
|
|
'url': 'https://rmcdecouverte.bfmtv.com/wheeler-dealers-occasions-a-saisir/program_2566/',
|
2016-09-07 18:32:35 +02:00
|
|
|
|
'info_dict': {
|
2018-12-30 14:30:36 +01:00
|
|
|
|
'id': '5983675500001',
|
2016-09-07 18:32:35 +02:00
|
|
|
|
'ext': 'mp4',
|
2018-12-30 14:30:36 +01:00
|
|
|
|
'title': 'CORVETTE',
|
|
|
|
|
'description': 'md5:c1e8295521e45ffebf635d6a7658f506',
|
2016-09-07 18:32:35 +02:00
|
|
|
|
'uploader_id': '1969646226001',
|
2018-12-30 14:30:36 +01:00
|
|
|
|
'upload_date': '20181226',
|
|
|
|
|
'timestamp': 1545861635,
|
2016-09-07 18:32:35 +02:00
|
|
|
|
},
|
|
|
|
|
'params': {
|
|
|
|
|
'skip_download': True,
|
|
|
|
|
},
|
2017-05-06 12:55:32 +02:00
|
|
|
|
'skip': 'only available for a week',
|
2021-05-11 14:53:38 +02:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://rmcdecouverte.bfmtv.com/avions-furtifs-la-technologie-de-lextreme_10598',
|
|
|
|
|
'only_matching': True,
|
2021-05-11 20:04:40 +02:00
|
|
|
|
}, {
|
2021-05-11 14:53:38 +02:00
|
|
|
|
# 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,
|
2019-01-01 14:49:13 +01:00
|
|
|
|
}, {
|
|
|
|
|
# live, geo restricted, bypassable
|
|
|
|
|
'url': 'https://rmcdecouverte.bfmtv.com/mediaplayer-direct/',
|
|
|
|
|
'only_matching': True,
|
|
|
|
|
}]
|
2016-09-07 18:32:35 +02:00
|
|
|
|
BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/1969646226001/default_default/index.html?videoId=%s'
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2021-08-19 03:41:24 +02:00
|
|
|
|
mobj = self._match_valid_url(url)
|
2021-05-11 14:53:38 +02:00
|
|
|
|
display_id = mobj.group('id') or 'direct'
|
2019-01-01 14:49:13 +01:00
|
|
|
|
webpage = self._download_webpage(url, display_id)
|
2016-09-07 18:32:35 +02:00
|
|
|
|
brightcove_legacy_url = BrightcoveLegacyIE._extract_brightcove_url(webpage)
|
2017-04-30 19:36:44 +02:00
|
|
|
|
if brightcove_legacy_url:
|
2017-05-06 12:55:32 +02:00
|
|
|
|
brightcove_id = compat_parse_qs(compat_urlparse.urlparse(
|
|
|
|
|
brightcove_legacy_url).query)['@videoPlayer'][0]
|
2017-04-30 19:36:44 +02:00
|
|
|
|
else:
|
2017-05-06 12:55:32 +02:00
|
|
|
|
brightcove_id = self._search_regex(
|
|
|
|
|
r'data-video-id=["\'](\d+)', webpage, 'brightcove id')
|
|
|
|
|
return self.url_result(
|
2019-01-01 14:49:13 +01:00
|
|
|
|
smuggle_url(
|
|
|
|
|
self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id,
|
|
|
|
|
{'geo_countries': ['FR']}),
|
|
|
|
|
'BrightcoveNew', brightcove_id)
|