|
|
@ -379,6 +379,31 @@ class FranceTVInfoIE(FranceTVBaseInfoExtractor): |
|
|
|
return self._make_url_result(video_id, catalogue) |
|
|
|
|
|
|
|
|
|
|
|
class FranceTVInfoSportIE(FranceTVBaseInfoExtractor): |
|
|
|
IE_NAME = 'sport.francetvinfo.fr' |
|
|
|
_VALID_URL = r'https?://sport\.francetvinfo\.fr/(?:[^/]+/)*(?P<id>[^/?#&]+)' |
|
|
|
_TESTS = [{ |
|
|
|
'url': 'https://sport.francetvinfo.fr/les-jeux-olympiques/retour-sur-les-meilleurs-moments-de-pyeongchang-2018', |
|
|
|
'info_dict': { |
|
|
|
'id': '6e49080e-3f45-11e8-b459-000d3a2439ea', |
|
|
|
'ext': 'mp4', |
|
|
|
'title': 'Retour sur les meilleurs moments de Pyeongchang 2018', |
|
|
|
'timestamp': 1523639962, |
|
|
|
'upload_date': '20180413', |
|
|
|
}, |
|
|
|
'params': { |
|
|
|
'skip_download': True, |
|
|
|
}, |
|
|
|
'add_ie': [FranceTVIE.ie_key()], |
|
|
|
}] |
|
|
|
|
|
|
|
def _real_extract(self, url): |
|
|
|
display_id = self._match_id(url) |
|
|
|
webpage = self._download_webpage(url, display_id) |
|
|
|
video_id = self._search_regex(r'data-video="([^"]+)"', webpage, 'video_id') |
|
|
|
return self._make_url_result(video_id, 'Sport-web') |
|
|
|
|
|
|
|
|
|
|
|
class GenerationWhatIE(InfoExtractor): |
|
|
|
IE_NAME = 'france2.fr:generation-what' |
|
|
|
_VALID_URL = r'https?://generation-what\.francetv\.fr/[^/]+/video/(?P<id>[^/?#&]+)' |
|
|
|