]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/francetv.py
[extractor] Deprecate `_sort_formats`
[yt-dlp.git] / yt_dlp / extractor / francetv.py
CommitLineData
5d8afe69 1from .common import InfoExtractor
1cc79574 2from ..utils import (
760f8121 3 determine_ext,
1cc79574 4 ExtractorError,
28fe35b4
F
5 format_field,
6 parse_iso8601,
4dfbf869 7 parse_qs,
5d8afe69 8)
3c4fbfec 9from .dailymotion import DailymotionIE
5d8afe69
PR
10
11
648d25d4 12class FranceTVBaseInfoExtractor(InfoExtractor):
79080573
S
13 def _make_url_result(self, video_or_full_id, catalog=None):
14 full_id = 'francetv:%s' % video_or_full_id
15 if '@' not in video_or_full_id and catalog:
99892e99
S
16 full_id += '@%s' % catalog
17 return self.url_result(
79080573
S
18 full_id, ie=FranceTVIE.ie_key(),
19 video_id=video_or_full_id.split('@')[0])
99892e99
S
20
21
22class FranceTVIE(InfoExtractor):
23 _VALID_URL = r'''(?x)
24 (?:
25 https?://
26 sivideo\.webservices\.francetelevisions\.fr/tools/getInfosOeuvre/v2/\?
27 .*?\bidDiffusion=[^&]+|
28 (?:
29 https?://videos\.francetv\.fr/video/|
30 francetv:
31 )
32 (?P<id>[^@]+)(?:@(?P<catalog>.+))?
33 )
34 '''
bfd973ec 35 _EMBED_REGEX = [r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?://)?embed\.francetv\.fr/\?ue=.+?)\1']
99892e99
S
36
37 _TESTS = [{
38 # without catalog
39 'url': 'https://sivideo.webservices.francetelevisions.fr/tools/getInfosOeuvre/v2/?idDiffusion=162311093&callback=_jsonp_loader_callback_request_0',
40 'md5': 'c2248a8de38c4e65ea8fae7b5df2d84f',
41 'info_dict': {
42 'id': '162311093',
43 'ext': 'mp4',
44 'title': '13h15, le dimanche... - Les mystères de Jésus',
45 'description': 'md5:75efe8d4c0a8205e5904498ffe1e1a42',
46 'timestamp': 1502623500,
47 'upload_date': '20170813',
48 },
49 }, {
50 # with catalog
51 'url': 'https://sivideo.webservices.francetelevisions.fr/tools/getInfosOeuvre/v2/?idDiffusion=NI_1004933&catalogue=Zouzous&callback=_jsonp_loader_callback_request_4',
52 'only_matching': True,
53 }, {
54 'url': 'http://videos.francetv.fr/video/NI_657393@Regions',
55 'only_matching': True,
56 }, {
57 'url': 'francetv:162311093',
58 'only_matching': True,
59 }, {
60 'url': 'francetv:NI_1004933@Zouzous',
61 'only_matching': True,
62 }, {
63 'url': 'francetv:NI_983319@Info-web',
64 'only_matching': True,
65 }, {
66 'url': 'francetv:NI_983319',
67 'only_matching': True,
68 }, {
69 'url': 'francetv:NI_657393@Regions',
70 'only_matching': True,
760f8121
S
71 }, {
72 # france-3 live
73 'url': 'francetv:SIM_France3',
74 'only_matching': True,
99892e99
S
75 }]
76
6d1ded75 77 def _extract_video(self, video_id, catalogue=None):
99892e99
S
78 # Videos are identified by idDiffusion so catalogue part is optional.
79 # However when provided, some extra formats may be returned so we pass
80 # it if available.
760f8121 81 is_live = None
8bdd16b4 82 videos = []
28fe35b4
F
83 title = None
84 subtitle = None
85 image = None
86 duration = None
87 timestamp = None
88 spritesheets = None
89
90 for device_type in ('desktop', 'mobile'):
91 dinfo = self._download_json(
92 'https://player.webservices.francetelevisions.fr/v1/videos/%s' % video_id,
93 video_id, 'Downloading %s video JSON' % device_type, query={
94 'device_type': device_type,
95 'browser': 'chrome',
96 }, fatal=False)
97
98 if not dinfo:
8bdd16b4 99 continue
8bdd16b4 100
28fe35b4
F
101 video = dinfo.get('video')
102 if video:
103 videos.append(video)
104 if duration is None:
105 duration = video.get('duration')
106 if is_live is None:
107 is_live = video.get('is_live')
108 if spritesheets is None:
109 spritesheets = video.get('spritesheets')
110
111 meta = dinfo.get('meta')
112 if meta:
113 if title is None:
114 title = meta.get('title')
115 # XXX: what is meta['pre_title']?
116 if subtitle is None:
117 subtitle = meta.get('additional_title')
118 if image is None:
119 image = meta.get('image_url')
120 if timestamp is None:
121 timestamp = parse_iso8601(meta.get('broadcasted_at'))
8bdd16b4 122
123 formats = []
b2cd5da4 124 subtitles = {}
8bdd16b4 125 for video in videos:
8bdd16b4 126 format_id = video.get('format')
28fe35b4
F
127
128 video_url = None
129 if video.get('workflow') == 'token-akamai':
130 token_url = video.get('token')
131 if token_url:
132 token_json = self._download_json(
133 token_url, video_id,
134 'Downloading signed %s manifest URL' % format_id)
135 if token_json:
136 video_url = token_json.get('url')
137 if not video_url:
138 video_url = video.get('url')
139
bc03228a
S
140 ext = determine_ext(video_url)
141 if ext == 'f4m':
8faa338f 142 formats.extend(self._extract_f4m_formats(
28fe35b4 143 video_url, video_id, f4m_id=format_id, fatal=False))
bc03228a 144 elif ext == 'm3u8':
28fe35b4
F
145 fmts, subs = self._extract_m3u8_formats_and_subtitles(
146 video_url, video_id, 'mp4',
8faa338f 147 entry_protocol='m3u8_native', m3u8_id=format_id,
b2cd5da4 148 fatal=False)
28fe35b4
F
149 formats.extend(fmts)
150 self._merge_subtitles(subs, target=subtitles)
8bdd16b4 151 elif ext == 'mpd':
28fe35b4
F
152 fmts, subs = self._extract_mpd_formats_and_subtitles(
153 video_url, video_id, mpd_id=format_id, fatal=False)
154 formats.extend(fmts)
155 self._merge_subtitles(subs, target=subtitles)
64892c0b
S
156 elif video_url.startswith('rtmp'):
157 formats.append({
158 'url': video_url,
159 'format_id': 'rtmp-%s' % format_id,
160 'ext': 'flv',
64892c0b
S
161 })
162 else:
3c20208e
S
163 if self._is_valid_url(video_url, video_id, format_id):
164 formats.append({
165 'url': video_url,
166 'format_id': format_id,
167 })
8bdd16b4 168
28fe35b4
F
169 # XXX: what is video['captions']?
170
171 for f in formats:
172 if f.get('acodec') != 'none' and f.get('language') in ('qtz', 'qad'):
173 f['language_preference'] = -10
174 f['format_note'] = 'audio description%s' % format_field(f, 'format_note', ', %s')
175
176 if spritesheets:
177 formats.append({
178 'format_id': 'spritesheets',
179 'format_note': 'storyboard',
180 'acodec': 'none',
181 'vcodec': 'none',
182 'ext': 'mhtml',
183 'protocol': 'mhtml',
9222c381 184 'url': 'about:invalid',
28fe35b4 185 'fragments': [{
b3edc806 186 'url': sheet,
28fe35b4
F
187 # XXX: not entirely accurate; each spritesheet seems to be
188 # a 10×10 grid of thumbnails corresponding to approximately
189 # 2 seconds of the video; the last spritesheet may be shorter
190 'duration': 200,
191 } for sheet in spritesheets]
192 })
193
36c15522
S
194 if subtitle:
195 title += ' - %s' % subtitle
db264e3c 196 title = title.strip()
36c15522 197
7e8d73c1
JMF
198 return {
199 'id': video_id,
39ca3b5c 200 'title': title,
28fe35b4
F
201 'thumbnail': image,
202 'duration': duration,
203 'timestamp': timestamp,
760f8121 204 'is_live': is_live,
7e8d73c1 205 'formats': formats,
5dadae07 206 'subtitles': subtitles,
7e8d73c1 207 }
648d25d4 208
99892e99 209 def _real_extract(self, url):
5ad28e7f 210 mobj = self._match_valid_url(url)
99892e99
S
211 video_id = mobj.group('id')
212 catalog = mobj.group('catalog')
213
214 if not video_id:
4dfbf869 215 qs = parse_qs(url)
99892e99
S
216 video_id = qs.get('idDiffusion', [None])[0]
217 catalog = qs.get('catalogue', [None])[0]
218 if not video_id:
219 raise ExtractorError('Invalid URL', expected=True)
220
221 return self._extract_video(video_id, catalog)
222
648d25d4 223
99892e99 224class FranceTVSiteIE(FranceTVBaseInfoExtractor):
4489d418 225 _VALID_URL = r'https?://(?:(?:www\.)?france\.tv|mobile\.france\.tv)/(?:[^/]+/)*(?P<id>[^/]+)\.html'
5d8afe69 226
6d1ded75
S
227 _TESTS = [{
228 'url': 'https://www.france.tv/france-2/13h15-le-dimanche/140921-les-mysteres-de-jesus.html',
229 'info_dict': {
9d74ea6d 230 'id': 'ec217ecc-0733-48cf-ac06-af1347b849d1',
6d1ded75
S
231 'ext': 'mp4',
232 'title': '13h15, le dimanche... - Les mystères de Jésus',
233 'description': 'md5:75efe8d4c0a8205e5904498ffe1e1a42',
99892e99
S
234 'timestamp': 1502623500,
235 'upload_date': '20170813',
6d1ded75
S
236 },
237 'params': {
6d1ded75
S
238 'skip_download': True,
239 },
99892e99 240 'add_ie': [FranceTVIE.ie_key()],
6d1ded75
S
241 }, {
242 # france3
243 'url': 'https://www.france.tv/france-3/des-chiffres-et-des-lettres/139063-emission-du-mardi-9-mai-2017.html',
244 'only_matching': True,
245 }, {
246 # france4
247 'url': 'https://www.france.tv/france-4/hero-corp/saison-1/134151-apres-le-calme.html',
248 'only_matching': True,
249 }, {
250 # france5
251 'url': 'https://www.france.tv/france-5/c-a-dire/saison-10/137013-c-a-dire.html',
252 'only_matching': True,
253 }, {
254 # franceo
255 'url': 'https://www.france.tv/france-o/archipels/132249-mon-ancetre-l-esclave.html',
256 'only_matching': True,
257 }, {
258 # france2 live
259 'url': 'https://www.france.tv/france-2/direct.html',
260 'only_matching': True,
261 }, {
262 'url': 'https://www.france.tv/documentaires/histoire/136517-argentine-les-500-bebes-voles-de-la-dictature.html',
263 'only_matching': True,
264 }, {
265 'url': 'https://www.france.tv/jeux-et-divertissements/divertissements/133965-le-web-contre-attaque.html',
266 'only_matching': True,
12f01118
S
267 }, {
268 'url': 'https://mobile.france.tv/france-5/c-dans-l-air/137347-emission-du-vendredi-12-mai-2017.html',
269 'only_matching': True,
4489d418
S
270 }, {
271 'url': 'https://www.france.tv/142749-rouge-sang.html',
272 'only_matching': True,
49702e36
S
273 }, {
274 # france-3 live
275 'url': 'https://www.france.tv/france-3/direct.html',
276 'only_matching': True,
6d1ded75 277 }]
5d8afe69
PR
278
279 def _real_extract(self, url):
0a192fbe
S
280 display_id = self._match_id(url)
281
282 webpage = self._download_webpage(url, display_id)
283
6d1ded75
S
284 catalogue = None
285 video_id = self._search_regex(
9d74ea6d 286 r'(?:data-main-video\s*=|videoId["\']?\s*[:=])\s*(["\'])(?P<id>(?:(?!\1).)+)\1',
6d1ded75
S
287 webpage, 'video id', default=None, group='id')
288
0a192fbe 289 if not video_id:
6d1ded75
S
290 video_id, catalogue = self._html_search_regex(
291 r'(?:href=|player\.setVideo\(\s*)"http://videos?\.francetv\.fr/video/([^@]+@[^"]+)"',
292 webpage, 'video ID').split('@')
99892e99
S
293
294 return self._make_url_result(video_id, catalogue)
6d1ded75
S
295
296
6d1ded75 297class FranceTVInfoIE(FranceTVBaseInfoExtractor):
3c1b4669 298 IE_NAME = 'francetvinfo.fr'
99892e99 299 _VALID_URL = r'https?://(?:www|mobile|france3-regions)\.francetvinfo\.fr/(?:[^/]+/)*(?P<id>[^/?#&.]+)'
5d8afe69 300
5c30b268 301 _TESTS = [{
13c30d1d 302 'url': 'https://www.francetvinfo.fr/replay-jt/france-3/soir-3/jt-grand-soir-3-jeudi-22-aout-2019_3561461.html',
3c1b4669 303 'info_dict': {
13c30d1d 304 'id': 'd12458ee-5062-48fe-bfdd-a30d6a01b793',
3c20208e 305 'ext': 'mp4',
3c1b4669 306 'title': 'Soir 3',
13c30d1d
S
307 'upload_date': '20190822',
308 'timestamp': 1566510900,
309 'description': 'md5:72d167097237701d6e8452ff03b83c00',
c137cc0d
S
310 'subtitles': {
311 'fr': 'mincount:2',
312 },
648d25d4 313 },
3c20208e 314 'params': {
3c20208e
S
315 'skip_download': True,
316 },
99892e99 317 'add_ie': [FranceTVIE.ie_key()],
bbed5763 318 }, {
319 'note': 'Only an image exists in initial webpage instead of the video',
320 'url': 'https://www.francetvinfo.fr/sante/maladie/coronavirus/covid-19-en-inde-une-situation-catastrophique-a-new-dehli_4381095.html',
321 'info_dict': {
322 'id': '7d204c9e-a2d3-11eb-9e4c-000d3a23d482',
323 'ext': 'mp4',
324 'title': 'Covid-19 : une situation catastrophique à New Dehli',
325 'thumbnail': str,
326 'duration': 76,
327 'timestamp': 1619028518,
328 'upload_date': '20210421',
329 },
330 'params': {
331 'skip_download': True,
332 },
333 'add_ie': [FranceTVIE.ie_key()],
5c30b268
PH
334 }, {
335 'url': 'http://www.francetvinfo.fr/elections/europeennes/direct-europeennes-regardez-le-debat-entre-les-candidats-a-la-presidence-de-la-commission_600639.html',
99892e99 336 'only_matching': True,
6f96e308
YCH
337 }, {
338 'url': 'http://www.francetvinfo.fr/economie/entreprises/les-entreprises-familiales-le-secret-de-la-reussite_933271.html',
99892e99 339 'only_matching': True,
db264e3c
S
340 }, {
341 'url': 'http://france3-regions.francetvinfo.fr/bretagne/cotes-d-armor/thalassa-echappee-breizh-ce-venredi-dans-les-cotes-d-armor-954961.html',
99892e99 342 'only_matching': True,
ad213a1d
YCH
343 }, {
344 # Dailymotion embed
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',
347 'info_dict': {
348 'id': 'x4iiko0',
349 'ext': 'mp4',
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',
356 },
357 'add_ie': ['Dailymotion'],
30b25d38
S
358 }, {
359 'url': 'http://france3-regions.francetvinfo.fr/limousin/emissions/jt-1213-limousin',
360 'only_matching': True,
41d1cca3 361 }, {
362 # "<figure id=" pattern (#28792)
363 'url': 'https://www.francetvinfo.fr/culture/patrimoine/incendie-de-notre-dame-de-paris/notre-dame-de-paris-de-l-incendie-de-la-cathedrale-a-sa-reconstruction_4372291.html',
364 'only_matching': True,
5c30b268 365 }]
648d25d4
JMF
366
367 def _real_extract(self, url):
99892e99
S
368 display_id = self._match_id(url)
369
370 webpage = self._download_webpage(url, display_id)
6f96e308 371
43aebb7d 372 dailymotion_urls = tuple(DailymotionIE._extract_embed_urls(url, webpage))
ad213a1d
YCH
373 if dailymotion_urls:
374 return self.playlist_result([
375 self.url_result(dailymotion_url, DailymotionIE.ie_key())
376 for dailymotion_url in dailymotion_urls])
6f96e308 377
876fed6b 378 video_id = self._search_regex(
379 (r'player\.load[^;]+src:\s*["\']([^"\']+)',
380 r'id-video=([^@]+@[^"]+)',
13c30d1d 381 r'<a[^>]+href="(?:https?:)?//videos\.francetv\.fr/video/([^@]+@[^"]+)"',
41d1cca3 382 r'(?:data-id|<figure[^<]+\bid)=["\']([\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12})'),
876fed6b 383 webpage, 'video id')
99892e99 384
876fed6b 385 return self._make_url_result(video_id)