]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/zdf.py
[extractor/tiktok] Extract 1080p adaptive formats (#7228)
[yt-dlp.git] / yt_dlp / extractor / zdf.py
CommitLineData
d5822b96
PH
1import re
2
3from .common import InfoExtractor
fb47cb5b 4from ..compat import compat_str
d5822b96 5from ..utils import (
db4678e4 6 NO_DEFAULT,
7 ExtractorError,
a5c1d955 8 determine_ext,
db4678e4 9 extract_attributes,
ec5e77c5 10 float_or_none,
fb47cb5b 11 int_or_none,
34921b43 12 join_nonempty,
ec5e77c5 13 merge_dicts,
fb47cb5b
S
14 parse_codecs,
15 qualities,
5f9aaac8 16 traverse_obj,
fb47cb5b
S
17 try_get,
18 unified_timestamp,
19 update_url_query,
3052a30d 20 url_or_none,
fb47cb5b 21 urljoin,
d5822b96 22)
0b7c2485 23
fb47cb5b
S
24
25class ZDFBaseIE(InfoExtractor):
9cf26b6e 26 _GEO_COUNTRIES = ['DE']
0fe87a87 27 _QUALITIES = ('auto', 'low', 'med', 'high', 'veryhigh', 'hd', 'uhd')
a2e6db36 28
ec5e77c5 29 def _call_api(self, url, video_id, item, api_token=None, referrer=None):
30 headers = {}
31 if api_token:
32 headers['Api-Auth'] = 'Bearer %s' % api_token
33 if referrer:
34 headers['Referer'] = referrer
35 return self._download_json(
36 url, video_id, 'Downloading JSON %s' % item, headers=headers)
a5c1d955 37
fb47cb5b
S
38 @staticmethod
39 def _extract_subtitles(src):
40 subtitles = {}
41 for caption in try_get(src, lambda x: x['captions'], list) or []:
3052a30d
S
42 subtitle_url = url_or_none(caption.get('uri'))
43 if subtitle_url:
fb47cb5b
S
44 lang = caption.get('language', 'deu')
45 subtitles.setdefault(lang, []).append({
46 'url': subtitle_url,
47 })
48 return subtitles
49
50 def _extract_format(self, video_id, formats, format_urls, meta):
3052a30d 51 format_url = url_or_none(meta.get('url'))
600e9003 52 if not format_url or format_url in format_urls:
fb47cb5b
S
53 return
54 format_urls.add(format_url)
600e9003 55
56 mime_type, ext = meta.get('mimeType'), determine_ext(format_url)
fb47cb5b 57 if mime_type == 'application/x-mpegURL' or ext == 'm3u8':
600e9003 58 new_formats = self._extract_m3u8_formats(
fb47cb5b 59 format_url, video_id, 'mp4', m3u8_id='hls',
600e9003 60 entry_protocol='m3u8_native', fatal=False)
fb47cb5b 61 elif mime_type == 'application/f4m+xml' or ext == 'f4m':
600e9003 62 new_formats = self._extract_f4m_formats(
63 update_url_query(format_url, {'hdcore': '3.7.0'}), video_id, f4m_id='hds', fatal=False)
fb47cb5b
S
64 else:
65 f = parse_codecs(meta.get('mimeCodec'))
600e9003 66 if not f and meta.get('type'):
67 data = meta['type'].split('_')
68 if try_get(data, lambda x: x[2]) == ext:
69 f = {'vcodec': data[0], 'acodec': data[1]}
fb47cb5b
S
70 f.update({
71 'url': format_url,
34921b43 72 'format_id': join_nonempty('http', meta.get('type'), meta.get('quality')),
e3aae45a 73 'tbr': int_or_none(self._search_regex(r'_(\d+)k_', format_url, 'tbr', default=None))
fb47cb5b 74 })
600e9003 75 new_formats = [f]
76 formats.extend(merge_dicts(f, {
34921b43 77 'format_note': join_nonempty('quality', 'class', from_dict=meta, delim=', '),
600e9003 78 'language': meta.get('language'),
79 'language_preference': 10 if meta.get('class') == 'main' else -10 if meta.get('class') == 'ad' else -1,
80 'quality': qualities(self._QUALITIES)(meta.get('quality')),
81 }) for f in new_formats)
fb47cb5b 82
ec5e77c5 83 def _extract_ptmd(self, ptmd_url, video_id, api_token, referrer):
50de3dba 84 ptmd = self._call_api(
ec5e77c5 85 ptmd_url, video_id, 'metadata', api_token, referrer)
86
87 content_id = ptmd.get('basename') or ptmd_url.split('/')[-1]
fb47cb5b 88
a5c1d955 89 formats = []
fb47cb5b
S
90 track_uris = set()
91 for p in ptmd['priorityList']:
92 formitaeten = p.get('formitaeten')
93 if not isinstance(formitaeten, list):
a5c1d955 94 continue
fb47cb5b
S
95 for f in formitaeten:
96 f_qualities = f.get('qualities')
97 if not isinstance(f_qualities, list):
98 continue
99 for quality in f_qualities:
100 tracks = try_get(quality, lambda x: x['audio']['tracks'], list)
101 if not tracks:
102 continue
103 for track in tracks:
104 self._extract_format(
ec5e77c5 105 content_id, formats, track_uris, {
fb47cb5b
S
106 'url': track.get('uri'),
107 'type': f.get('type'),
108 'mimeType': f.get('mimeType'),
109 'quality': quality.get('quality'),
600e9003 110 'class': track.get('class'),
fb47cb5b
S
111 'language': track.get('language'),
112 })
fb47cb5b 113
ec5e77c5 114 duration = float_or_none(try_get(
115 ptmd, lambda x: x['attributes']['duration']['value']), scale=1000)
116
117 return {
118 'extractor_key': ZDFIE.ie_key(),
119 'id': content_id,
120 'duration': duration,
121 'formats': formats,
122 'subtitles': self._extract_subtitles(ptmd),
9f14daf2 123 '_format_sort_fields': ('tbr', 'res', 'quality', 'language_preference'),
ec5e77c5 124 }
125
126 def _extract_player(self, webpage, video_id, fatal=True):
127 return self._parse_json(
128 self._search_regex(
129 r'(?s)data-zdfplayer-jsb=(["\'])(?P<json>{.+?})\1', webpage,
130 'player JSON', default='{}' if not fatal else NO_DEFAULT,
131 group='json'),
132 video_id)
133
134
135class ZDFIE(ZDFBaseIE):
136 _VALID_URL = r'https?://www\.zdf\.de/(?:[^/]+/)*(?P<id>[^/?#&]+)\.html'
137 _TESTS = [{
50e93e03 138 # Same as https://www.phoenix.de/sendungen/ereignisse/corona-nachgehakt/wohin-fuehrt-der-protest-in-der-pandemie-a-2050630.html
139 'url': 'https://www.zdf.de/politik/phoenix-sendungen/wohin-fuehrt-der-protest-in-der-pandemie-100.html',
140 'md5': '34ec321e7eb34231fd88616c65c92db0',
141 'info_dict': {
142 'id': '210222_phx_nachgehakt_corona_protest',
143 'ext': 'mp4',
144 'title': 'Wohin führt der Protest in der Pandemie?',
145 'description': 'md5:7d643fe7f565e53a24aac036b2122fbd',
146 'duration': 1691,
147 'timestamp': 1613948400,
148 'upload_date': '20210221',
149 },
150 'skip': 'No longer available: "Diese Seite wurde leider nicht gefunden"',
151 }, {
152 # Same as https://www.3sat.de/film/ab-18/10-wochen-sommer-108.html
153 'url': 'https://www.zdf.de/dokumentation/ab-18/10-wochen-sommer-102.html',
154 'md5': '0aff3e7bc72c8813f5e0fae333316a1d',
155 'info_dict': {
156 'id': '141007_ab18_10wochensommer_film',
157 'ext': 'mp4',
158 'title': 'Ab 18! - 10 Wochen Sommer',
159 'description': 'md5:8253f41dc99ce2c3ff892dac2d65fe26',
160 'duration': 2660,
161 'timestamp': 1608604200,
162 'upload_date': '20201222',
163 },
164 'skip': 'No longer available: "Diese Seite wurde leider nicht gefunden"',
165 }, {
f5c2c2c9 166 'url': 'https://www.zdf.de/nachrichten/heute-journal/heute-journal-vom-30-12-2021-100.html',
ec5e77c5 167 'info_dict': {
f5c2c2c9 168 'id': '211230_sendung_hjo',
ec5e77c5 169 'ext': 'mp4',
f5c2c2c9 170 'description': 'md5:47dff85977bde9fb8cba9e9c9b929839',
171 'duration': 1890.0,
172 'upload_date': '20211230',
173 'chapters': list,
174 'thumbnail': 'md5:e65f459f741be5455c952cd820eb188e',
175 'title': 'heute journal vom 30.12.2021',
176 'timestamp': 1640897100,
0fe87a87 177 },
178 'skip': 'No longer available: "Diese Seite wurde leider nicht gefunden"',
ec5e77c5 179 }, {
180 'url': 'https://www.zdf.de/dokumentation/terra-x/die-magie-der-farben-von-koenigspurpur-und-jeansblau-100.html',
181 'info_dict': {
182 'id': '151025_magie_farben2_tex',
183 'ext': 'mp4',
184 'title': 'Die Magie der Farben (2/2)',
185 'description': 'md5:a89da10c928c6235401066b60a6d5c1a',
186 'duration': 2615,
187 'timestamp': 1465021200,
188 'upload_date': '20160604',
f5c2c2c9 189 'thumbnail': 'https://www.zdf.de/assets/mauve-im-labor-100~768x432?cb=1464909117806',
ec5e77c5 190 },
5f9aaac8 191 }, {
192 'url': 'https://www.zdf.de/funk/druck-11790/funk-alles-ist-verzaubert-102.html',
0fe87a87 193 'md5': '57af4423db0455a3975d2dc4578536bc',
5f9aaac8 194 'info_dict': {
195 'ext': 'mp4',
196 'id': 'video_funk_1770473',
197 'duration': 1278,
198 'description': 'Die Neue an der Schule verdreht Ismail den Kopf.',
199 'title': 'Alles ist verzaubert',
200 'timestamp': 1635520560,
f5c2c2c9 201 'upload_date': '20211029',
0fe87a87 202 'thumbnail': 'https://www.zdf.de/assets/teaser-funk-alles-ist-verzaubert-102~1920x1080?cb=1663848412907',
5f9aaac8 203 },
ec5e77c5 204 }, {
205 # Same as https://www.phoenix.de/sendungen/dokumentationen/gesten-der-maechtigen-i-a-89468.html?ref=suche
206 'url': 'https://www.zdf.de/politik/phoenix-sendungen/die-gesten-der-maechtigen-100.html',
207 'only_matching': True,
208 }, {
209 # Same as https://www.3sat.de/film/spielfilm/der-hauptmann-100.html
210 'url': 'https://www.zdf.de/filme/filme-sonstige/der-hauptmann-112.html',
211 'only_matching': True,
212 }, {
213 # Same as https://www.3sat.de/wissen/nano/nano-21-mai-2019-102.html, equal media ids
214 'url': 'https://www.zdf.de/wissen/nano/nano-21-mai-2019-102.html',
215 'only_matching': True,
216 }, {
217 'url': 'https://www.zdf.de/service-und-hilfe/die-neue-zdf-mediathek/zdfmediathek-trailer-100.html',
218 'only_matching': True,
219 }, {
220 'url': 'https://www.zdf.de/filme/taunuskrimi/die-lebenden-und-die-toten-1---ein-taunuskrimi-100.html',
221 'only_matching': True,
222 }, {
223 'url': 'https://www.zdf.de/dokumentation/planet-e/planet-e-uebersichtsseite-weitere-dokumentationen-von-planet-e-100.html',
224 'only_matching': True,
5f9aaac8 225 }, {
50e93e03 226 'url': 'https://www.zdf.de/arte/todliche-flucht/page-video-artede-toedliche-flucht-16-100.html',
227 'info_dict': {
228 'id': 'video_artede_083871-001-A',
229 'ext': 'mp4',
230 'title': 'Tödliche Flucht (1/6)',
231 'description': 'md5:e34f96a9a5f8abd839ccfcebad3d5315',
232 'duration': 3193.0,
233 'timestamp': 1641355200,
234 'upload_date': '20220105',
235 },
62b2b736
E
236 'skip': 'No longer available "Diese Seite wurde leider nicht gefunden"'
237 }, {
238 'url': 'https://www.zdf.de/serien/soko-stuttgart/das-geld-anderer-leute-100.html',
239 'info_dict': {
240 'id': '191205_1800_sendung_sok8',
241 'ext': 'mp4',
242 'title': 'Das Geld anderer Leute',
243 'description': 'md5:cb6f660850dc5eb7d1ab776ea094959d',
244 'duration': 2581.0,
0fe87a87 245 'timestamp': 1675160100,
246 'upload_date': '20230131',
62b2b736
E
247 'thumbnail': 'https://epg-image.zdf.de/fotobase-webdelivery/images/e2d7e55a-09f0-424e-ac73-6cac4dd65f35?layout=2400x1350',
248 },
0fe87a87 249 }, {
250 'url': 'https://www.zdf.de/dokumentation/terra-x/unser-gruener-planet-wuesten-doku-100.html',
251 'info_dict': {
252 'id': '220605_dk_gruener_planet_wuesten_tex',
253 'ext': 'mp4',
254 'title': 'Unser grüner Planet - Wüsten',
255 'description': 'md5:4fc647b6f9c3796eea66f4a0baea2862',
256 'duration': 2613.0,
257 'timestamp': 1654450200,
258 'upload_date': '20220605',
259 'format_note': 'uhd, main',
260 'thumbnail': 'https://www.zdf.de/assets/saguaro-kakteen-102~3840x2160?cb=1655910690796',
261 },
ec5e77c5 262 }]
263
264 def _extract_entry(self, url, player, content, video_id):
265 title = content.get('title') or content['teaserHeadline']
266
267 t = content['mainVideoContent']['http://zdf.de/rels/target']
db4678e4 268 ptmd_path = traverse_obj(t, (
269 (('streams', 'default'), None),
270 ('http://zdf.de/rels/streams/ptmd', 'http://zdf.de/rels/streams/ptmd-template')
271 ), get_all=False)
ec5e77c5 272 if not ptmd_path:
db4678e4 273 raise ExtractorError('Could not extract ptmd_path')
ec5e77c5 274
275 info = self._extract_ptmd(
0fe87a87 276 urljoin(url, ptmd_path.replace('{playerId}', 'android_native_5')), video_id, player['apiToken'], url)
ec5e77c5 277
fb47cb5b
S
278 thumbnails = []
279 layouts = try_get(
280 content, lambda x: x['teaserImageRef']['layouts'], dict)
281 if layouts:
282 for layout_key, layout_url in layouts.items():
3052a30d
S
283 layout_url = url_or_none(layout_url)
284 if not layout_url:
fb47cb5b
S
285 continue
286 thumbnail = {
287 'url': layout_url,
288 'format_id': layout_key,
289 }
290 mobj = re.search(r'(?P<width>\d+)x(?P<height>\d+)', layout_key)
291 if mobj:
292 thumbnail.update({
293 'width': int(mobj.group('width')),
294 'height': int(mobj.group('height')),
295 })
296 thumbnails.append(thumbnail)
a5c1d955 297
f5c2c2c9 298 chapter_marks = t.get('streamAnchorTag') or []
299 chapter_marks.append({'anchorOffset': int_or_none(t.get('duration'))})
300 chapters = [{
301 'start_time': chap.get('anchorOffset'),
302 'end_time': next_chap.get('anchorOffset'),
303 'title': chap.get('anchorLabel')
304 } for chap, next_chap in zip(chapter_marks, chapter_marks[1:])]
305
ec5e77c5 306 return merge_dicts(info, {
fb47cb5b
S
307 'title': title,
308 'description': content.get('leadParagraph') or content.get('teasertext'),
309 'duration': int_or_none(t.get('duration')),
310 'timestamp': unified_timestamp(content.get('editorialDate')),
311 'thumbnails': thumbnails,
f5c2c2c9 312 'chapters': chapters or None
ec5e77c5 313 })
d5822b96 314
fb47cb5b 315 def _extract_regular(self, url, player, video_id):
50de3dba 316 content = self._call_api(
ec5e77c5 317 player['content'], video_id, 'content', player['apiToken'], url)
50de3dba 318 return self._extract_entry(player['content'], player, content, video_id)
b6de53ea 319
fb47cb5b 320 def _extract_mobile(self, video_id):
ec5e77c5 321 video = self._download_json(
fb47cb5b 322 'https://zdf-cdn.live.cellular.de/mediathekV2/document/%s' % video_id,
ec5e77c5 323 video_id)
324
fb47cb5b 325 formats = []
db4678e4 326 formitaeten = try_get(video, lambda x: x['document']['formitaeten'], list)
327 document = formitaeten and video['document']
328 if formitaeten:
329 title = document['titel']
330 content_id = document['basename']
331
332 format_urls = set()
333 for f in formitaeten or []:
334 self._extract_format(content_id, formats, format_urls, f)
fb47cb5b
S
335
336 thumbnails = []
337 teaser_bild = document.get('teaserBild')
338 if isinstance(teaser_bild, dict):
339 for thumbnail_key, thumbnail in teaser_bild.items():
340 thumbnail_url = try_get(
341 thumbnail, lambda x: x['url'], compat_str)
342 if thumbnail_url:
343 thumbnails.append({
344 'url': thumbnail_url,
345 'id': thumbnail_key,
346 'width': int_or_none(thumbnail.get('width')),
347 'height': int_or_none(thumbnail.get('height')),
348 })
b6de53ea 349
fb47cb5b 350 return {
ec5e77c5 351 'id': content_id,
fb47cb5b
S
352 'title': title,
353 'description': document.get('beschreibung'),
354 'duration': int_or_none(document.get('length')),
ec5e77c5 355 'timestamp': unified_timestamp(document.get('date')) or unified_timestamp(
356 try_get(video, lambda x: x['meta']['editorialDate'], compat_str)),
fb47cb5b
S
357 'thumbnails': thumbnails,
358 'subtitles': self._extract_subtitles(document),
359 'formats': formats,
360 }
b6de53ea 361
fb47cb5b
S
362 def _real_extract(self, url):
363 video_id = self._match_id(url)
b6de53ea 364
fb47cb5b
S
365 webpage = self._download_webpage(url, video_id, fatal=False)
366 if webpage:
367 player = self._extract_player(webpage, url, fatal=False)
368 if player:
369 return self._extract_regular(url, player, video_id)
b6de53ea 370
fb47cb5b 371 return self._extract_mobile(video_id)
b6de53ea 372
b6de53ea 373
fb47cb5b
S
374class ZDFChannelIE(ZDFBaseIE):
375 _VALID_URL = r'https?://www\.zdf\.de/(?:[^/]+/)*(?P<id>[^/?#&]+)'
c2404463 376 _TESTS = [{
fb47cb5b 377 'url': 'https://www.zdf.de/sport/das-aktuelle-sportstudio',
8560c618 378 'info_dict': {
fb47cb5b 379 'id': 'das-aktuelle-sportstudio',
db4678e4 380 'title': 'das aktuelle sportstudio',
8560c618 381 },
db4678e4 382 'playlist_mincount': 18,
c2404463 383 }, {
fb47cb5b
S
384 'url': 'https://www.zdf.de/dokumentation/planet-e',
385 'info_dict': {
386 'id': 'planet-e',
387 'title': 'planet e.',
388 },
b4cbdbd4 389 'playlist_mincount': 50,
db4678e4 390 }, {
391 'url': 'https://www.zdf.de/gesellschaft/aktenzeichen-xy-ungeloest',
392 'info_dict': {
393 'id': 'aktenzeichen-xy-ungeloest',
394 'title': 'Aktenzeichen XY... ungelöst',
395 'entries': "lambda x: not any('xy580-fall1-kindermoerder-gesucht-100' in e['url'] for e in x)",
396 },
397 'playlist_mincount': 2,
c2404463 398 }, {
fb47cb5b 399 'url': 'https://www.zdf.de/filme/taunuskrimi/',
c2404463
S
400 'only_matching': True,
401 }]
fb47cb5b
S
402
403 @classmethod
404 def suitable(cls, url):
405 return False if ZDFIE.suitable(url) else super(ZDFChannelIE, cls).suitable(url)
9abd500a 406
db4678e4 407 def _og_search_title(self, webpage, fatal=False):
408 title = super(ZDFChannelIE, self)._og_search_title(webpage, fatal=fatal)
409 return re.split(r'\s+[-|]\s+ZDF(?:mediathek)?$', title or '')[0] or None
410
9abd500a
PH
411 def _real_extract(self, url):
412 channel_id = self._match_id(url)
8560c618 413
fb47cb5b
S
414 webpage = self._download_webpage(url, channel_id)
415
db4678e4 416 matches = re.finditer(
417 r'''<div\b[^>]*?\sdata-plusbar-id\s*=\s*(["'])(?P<p_id>[\w-]+)\1[^>]*?\sdata-plusbar-url=\1(?P<url>%s)\1''' % ZDFIE._VALID_URL,
418 webpage)
419
420 if self._downloader.params.get('noplaylist', False):
421 entry = next(
422 (self.url_result(m.group('url'), ie=ZDFIE.ie_key()) for m in matches),
423 None)
424 self.to_screen('Downloading just the main video because of --no-playlist')
425 if entry:
426 return entry
427 else:
428 self.to_screen('Downloading playlist %s - add --no-playlist to download just the main video' % (channel_id, ))
429
430 def check_video(m):
431 v_ref = self._search_regex(
432 r'''(<a\b[^>]*?\shref\s*=[^>]+?\sdata-target-id\s*=\s*(["'])%s\2[^>]*>)''' % (m.group('p_id'), ),
433 webpage, 'check id', default='')
434 v_ref = extract_attributes(v_ref)
435 return v_ref.get('data-target-video-type') != 'novideo'
436
437 return self.playlist_from_matches(
438 (m.group('url') for m in matches if check_video(m)),
439 channel_id, self._og_search_title(webpage, fatal=False))