3 from __future__
import unicode_literals
7 from .common
import InfoExtractor
20 from .dailymotion
import DailymotionIE
23 class FranceTVBaseInfoExtractor(InfoExtractor
):
24 def _make_url_result(self
, video_or_full_id
, catalog
=None):
25 full_id
= 'francetv:%s' % video_or_full_id
26 if '@' not in video_or_full_id
and catalog
:
27 full_id
+= '@%s' % catalog
28 return self
.url_result(
29 full_id
, ie
=FranceTVIE
.ie_key(),
30 video_id
=video_or_full_id
.split('@')[0])
33 class FranceTVIE(InfoExtractor
):
37 sivideo\.webservices\.francetelevisions\.fr/tools/getInfosOeuvre/v2/\?
38 .*?\bidDiffusion=[^&]+|
40 https?://videos\.francetv\.fr/video/|
43 (?P<id>[^@]+)(?:@(?P<catalog>.+))?
49 'url': 'https://sivideo.webservices.francetelevisions.fr/tools/getInfosOeuvre/v2/?idDiffusion=162311093&callback=_jsonp_loader_callback_request_0',
50 'md5': 'c2248a8de38c4e65ea8fae7b5df2d84f',
54 'title': '13h15, le dimanche... - Les mystères de Jésus',
55 'description': 'md5:75efe8d4c0a8205e5904498ffe1e1a42',
56 'timestamp': 1502623500,
57 'upload_date': '20170813',
61 'url': 'https://sivideo.webservices.francetelevisions.fr/tools/getInfosOeuvre/v2/?idDiffusion=NI_1004933&catalogue=Zouzous&callback=_jsonp_loader_callback_request_4',
62 'only_matching': True,
64 'url': 'http://videos.francetv.fr/video/NI_657393@Regions',
65 'only_matching': True,
67 'url': 'francetv:162311093',
68 'only_matching': True,
70 'url': 'francetv:NI_1004933@Zouzous',
71 'only_matching': True,
73 'url': 'francetv:NI_983319@Info-web',
74 'only_matching': True,
76 'url': 'francetv:NI_983319',
77 'only_matching': True,
79 'url': 'francetv:NI_657393@Regions',
80 'only_matching': True,
83 'url': 'francetv:SIM_France3',
84 'only_matching': True,
87 def _extract_video(self
, video_id
, catalogue
=None):
88 # Videos are identified by idDiffusion so catalogue part is optional.
89 # However when provided, some extra formats may be returned so we pass
91 info
= self
._download
_json
(
92 'https://sivideo.webservices.francetelevisions.fr/tools/getInfosOeuvre/v2/',
93 video_id
, 'Downloading video JSON', query
={
94 'idDiffusion': video_id
,
95 'catalogue': catalogue
or '',
98 if info
.get('status') == 'NOK':
100 '%s returned error: %s' % (self
.IE_NAME
, info
['message']),
102 allowed_countries
= info
['videos'][0].get('geoblocage')
103 if allowed_countries
:
105 geo_info
= self
._download
_json
(
106 'http://geo.francetv.fr/ws/edgescape.json', video_id
,
107 'Downloading geo restriction info')
108 country
= geo_info
['reponse']['geo_info']['country_code']
109 if country
not in allowed_countries
:
110 raise ExtractorError(
111 'The video is not available from your location',
114 georestricted
= False
116 def sign(manifest_url
, manifest_id
):
117 for host
in ('hdfauthftv-a.akamaihd.net', 'hdfauth.francetv.fr'):
118 signed_url
= self
._download
_webpage
(
119 'https://%s/esi/TA' % host
, video_id
,
120 'Downloading signed %s manifest URL' % manifest_id
,
124 if (signed_url
and isinstance(signed_url
, compat_str
) and
125 re
.search(r
'^(?:https?:)?//', signed_url
)):
132 for video
in info
['videos']:
133 if video
['statut'] != 'ONLINE':
135 video_url
= video
['url']
140 video
, lambda x
: x
['plages_ouverture'][0]['direct'],
141 bool) is True) or '/live.francetv.fr/' in video_url
142 format_id
= video
['format']
143 ext
= determine_ext(video_url
)
146 # See https://github.com/rg3/youtube-dl/issues/3963
147 # m3u8 urls work fine
149 formats
.extend(self
._extract
_f
4m
_formats
(
150 sign(video_url
, format_id
) + '&hdcore=3.7.0&plugin=aasp-3.7.0.39.44',
151 video_id
, f4m_id
=format_id
, fatal
=False))
153 formats
.extend(self
._extract
_m
3u8_formats
(
154 sign(video_url
, format_id
), video_id
, 'mp4',
155 entry_protocol
='m3u8_native', m3u8_id
=format_id
,
157 elif video_url
.startswith('rtmp'):
160 'format_id': 'rtmp-%s' % format_id
,
164 if self
._is
_valid
_url
(video_url
, video_id
, format_id
):
167 'format_id': format_id
,
169 self
._sort
_formats
(formats
)
171 title
= info
['titre']
172 subtitle
= info
.get('sous_titre')
174 title
+= ' - %s' % subtitle
175 title
= title
.strip()
179 'url': subformat
['url'],
180 'ext': subformat
.get('format'),
181 } for subformat
in info
.get('subtitles', []) if subformat
.get('url')]
183 subtitles
['fr'] = subtitles_list
187 'title': self
._live
_title
(title
) if is_live
else title
,
188 'description': clean_html(info
['synopsis']),
189 'thumbnail': compat_urlparse
.urljoin('http://pluzz.francetv.fr', info
['image']),
190 'duration': int_or_none(info
.get('real_duration')) or parse_duration(info
['duree']),
191 'timestamp': int_or_none(info
['diffusion']['timestamp']),
194 'subtitles': subtitles
,
197 def _real_extract(self
, url
):
198 mobj
= re
.match(self
._VALID
_URL
, url
)
199 video_id
= mobj
.group('id')
200 catalog
= mobj
.group('catalog')
203 qs
= compat_urlparse
.parse_qs(compat_urlparse
.urlparse(url
).query
)
204 video_id
= qs
.get('idDiffusion', [None])[0]
205 catalog
= qs
.get('catalogue', [None])[0]
207 raise ExtractorError('Invalid URL', expected
=True)
209 return self
._extract
_video
(video_id
, catalog
)
212 class FranceTVSiteIE(FranceTVBaseInfoExtractor
):
213 _VALID_URL
= r
'https?://(?:(?:www\.)?france\.tv|mobile\.france\.tv)/(?:[^/]+/)*(?P<id>[^/]+)\.html'
216 'url': 'https://www.france.tv/france-2/13h15-le-dimanche/140921-les-mysteres-de-jesus.html',
220 'title': '13h15, le dimanche... - Les mystères de Jésus',
221 'description': 'md5:75efe8d4c0a8205e5904498ffe1e1a42',
222 'timestamp': 1502623500,
223 'upload_date': '20170813',
226 'skip_download': True,
228 'add_ie': [FranceTVIE
.ie_key()],
231 'url': 'https://www.france.tv/france-3/des-chiffres-et-des-lettres/139063-emission-du-mardi-9-mai-2017.html',
232 'only_matching': True,
235 'url': 'https://www.france.tv/france-4/hero-corp/saison-1/134151-apres-le-calme.html',
236 'only_matching': True,
239 'url': 'https://www.france.tv/france-5/c-a-dire/saison-10/137013-c-a-dire.html',
240 'only_matching': True,
243 'url': 'https://www.france.tv/france-o/archipels/132249-mon-ancetre-l-esclave.html',
244 'only_matching': True,
247 'url': 'https://www.france.tv/france-2/direct.html',
248 'only_matching': True,
250 'url': 'https://www.france.tv/documentaires/histoire/136517-argentine-les-500-bebes-voles-de-la-dictature.html',
251 'only_matching': True,
253 'url': 'https://www.france.tv/jeux-et-divertissements/divertissements/133965-le-web-contre-attaque.html',
254 'only_matching': True,
256 'url': 'https://mobile.france.tv/france-5/c-dans-l-air/137347-emission-du-vendredi-12-mai-2017.html',
257 'only_matching': True,
259 'url': 'https://www.france.tv/142749-rouge-sang.html',
260 'only_matching': True,
263 'url': 'https://www.france.tv/france-3/direct.html',
264 'only_matching': True,
267 def _real_extract(self
, url
):
268 display_id
= self
._match
_id
(url
)
270 webpage
= self
._download
_webpage
(url
, display_id
)
273 video_id
= self
._search
_regex
(
274 r
'data-main-video=(["\'])(?P
<id>(?
:(?
!\
1).)+)\
1',
275 webpage, 'video
id', default=None, group='id')
278 video_id, catalogue = self._html_search_regex(
279 r'(?
:href
=|player\
.setVideo\
(\s
*)"http://videos?\.francetv\.fr/video/([^@]+@[^"]+)"',
280 webpage, 'video ID').split('@')
282 return self._make_url_result(video_id, catalogue)
285 class FranceTVEmbedIE(FranceTVBaseInfoExtractor):
286 _VALID_URL = r'https?://embed\.francetv\.fr/*\?.*?\bue=(?P<id>[^&]+)'
289 'url': 'http://embed.francetv.fr/?ue=7fd581a2ccf59d2fc5719c5c13cf6961',
293 'title': 'Le Pen Reims',
294 'upload_date': '20170505',
295 'timestamp': 1493981780,
299 'skip_download': True,
301 'add_ie': [FranceTVIE.ie_key()],
304 def _real_extract(self, url):
305 video_id = self._match_id(url)
307 video = self._download_json(
308 'http://api-embed.webservices.francetelevisions.fr/key/%s' % video_id,
311 return self._make_url_result(video['video_id'], video.get('catalog'))
314 class FranceTVInfoIE(FranceTVBaseInfoExtractor):
315 IE_NAME = 'francetvinfo.fr'
316 _VALID_URL = r'https?://(?:www|mobile|france3-regions)\.francetvinfo\.fr/(?:[^/]+/)*(?P<id>[^/?#&.]+)'
319 'url': 'http://www.francetvinfo.fr/replay-jt/france-3/soir-3/jt-grand-soir-3-lundi-26-aout-2013_393427.html',
324 'upload_date': '20130826',
325 'timestamp': 1377548400,
331 'skip_download': True,
333 'add_ie': [FranceTVIE.ie_key()],
335 'url': 'http://www.francetvinfo.fr/elections/europeennes/direct-europeennes-regardez-le-debat-entre-les-candidats-a-la-presidence-de-la-commission_600639.html',
336 'only_matching': True,
338 'url': 'http://www.francetvinfo.fr/economie/entreprises/les-entreprises-familiales-le-secret-de-la-reussite_933271.html',
339 'only_matching': True,
341 'url': 'http://france3-regions.francetvinfo.fr/bretagne/cotes-d-armor/thalassa-echappee-breizh-ce-venredi-dans-les-cotes-d-armor-954961.html',
342 'only_matching': True,
345 'url': 'http://www.francetvinfo.fr/politique/notre-dame-des-landes/video-sur-france-inter-cecile-duflot-denonce-le-regard-meprisant-de-patrick-cohen_1520091.html',
346 'md5': 'ee7f1828f25a648addc90cb2687b1f12',
350 'title': 'NDDL, référendum, Brexit : Cécile Duflot répond à Patrick Cohen',
351 'description': 'Au lendemain de la victoire du "oui
" au référendum sur l\'aéroport de Notre-Dame-des-Landes, l\'ancienne ministre écologiste est l\'invitée de Patrick Cohen. Plus d\'info : https://www.franceinter.fr/emissions/le-7-9/le-7-9-27-juin-2016',
352 'timestamp': 1467011958,
353 'upload_date': '20160627',
354 'uploader': 'France Inter',
355 'uploader_id': 'x2q2ez',
357 'add_ie': ['Dailymotion'],
359 'url': 'http://france3-regions.francetvinfo.fr/limousin/emissions/jt-1213-limousin',
360 'only_matching': True,
363 def _real_extract(self, url):
364 display_id = self._match_id(url)
366 webpage = self._download_webpage(url, display_id)
368 dailymotion_urls = DailymotionIE._extract_urls(webpage)
370 return self.playlist_result([
371 self.url_result(dailymotion_url, DailymotionIE.ie_key())
372 for dailymotion_url in dailymotion_urls])
374 video_id, catalogue = self._search_regex(
375 (r'id-video=([^@]+@[^"]+)',
376 r'<a
[^
>]+href
="(?:https?:)?//videos\.francetv\.fr/video/([^@]+@[^"]+)"'),
377 webpage, 'video id').split('@')
379 return self._make_url_result(video_id, catalogue)
382 class GenerationWhatIE(InfoExtractor):
383 IE_NAME = 'france2.fr:generation-what'
384 _VALID_URL = r'https?://generation-what\.francetv\.fr/[^/]+/video/(?P<id>[^/?#&]+)'
387 'url': 'http://generation-what.francetv.fr/portrait/video/present-arms',
391 'title': 'Generation What - Garde à vous - FRA',
392 'uploader': 'Generation What',
393 'uploader_id': 'UCHH9p1eetWCgt4kXBYCb3_w',
394 'upload_date': '20160411',
397 'skip_download': True,
399 'add_ie': ['Youtube'],
401 'url': 'http://generation-what.francetv.fr/europe/video/present-arms',
402 'only_matching': True,
405 def _real_extract(self, url):
406 display_id = self._match_id(url)
408 webpage = self._download_webpage(url, display_id)
410 youtube_id = self._search_regex(
411 r"window\
.videoURL\s
*=\s
*'([0-9A-Za-z_-]{11})';",
412 webpage, 'youtube id')
414 return self.url_result(youtube_id, ie='Youtube', video_id=youtube_id)
417 class CultureboxIE(FranceTVBaseInfoExtractor):
418 _VALID_URL = r'https?://(?:m\.)?culturebox\.francetvinfo\.fr/(?:[^/]+/)*(?P<id>[^/?#&]+)'
421 'url': 'https://culturebox.francetvinfo.fr/opera-classique/musique-classique/c-est-baroque/concerts/cantates-bwv-4-106-et-131-de-bach-par-raphael-pichon-57-268689',
425 'title': 'Cantates BWV 4, 106 et 131 de Bach par Raphaël Pichon 5/7',
426 'description': 'md5:19c44af004b88219f4daa50fa9a351d4',
427 'upload_date': '20180206',
428 'timestamp': 1517945220,
432 'skip_download': True,
434 'add_ie': [FranceTVIE.ie_key()],
437 def _real_extract(self, url):
438 display_id = self._match_id(url)
440 webpage = self._download_webpage(url, display_id)
442 if ">Ce live n
'est plus disponible en replay<" in webpage:
443 raise ExtractorError(
444 'Video
%s is not available
' % display_id, expected=True)
446 video_id, catalogue = self._search_regex(
447 r'["\'>]https?://videos\.francetv\.fr/video/([^@]+@.+?)["\'<]',
448 webpage, 'video
id').split('@')
450 return self._make_url_result(video_id, catalogue)
453 class FranceTVJeunesseIE(FranceTVBaseInfoExtractor):
454 _VALID_URL = r'(?P
<url
>https?
://(?
:www\
.)?
(?
:zouzous|ludo
)\
.fr
/heros
/(?P
<id>[^
/?
#&]+))'
457 'url': 'https://www.zouzous.fr/heros/simon',
463 'url': 'https://www.ludo.fr/heros/ninjago',
467 'playlist_count': 10,
469 'url': 'https://www.zouzous.fr/heros/simon?abc',
470 'only_matching': True,
473 def _real_extract(self
, url
):
474 mobj
= re
.match(self
._VALID
_URL
, url
)
475 playlist_id
= mobj
.group('id')
477 playlist
= self
._download
_json
(
478 '%s/%s' % (mobj
.group('url'), 'playlist'), playlist_id
)
480 if not playlist
.get('count'):
481 raise ExtractorError(
482 '%s is not available' % playlist_id
, expected
=True)
485 for item
in playlist
['items']:
486 identity
= item
.get('identity')
487 if identity
and isinstance(identity
, compat_str
):
488 entries
.append(self
._make
_url
_result
(identity
))
490 return self
.playlist_result(entries
, playlist_id
)