]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/ard.py
[extractor] Standardize `_live_title`
[yt-dlp.git] / yt_dlp / extractor / ard.py
CommitLineData
f9b85496
PH
1# coding: utf-8
2from __future__ import unicode_literals
3
c968f738 4import json
d5822b96
PH
5import re
6
7from .common import InfoExtractor
3741302a 8from .generic import GenericIE
d5822b96 9from ..utils import (
f9b85496 10 determine_ext,
d5822b96 11 ExtractorError,
6d3d3fc0
PH
12 int_or_none,
13 parse_duration,
75258218
S
14 qualities,
15 str_or_none,
16 try_get,
6d3d3fc0 17 unified_strdate,
75258218 18 unified_timestamp,
31eeab9f 19 update_url_query,
3052a30d 20 url_or_none,
75258218 21 xpath_text,
d5822b96 22)
f7854627 23from ..compat import compat_etree_fromstring
d5822b96 24
f9b85496 25
c968f738
RA
26class ARDMediathekBaseIE(InfoExtractor):
27 _GEO_COUNTRIES = ['DE']
1c821227 28
e37c92ec
S
29 def _extract_media_info(self, media_info_url, webpage, video_id):
30 media_info = self._download_json(
31 media_info_url, video_id, 'Downloading media JSON')
c968f738 32 return self._parse_media_info(media_info, video_id, '"fsk"' in webpage)
e37c92ec 33
c968f738 34 def _parse_media_info(self, media_info, video_id, fsk):
e37c92ec
S
35 formats = self._extract_formats(media_info, video_id)
36
37 if not formats:
c968f738 38 if fsk:
b7da73eb 39 self.raise_no_formats(
e37c92ec
S
40 'This video is only available after 20:00', expected=True)
41 elif media_info.get('_geoblocked'):
c968f738
RA
42 self.raise_geo_restricted(
43 'This video is not available due to geoblocking',
b7da73eb 44 countries=self._GEO_COUNTRIES, metadata_available=True)
e37c92ec
S
45
46 self._sort_formats(formats)
47
e37c92ec
S
48 subtitles = {}
49 subtitle_url = media_info.get('_subtitleUrl')
50 if subtitle_url:
51 subtitles['de'] = [{
ffa2cecf 52 'ext': 'ttml',
e37c92ec
S
53 'url': subtitle_url,
54 }]
55
56 return {
57 'id': video_id,
c968f738
RA
58 'duration': int_or_none(media_info.get('_duration')),
59 'thumbnail': media_info.get('_previewImage'),
60 'is_live': media_info.get('_isLive') is True,
e37c92ec
S
61 'formats': formats,
62 'subtitles': subtitles,
63 }
64
e6e5d98c 65 def _ARD_extract_episode_info(self, title):
66 """Try to extract season/episode data from the title."""
67 res = {}
68 if not title:
69 return res
70
71 for pattern in [
72 # Pattern for title like "Homo sapiens (S06/E07) - Originalversion"
73 # from: https://www.ardmediathek.de/one/sendung/doctor-who/Y3JpZDovL3dkci5kZS9vbmUvZG9jdG9yIHdobw
74 r'.*(?P<ep_info> \(S(?P<season_number>\d+)/E(?P<episode_number>\d+)\)).*',
75 # E.g.: title="Fritjof aus Norwegen (2) (AD)"
76 # from: https://www.ardmediathek.de/ard/sammlung/der-krieg-und-ich/68cMkqJdllm639Skj4c7sS/
77 r'.*(?P<ep_info> \((?:Folge |Teil )?(?P<episode_number>\d+)(?:/\d+)?\)).*',
78 r'.*(?P<ep_info>Folge (?P<episode_number>\d+)(?:\:| -|) )\"(?P<episode>.+)\".*',
79 # E.g.: title="Folge 25/42: Symmetrie"
80 # from: https://www.ardmediathek.de/ard/video/grips-mathe/folge-25-42-symmetrie/ard-alpha/Y3JpZDovL2JyLmRlL3ZpZGVvLzMyYzI0ZjczLWQ1N2MtNDAxNC05ZmZhLTFjYzRkZDA5NDU5OQ/
81 # E.g.: title="Folge 1063 - Vertrauen"
82 # from: https://www.ardmediathek.de/ard/sendung/die-fallers/Y3JpZDovL3N3ci5kZS8yMzAyMDQ4/
83 r'.*(?P<ep_info>Folge (?P<episode_number>\d+)(?:/\d+)?(?:\:| -|) ).*',
84 ]:
85 m = re.match(pattern, title)
86 if m:
87 groupdict = m.groupdict()
88 res['season_number'] = int_or_none(groupdict.get('season_number'))
89 res['episode_number'] = int_or_none(groupdict.get('episode_number'))
90 res['episode'] = str_or_none(groupdict.get('episode'))
91 # Build the episode title by removing numeric episode information:
92 if groupdict.get('ep_info') and not res['episode']:
93 res['episode'] = str_or_none(
94 title.replace(groupdict.get('ep_info'), ''))
95 if res['episode']:
96 res['episode'] = res['episode'].strip()
97 break
98
99 # As a fallback use the whole title as the episode name:
100 if not res.get('episode'):
101 res['episode'] = title.strip()
102 return res
103
e37c92ec
S
104 def _extract_formats(self, media_info, video_id):
105 type_ = media_info.get('_type')
106 media_array = media_info.get('_mediaArray', [])
107 formats = []
108 for num, media in enumerate(media_array):
109 for stream in media.get('_mediaStreamArray', []):
110 stream_urls = stream.get('_stream')
111 if not stream_urls:
112 continue
113 if not isinstance(stream_urls, list):
114 stream_urls = [stream_urls]
115 quality = stream.get('_quality')
116 server = stream.get('_server')
117 for stream_url in stream_urls:
3052a30d 118 if not url_or_none(stream_url):
91328f26 119 continue
e37c92ec 120 ext = determine_ext(stream_url)
1fc0b47f 121 if quality != 'auto' and ext in ('f4m', 'm3u8'):
122 continue
e37c92ec 123 if ext == 'f4m':
7e5edcfd 124 formats.extend(self._extract_f4m_formats(
31eeab9f
RA
125 update_url_query(stream_url, {
126 'hdcore': '3.1.1',
127 'plugin': 'aasp-3.1.1.69.124'
c968f738 128 }), video_id, f4m_id='hds', fatal=False))
e37c92ec 129 elif ext == 'm3u8':
7e5edcfd 130 formats.extend(self._extract_m3u8_formats(
c968f738
RA
131 stream_url, video_id, 'mp4', 'm3u8_native',
132 m3u8_id='hls', fatal=False))
e37c92ec
S
133 else:
134 if server and server.startswith('rtmp'):
135 f = {
136 'url': server,
137 'play_path': stream_url,
138 'format_id': 'a%s-rtmp-%s' % (num, quality),
139 }
91328f26 140 else:
e37c92ec
S
141 f = {
142 'url': stream_url,
143 'format_id': 'a%s-%s-%s' % (num, ext, quality)
144 }
c968f738
RA
145 m = re.search(
146 r'_(?P<width>\d+)x(?P<height>\d+)\.mp4$',
147 stream_url)
e37c92ec
S
148 if m:
149 f.update({
150 'width': int(m.group('width')),
151 'height': int(m.group('height')),
152 })
153 if type_ == 'audio':
154 f['vcodec'] = 'none'
155 formats.append(f)
156 return formats
157
c968f738
RA
158
159class ARDMediathekIE(ARDMediathekBaseIE):
160 IE_NAME = 'ARD:mediathek'
161 _VALID_URL = r'^https?://(?:(?:(?:www|classic)\.)?ardmediathek\.de|mediathek\.(?:daserste|rbb-online)\.de|one\.ard\.de)/(?:.*/)(?P<video_id>[0-9]+|[^0-9][^/\?]+)[^/\?]*(?:\?.*)?'
162
163 _TESTS = [{
164 # available till 26.07.2022
165 'url': 'http://www.ardmediathek.de/tv/S%C3%9CDLICHT/Was-ist-die-Kunst-der-Zukunft-liebe-Ann/BR-Fernsehen/Video?bcastId=34633636&documentId=44726822',
166 'info_dict': {
167 'id': '44726822',
168 'ext': 'mp4',
169 'title': 'Was ist die Kunst der Zukunft, liebe Anna McCarthy?',
170 'description': 'md5:4ada28b3e3b5df01647310e41f3a62f5',
171 'duration': 1740,
172 },
173 'params': {
174 # m3u8 download
175 'skip_download': True,
176 }
177 }, {
178 'url': 'https://one.ard.de/tv/Mord-mit-Aussicht/Mord-mit-Aussicht-6-39-T%C3%B6dliche-Nach/ONE/Video?bcastId=46384294&documentId=55586872',
179 'only_matching': True,
180 }, {
181 # audio
182 'url': 'http://www.ardmediathek.de/tv/WDR-H%C3%B6rspiel-Speicher/Tod-eines-Fu%C3%9Fballers/WDR-3/Audio-Podcast?documentId=28488308&bcastId=23074086',
183 'only_matching': True,
184 }, {
185 'url': 'http://mediathek.daserste.de/sendungen_a-z/328454_anne-will/22429276_vertrauen-ist-gut-spionieren-ist-besser-geht',
186 'only_matching': True,
187 }, {
188 # audio
189 'url': 'http://mediathek.rbb-online.de/radio/Hörspiel/Vor-dem-Fest/kulturradio/Audio?documentId=30796318&topRessort=radio&bcastId=9839158',
190 'only_matching': True,
191 }, {
192 'url': 'https://classic.ardmediathek.de/tv/Panda-Gorilla-Co/Panda-Gorilla-Co-Folge-274/Das-Erste/Video?bcastId=16355486&documentId=58234698',
193 'only_matching': True,
194 }]
195
196 @classmethod
197 def suitable(cls, url):
198 return False if ARDBetaMediathekIE.suitable(url) else super(ARDMediathekIE, cls).suitable(url)
199
d5822b96
PH
200 def _real_extract(self, url):
201 # determine video id from url
5ad28e7f 202 m = self._match_valid_url(url)
d5822b96 203
ca127ab2
S
204 document_id = None
205
d5822b96
PH
206 numid = re.search(r'documentId=([0-9]+)', url)
207 if numid:
ca127ab2 208 document_id = video_id = numid.group(1)
d5822b96
PH
209 else:
210 video_id = m.group('video_id')
211
5622f29a 212 webpage = self._download_webpage(url, video_id)
f9b85496 213
3791d84a
S
214 ERRORS = (
215 ('>Leider liegt eine Störung vor.', 'Video %s is unavailable'),
216 ('>Der gewünschte Beitrag ist nicht mehr verfügbar.<',
217 'Video %s is no longer available'),
3791d84a
S
218 )
219
220 for pattern, message in ERRORS:
221 if pattern in webpage:
222 raise ExtractorError(message % video_id, expected=True)
39aa42ff 223
bfd91588 224 if re.search(r'[\?&]rss($|[=&])', url):
f7854627 225 doc = compat_etree_fromstring(webpage.encode('utf-8'))
3741302a
OE
226 if doc.tag == 'rss':
227 return GenericIE()._extract_rss(url, video_id, doc)
228
a820dc72 229 title = self._og_search_title(webpage, default=None) or self._html_search_regex(
0f97c9a0 230 [r'<h1(?:\s+class="boxTopHeadline")?>(.*?)</h1>',
197224b7 231 r'<meta name="dcterms\.title" content="(.*?)"/>',
8c587971
AS
232 r'<h4 class="headline">(.*?)</h4>',
233 r'<title[^>]*>(.*?)</title>'],
0f97c9a0 234 webpage, 'title')
a820dc72 235 description = self._og_search_description(webpage, default=None) or self._html_search_meta(
29546b34
PH
236 'dcterms.abstract', webpage, 'description', default=None)
237 if description is None:
238 description = self._html_search_meta(
8c587971
AS
239 'description', webpage, 'meta description', default=None)
240 if description is None:
241 description = self._html_search_regex(
242 r'<p\s+class="teasertext">(.+?)</p>',
243 webpage, 'teaser text', default=None)
29546b34
PH
244
245 # Thumbnail is sometimes not present.
246 # It is in the mobile version, but that seems to use a different URL
247 # structure altogether.
248 thumbnail = self._og_search_thumbnail(webpage, default=None)
249
250 media_streams = re.findall(r'''(?x)
251 mediaCollection\.addMediaStream\([0-9]+,\s*[0-9]+,\s*"[^"]*",\s*
252 "([^"]+)"''', webpage)
253
254 if media_streams:
255 QUALITIES = qualities(['lo', 'hi', 'hq'])
256 formats = []
257 for furl in set(media_streams):
258 if furl.endswith('.f4m'):
259 fid = 'f4m'
260 else:
261 fid_m = re.match(r'.*\.([^.]+)\.[^.]+$', furl)
262 fid = fid_m.group(1) if fid_m else None
263 formats.append({
264 'quality': QUALITIES(fid),
265 'format_id': fid,
266 'url': furl,
267 })
e37c92ec
S
268 self._sort_formats(formats)
269 info = {
270 'formats': formats,
271 }
29546b34 272 else: # request JSON file
ca127ab2
S
273 if not document_id:
274 video_id = self._search_regex(
3f6a90eb 275 (r'/play/(?:config|media|sola)/(\d+)', r'contentId["\']\s*:\s*(\d+)'),
276 webpage, 'media id', default=None)
e37c92ec 277 info = self._extract_media_info(
ca127ab2
S
278 'http://www.ardmediathek.de/play/media/%s' % video_id,
279 webpage, video_id)
f9b85496 280
e37c92ec 281 info.update({
f9b85496 282 'id': video_id,
39ca3b5c 283 'title': title,
f9b85496 284 'description': description,
f9b85496 285 'thumbnail': thumbnail,
e37c92ec 286 })
e6e5d98c 287 info.update(self._ARD_extract_episode_info(info['title']))
e37c92ec
S
288
289 return info
6d3d3fc0
PH
290
291
292class ARDIE(InfoExtractor):
14eb1ee1 293 _VALID_URL = r'(?P<mainurl>https?://(?:www\.)?daserste\.de/(?:[^/?#&]+/)+(?P<id>[^/?#&]+))\.html'
ad29ef04 294 _TESTS = [{
a820dc72
RA
295 # available till 7.01.2022
296 'url': 'https://www.daserste.de/information/talk/maischberger/videos/maischberger-die-woche-video100.html',
297 'md5': '867d8aa39eeaf6d76407c5ad1bb0d4c1',
ad29ef04 298 'info_dict': {
14eb1ee1 299 'id': 'maischberger-die-woche-video100',
300 'display_id': 'maischberger-die-woche-video100',
ad29ef04 301 'ext': 'mp4',
a820dc72
RA
302 'duration': 3687.0,
303 'title': 'maischberger. die woche vom 7. Januar 2021',
304 'upload_date': '20210107',
ad29ef04
W
305 'thumbnail': r're:^https?://.*\.jpg$',
306 },
a54c5f83 307 }, {
14eb1ee1 308 'url': 'https://www.daserste.de/information/politik-weltgeschehen/morgenmagazin/videosextern/dominik-kahun-aus-der-nhl-direkt-zur-weltmeisterschaft-100.html',
309 'only_matching': True,
310 }, {
311 'url': 'https://www.daserste.de/information/nachrichten-wetter/tagesthemen/videosextern/tagesthemen-17736.html',
a54c5f83 312 'only_matching': True,
f17c7022
OF
313 }, {
314 'url': 'https://www.daserste.de/unterhaltung/serie/in-aller-freundschaft-die-jungen-aerzte/videos/diversity-tag-sanam-afrashteh100.html',
315 'only_matching': True,
d6a03502 316 }, {
6d3d3fc0 317 'url': 'http://www.daserste.de/information/reportage-dokumentation/dokus/videos/die-story-im-ersten-mission-unter-falscher-flagge-100.html',
d6a03502 318 'only_matching': True,
14eb1ee1 319 }, {
320 'url': 'https://www.daserste.de/unterhaltung/serie/in-aller-freundschaft-die-jungen-aerzte/Drehpause-100.html',
321 'only_matching': True,
322 }, {
323 'url': 'https://www.daserste.de/unterhaltung/film/filmmittwoch-im-ersten/videos/making-ofwendezeit-video-100.html',
324 'only_matching': True,
ad29ef04 325 }]
6d3d3fc0
PH
326
327 def _real_extract(self, url):
5ad28e7f 328 mobj = self._match_valid_url(url)
14eb1ee1 329 display_id = mobj.group('id')
6d3d3fc0
PH
330
331 player_url = mobj.group('mainurl') + '~playerXml.xml'
332 doc = self._download_xml(player_url, display_id)
333 video_node = doc.find('./video')
bf0ff932
PH
334 upload_date = unified_strdate(xpath_text(
335 video_node, './broadcastDate'))
336 thumbnail = xpath_text(video_node, './/teaserImage//variant/url')
6d3d3fc0
PH
337
338 formats = []
339 for a in video_node.findall('.//asset'):
bc2ca1bb 340 file_name = xpath_text(a, './fileName', default=None)
341 if not file_name:
342 continue
343 format_type = a.attrib.get('type')
344 format_url = url_or_none(file_name)
345 if format_url:
346 ext = determine_ext(file_name)
347 if ext == 'm3u8':
348 formats.extend(self._extract_m3u8_formats(
349 format_url, display_id, 'mp4', entry_protocol='m3u8_native',
350 m3u8_id=format_type or 'hls', fatal=False))
351 continue
352 elif ext == 'f4m':
353 formats.extend(self._extract_f4m_formats(
354 update_url_query(format_url, {'hdcore': '3.7.0'}),
355 display_id, f4m_id=format_type or 'hds', fatal=False))
356 continue
6d3d3fc0 357 f = {
bc2ca1bb 358 'format_id': format_type,
359 'width': int_or_none(xpath_text(a, './frameWidth')),
360 'height': int_or_none(xpath_text(a, './frameHeight')),
361 'vbr': int_or_none(xpath_text(a, './bitrateVideo')),
362 'abr': int_or_none(xpath_text(a, './bitrateAudio')),
363 'vcodec': xpath_text(a, './codecVideo'),
364 'tbr': int_or_none(xpath_text(a, './totalBitrate')),
6d3d3fc0 365 }
bc2ca1bb 366 server_prefix = xpath_text(a, './serverPrefix', default=None)
367 if server_prefix:
368 f.update({
369 'url': server_prefix,
370 'playpath': file_name,
371 })
6d3d3fc0 372 else:
bc2ca1bb 373 if not format_url:
374 continue
375 f['url'] = format_url
6d3d3fc0
PH
376 formats.append(f)
377 self._sort_formats(formats)
378
379 return {
14eb1ee1 380 'id': xpath_text(video_node, './videoId', default=display_id),
6d3d3fc0
PH
381 'formats': formats,
382 'display_id': display_id,
383 'title': video_node.find('./title').text,
384 'duration': parse_duration(video_node.find('./duration').text),
385 'upload_date': upload_date,
386 'thumbnail': thumbnail,
387 }
c1a37eb2
PH
388
389
c968f738 390class ARDBetaMediathekIE(ARDMediathekBaseIE):
14a08605 391 _VALID_URL = r'''(?x)https://
392 (?:(?:beta|www)\.)?ardmediathek\.de/
393 (?:(?P<client>[^/]+)/)?
394 (?:player|live|video|(?P<playlist>sendung|sammlung))/
395 (?:(?P<display_id>[^?#]+)/)?
396 (?P<id>(?(playlist)|Y3JpZDovL)[a-zA-Z0-9]+)'''
397
c1a37eb2 398 _TESTS = [{
a820dc72
RA
399 'url': 'https://www.ardmediathek.de/mdr/video/die-robuste-roswita/Y3JpZDovL21kci5kZS9iZWl0cmFnL2Ntcy84MWMxN2MzZC0wMjkxLTRmMzUtODk4ZS0wYzhlOWQxODE2NGI/',
400 'md5': 'a1dc75a39c61601b980648f7c9f9f71d',
c1a37eb2
PH
401 'info_dict': {
402 'display_id': 'die-robuste-roswita',
a820dc72 403 'id': '78566716',
c968f738 404 'title': 'Die robuste Roswita',
a820dc72 405 'description': r're:^Der Mord.*totgeglaubte Ehefrau Roswita',
c1a37eb2 406 'duration': 5316,
a820dc72
RA
407 'thumbnail': 'https://img.ardmediathek.de/standard/00/78/56/67/84/575672121/16x9/960?mandant=ard',
408 'timestamp': 1596658200,
409 'upload_date': '20200805',
c1a37eb2
PH
410 'ext': 'mp4',
411 },
14a08605 412 'skip': 'Error',
413 }, {
414 'url': 'https://www.ardmediathek.de/video/tagesschau-oder-tagesschau-20-00-uhr/das-erste/Y3JpZDovL2Rhc2Vyc3RlLmRlL3RhZ2Vzc2NoYXUvZmM4ZDUxMjgtOTE0ZC00Y2MzLTgzNzAtNDZkNGNiZWJkOTll',
415 'md5': 'f1837e563323b8a642a8ddeff0131f51',
416 'info_dict': {
417 'id': '10049223',
418 'ext': 'mp4',
419 'title': 'tagesschau, 20:00 Uhr',
420 'timestamp': 1636398000,
421 'description': 'md5:39578c7b96c9fe50afdf5674ad985e6b',
422 'upload_date': '20211108',
423 },
fe515e5c
S
424 }, {
425 'url': 'https://beta.ardmediathek.de/ard/video/Y3JpZDovL2Rhc2Vyc3RlLmRlL3RhdG9ydC9mYmM4NGM1NC0xNzU4LTRmZGYtYWFhZS0wYzcyZTIxNGEyMDE',
426 'only_matching': True,
427 }, {
428 'url': 'https://ardmediathek.de/ard/video/saartalk/saartalk-gesellschaftsgift-haltung-gegen-hass/sr-fernsehen/Y3JpZDovL3NyLW9ubGluZS5kZS9TVF84MTY4MA/',
429 'only_matching': True,
430 }, {
431 'url': 'https://www.ardmediathek.de/ard/video/trailer/private-eyes-s01-e01/one/Y3JpZDovL3dkci5kZS9CZWl0cmFnLTE1MTgwYzczLWNiMTEtNGNkMS1iMjUyLTg5MGYzOWQxZmQ1YQ/',
432 'only_matching': True,
1c821227
S
433 }, {
434 'url': 'https://www.ardmediathek.de/ard/player/Y3JpZDovL3N3ci5kZS9hZXgvbzEwNzE5MTU/',
435 'only_matching': True,
436 }, {
437 'url': 'https://www.ardmediathek.de/swr/live/Y3JpZDovL3N3ci5kZS8xMzQ4MTA0Mg',
438 'only_matching': True,
e6e5d98c 439 }, {
440 # playlist of type 'sendung'
441 'url': 'https://www.ardmediathek.de/ard/sendung/doctor-who/Y3JpZDovL3dkci5kZS9vbmUvZG9jdG9yIHdobw/',
442 'only_matching': True,
443 }, {
444 # playlist of type 'sammlung'
445 'url': 'https://www.ardmediathek.de/ard/sammlung/team-muenster/5JpTzLSbWUAK8184IOvEir/',
446 'only_matching': True,
14a08605 447 }, {
448 'url': 'https://www.ardmediathek.de/video/coronavirus-update-ndr-info/astrazeneca-kurz-lockdown-und-pims-syndrom-81/ndr/Y3JpZDovL25kci5kZS84NzE0M2FjNi0wMWEwLTQ5ODEtOTE5NS1mOGZhNzdhOTFmOTI/',
449 'only_matching': True,
450 }, {
451 'url': 'https://www.ardmediathek.de/ard/player/Y3JpZDovL3dkci5kZS9CZWl0cmFnLWQ2NDJjYWEzLTMwZWYtNGI4NS1iMTI2LTU1N2UxYTcxOGIzOQ/tatort-duo-koeln-leipzig-ihr-kinderlein-kommet',
452 'only_matching': True,
c1a37eb2
PH
453 }]
454
e6e5d98c 455 def _ARD_load_playlist_snipped(self, playlist_id, display_id, client, mode, pageNumber):
456 """ Query the ARD server for playlist information
457 and returns the data in "raw" format """
458 if mode == 'sendung':
459 graphQL = json.dumps({
460 'query': '''{
461 showPage(
462 client: "%s"
463 showId: "%s"
464 pageNumber: %d
465 ) {
466 pagination {
467 pageSize
468 totalElements
469 }
470 teasers { # Array
471 mediumTitle
472 links { target { id href title } }
473 type
474 }
475 }}''' % (client, playlist_id, pageNumber),
476 }).encode()
477 else: # mode == 'sammlung'
478 graphQL = json.dumps({
479 'query': '''{
480 morePage(
481 client: "%s"
482 compilationId: "%s"
483 pageNumber: %d
484 ) {
485 widget {
486 pagination {
487 pageSize
488 totalElements
489 }
490 teasers { # Array
491 mediumTitle
492 links { target { id href title } }
493 type
494 }
495 }
496 }}''' % (client, playlist_id, pageNumber),
497 }).encode()
498 # Ressources for ARD graphQL debugging:
499 # https://api-test.ardmediathek.de/public-gateway
500 show_page = self._download_json(
501 'https://api.ardmediathek.de/public-gateway',
502 '[Playlist] %s' % display_id,
503 data=graphQL,
504 headers={'Content-Type': 'application/json'})['data']
505 # align the structure of the returned data:
506 if mode == 'sendung':
507 show_page = show_page['showPage']
508 else: # mode == 'sammlung'
509 show_page = show_page['morePage']['widget']
510 return show_page
511
512 def _ARD_extract_playlist(self, url, playlist_id, display_id, client, mode):
513 """ Collects all playlist entries and returns them as info dict.
514 Supports playlists of mode 'sendung' and 'sammlung', and also nested
515 playlists. """
516 entries = []
517 pageNumber = 0
518 while True: # iterate by pageNumber
519 show_page = self._ARD_load_playlist_snipped(
520 playlist_id, display_id, client, mode, pageNumber)
521 for teaser in show_page['teasers']: # process playlist items
522 if '/compilation/' in teaser['links']['target']['href']:
523 # alternativ cond.: teaser['type'] == "compilation"
524 # => This is an nested compilation, e.g. like:
525 # https://www.ardmediathek.de/ard/sammlung/die-kirche-bleibt-im-dorf/5eOHzt8XB2sqeFXbIoJlg2/
526 link_mode = 'sammlung'
527 else:
528 link_mode = 'video'
529
530 item_url = 'https://www.ardmediathek.de/%s/%s/%s/%s/%s' % (
531 client, link_mode, display_id,
532 # perform HTLM quoting of episode title similar to ARD:
533 re.sub('^-|-$', '', # remove '-' from begin/end
534 re.sub('[^a-zA-Z0-9]+', '-', # replace special chars by -
535 teaser['links']['target']['title'].lower()
536 .replace('ä', 'ae').replace('ö', 'oe')
537 .replace('ü', 'ue').replace('ß', 'ss'))),
538 teaser['links']['target']['id'])
539 entries.append(self.url_result(
540 item_url,
541 ie=ARDBetaMediathekIE.ie_key()))
542
543 if (show_page['pagination']['pageSize'] * (pageNumber + 1)
544 >= show_page['pagination']['totalElements']):
545 # we've processed enough pages to get all playlist entries
546 break
547 pageNumber = pageNumber + 1
548
549 return self.playlist_result(entries, playlist_title=display_id)
550
c1a37eb2 551 def _real_extract(self, url):
14a08605 552 video_id, display_id, playlist_type, client = self._match_valid_url(url).group(
553 'id', 'display_id', 'playlist', 'client')
554 display_id, client = display_id or video_id, client or 'ard'
555
556 if playlist_type:
557 return self._ARD_extract_playlist(url, video_id, display_id, client, playlist_type)
e6e5d98c 558
c968f738
RA
559 player_page = self._download_json(
560 'https://api.ardmediathek.de/public-gateway',
b704fc1a 561 display_id, data=json.dumps({
c968f738 562 'query': '''{
b704fc1a 563 playerPage(client:"%s", clipId: "%s") {
c968f738
RA
564 blockedByFsk
565 broadcastedOn
566 maturityContentRating
567 mediaCollection {
568 _duration
569 _geoblocked
570 _isLive
571 _mediaArray {
572 _mediaStreamArray {
573 _quality
574 _server
575 _stream
c1a37eb2 576 }
c968f738
RA
577 }
578 _previewImage
579 _subtitleUrl
580 _type
581 }
582 show {
583 title
584 }
585 synopsis
586 title
587 tracking {
588 atiCustomVars {
589 contentId
590 }
591 }
592 }
14a08605 593}''' % (client, video_id),
c968f738
RA
594 }).encode(), headers={
595 'Content-Type': 'application/json'
596 })['data']['playerPage']
597 title = player_page['title']
598 content_id = str_or_none(try_get(
599 player_page, lambda x: x['tracking']['atiCustomVars']['contentId']))
600 media_collection = player_page.get('mediaCollection') or {}
601 if not media_collection and content_id:
602 media_collection = self._download_json(
603 'https://www.ardmediathek.de/play/media/' + content_id,
604 content_id, fatal=False) or {}
605 info = self._parse_media_info(
606 media_collection, content_id or video_id,
607 player_page.get('blockedByFsk'))
608 age_limit = None
609 description = player_page.get('synopsis')
610 maturity_content_rating = player_page.get('maturityContentRating')
611 if maturity_content_rating:
612 age_limit = int_or_none(maturity_content_rating.lstrip('FSK'))
f4a18db7
RA
613 if not age_limit and description:
614 age_limit = int_or_none(self._search_regex(
615 r'\(FSK\s*(\d+)\)\s*$', description, 'age limit', default=None))
c968f738
RA
616 info.update({
617 'age_limit': age_limit,
b704fc1a 618 'display_id': display_id,
c968f738
RA
619 'title': title,
620 'description': description,
621 'timestamp': unified_timestamp(player_page.get('broadcastedOn')),
622 'series': try_get(player_page, lambda x: x['show']['title']),
75258218 623 })
e6e5d98c 624 info.update(self._ARD_extract_episode_info(info['title']))
c968f738 625 return info