5 from .common
import InfoExtractor
21 class TVPIE(InfoExtractor
):
23 IE_DESC
= 'Telewizja Polska'
24 _VALID_URL
= r
'https?://(?:[^/]+\.)?(?:tvp(?:parlament)?\.(?:pl|info)|tvpworld\.com|swipeto\.pl)/(?:(?!\d+/)[^/]+/)*(?P<id>\d+)(?:[/?#]|$)'
27 # TVPlayer 2 in js wrapper
28 'url': 'https://swipeto.pl/64095316/uliczny-foxtrot-wypozyczalnia-kaset-kto-pamieta-dvdvideo',
32 'title': 'Uliczny Foxtrot — Wypożyczalnia kaset. Kto pamięta DVD-Video?',
35 'thumbnail': r
're:https://.+',
37 'expected_warnings': [
38 'Failed to download ISM manifest: HTTP Error 404: Not Found',
39 'Failed to download m3u8 information: HTTP Error 404: Not Found',
43 'url': 'https://www.tvp.pl/polska-press-video-uploader/wideo/62042351',
48 'description': 'Wideo Kamera',
51 'thumbnail': r
're:https://.+',
54 # TVPlayer 2 in iframe
55 'url': 'https://wiadomosci.tvp.pl/50725617/dzieci-na-sprzedaz-dla-homoseksualistow',
59 'title': 'Dzieci na sprzedaż dla homoseksualistów',
60 'description': 'md5:7d318eef04e55ddd9f87a8488ac7d590',
63 'thumbnail': r
're:https://.+',
66 # TVPlayer 2 in client-side rendered website (regional; window.__newsData)
67 'url': 'https://warszawa.tvp.pl/25804446/studio-yayo',
71 'title': 'Studio Yayo',
72 'upload_date': '20160616',
73 'timestamp': 1466075700,
76 'thumbnail': r
're:https://.+',
78 'skip': 'Geo-blocked outside PL',
80 # TVPlayer 2 in client-side rendered website (tvp.info; window.__videoData)
81 'url': 'https://www.tvp.info/52880236/09042021-0800',
85 'title': '09.04.2021, 08:00',
87 'thumbnail': r
're:https://.+',
89 'skip': 'Geo-blocked outside PL',
91 # client-side rendered (regional) program (playlist) page
92 'url': 'https://opole.tvp.pl/9660819/rozmowa-dnia',
95 'description': 'Od poniedziałku do piątku o 18:55',
96 'title': 'Rozmowa dnia',
98 'playlist_mincount': 1800,
100 'skip_download': True,
103 # ABC-specific video embeding
104 # moved to https://bajkowakraina.tvp.pl/wideo/50981130,teleranek,51027049,zubr,51116450
105 'url': 'https://abc.tvp.pl/48636269/zubry-odc-124',
109 'title': 'Teleranek, Żubr',
111 'skip': 'unavailable',
113 # yet another vue page
114 'url': 'https://jp2.tvp.pl/46925618/filmy',
119 'playlist_mincount': 19,
121 'url': 'http://vod.tvp.pl/seriale/obyczajowe/na-sygnale/sezon-2-27-/odc-39/17834272',
122 'only_matching': True,
124 'url': 'http://wiadomosci.tvp.pl/25169746/24052016-1200',
125 'only_matching': True,
127 'url': 'http://krakow.tvp.pl/25511623/25lecie-mck-wyjatkowe-miejsce-na-mapie-krakowa',
128 'only_matching': True,
130 'url': 'http://teleexpress.tvp.pl/25522307/wierni-wzieli-udzial-w-procesjach',
131 'only_matching': True,
133 'url': 'http://sport.tvp.pl/25522165/krychowiak-uspokaja-w-sprawie-kontuzji-dwa-tygodnie-to-maksimum',
134 'only_matching': True,
136 'url': 'http://www.tvp.info/25511919/trwa-rewolucja-wladza-zdecydowala-sie-na-pogwalcenie-konstytucji',
137 'only_matching': True,
139 'url': 'https://tvp.info/49193823/teczowe-flagi-na-pomnikach-prokuratura-wszczela-postepowanie-wieszwiecej',
140 'only_matching': True,
142 'url': 'https://www.tvpparlament.pl/retransmisje-vod/inne/wizyta-premiera-mateusza-morawieckiego-w-firmie-berotu-sp-z-oo/48857277',
143 'only_matching': True,
145 'url': 'https://tvpworld.com/48583640/tescos-polish-business-bought-by-danish-chain-netto',
146 'only_matching': True,
149 def _parse_vue_website_data(self
, webpage
, page_id
):
150 website_data
= self
._search
_regex
([
151 # website - regiony, tvp.info
152 # directory - jp2.tvp.pl
153 r
'window\.__(?:website|directory)Data\s*=\s*({(?:.|\s)+?});',
154 ], webpage
, 'website data')
157 return self
._parse
_json
(website_data
, page_id
, transform_source
=js_to_json
)
159 def _extract_vue_video(self
, video_data
, page_id
=None):
160 if isinstance(video_data
, str):
161 video_data
= self
._parse
_json
(video_data
, page_id
, transform_source
=js_to_json
)
163 image
= video_data
.get('image')
165 for thumb
in (image
if isinstance(image
, list) else [image
]):
166 thmb_url
= str_or_none(thumb
.get('url'))
171 is_website
= video_data
.get('type') == 'website'
173 url
= video_data
['url']
175 url
= 'tvp:' + str_or_none(video_data
.get('_id') or page_id
)
177 '_type': 'url_transparent',
178 'id': str_or_none(video_data
.get('_id') or page_id
),
180 'ie_key': (TVPIE
if is_website
else TVPEmbedIE
).ie_key(),
181 'title': str_or_none(video_data
.get('title')),
182 'description': str_or_none(video_data
.get('lead')),
183 'timestamp': int_or_none(video_data
.get('release_date_long')),
184 'duration': int_or_none(video_data
.get('duration')),
185 'thumbnails': thumbnails
,
188 def _handle_vuejs_page(self
, url
, webpage
, page_id
):
189 # vue client-side rendered sites (all regional pages + tvp.info)
190 video_data
= self
._search
_regex
([
191 r
'window\.__(?:news|video)Data\s*=\s*({(?:.|\s)+?})\s*;',
192 ], webpage
, 'video data', default
=None)
194 return self
._extract
_vue
_video
(video_data
, page_id
=page_id
)
196 website_data
= self
._parse
_vue
_website
_data
(webpage
, page_id
)
198 entries
= self
._vuejs
_entries
(url
, website_data
, page_id
)
203 'title': str_or_none(website_data
.get('title')),
204 'description': str_or_none(website_data
.get('lead')),
207 raise ExtractorError('Could not extract video/website data')
209 def _vuejs_entries(self
, url
, website_data
, page_id
):
211 def extract_videos(wd
):
212 if wd
.get('latestVideo'):
213 yield self
._extract
_vue
_video
(wd
['latestVideo'])
214 for video
in wd
.get('videos') or []:
215 yield self
._extract
_vue
_video
(video
)
216 for video
in wd
.get('items') or []:
217 yield self
._extract
_vue
_video
(video
)
219 yield from extract_videos(website_data
)
221 if website_data
.get('items_total_count') > website_data
.get('items_per_page'):
222 for page
in itertools
.count(2):
223 page_website_data
= self
._parse
_vue
_website
_data
(
224 self
._download
_webpage
(url
, page_id
, note
=f
'Downloading page #{page}',
225 query
={'page': page
}),
227 if not page_website_data
.get('videos') and not page_website_data
.get('items'):
229 yield from extract_videos(page_website_data
)
231 def _real_extract(self
, url
):
232 page_id
= self
._match
_id
(url
)
233 webpage
, urlh
= self
._download
_webpage
_handle
(url
, page_id
)
235 # The URL may redirect to a VOD
236 # example: https://vod.tvp.pl/48463890/wadowickie-spotkania-z-janem-pawlem-ii
237 for ie_cls
in (TVPVODSeriesIE
, TVPVODVideoIE
):
238 if ie_cls
.suitable(urlh
.url
):
239 return self
.url_result(urlh
.url
, ie
=ie_cls
.ie_key(), video_id
=page_id
)
242 r
'window\.__(?:video|news|website|directory)Data\s*=',
244 return self
._handle
_vuejs
_page
(url
, webpage
, page_id
)
246 # classic server-side rendered sites
247 video_id
= self
._search
_regex
([
248 r
'<iframe[^>]+src="[^"]*?embed\.php\?(?:[^&]+&)*ID=(\d+)',
249 r
'<iframe[^>]+src="[^"]*?object_id=(\d+)',
250 r
"object_id\s*:\s*'(\d+)'",
251 r
'data-video-id="(\d+)"',
253 # abc.tvp.pl - somehow there are more than one video IDs that seem to be the same video?
254 # the first one is referenced to as "copyid", and seems to be unused by the website
255 r
'<script>\s*tvpabc\.video\.init\(\s*\d+,\s*(\d+)\s*\)\s*</script>',
256 ], webpage
, 'video id', default
=page_id
)
258 '_type': 'url_transparent',
259 'url': 'tvp:' + video_id
,
260 'description': self
._og
_search
_description
(
261 webpage
, default
=None) or (self
._html
_search
_meta
(
262 'description', webpage
, default
=None)
263 if '//s.tvp.pl/files/portal/v' in webpage
else None),
264 'thumbnail': self
._og
_search
_thumbnail
(webpage
, default
=None),
265 'ie_key': 'TVPEmbed',
269 class TVPStreamIE(InfoExtractor
):
270 IE_NAME
= 'tvp:stream'
271 _VALID_URL
= r
'(?:tvpstream:|https?://(?:tvpstream\.vod|stream)\.tvp\.pl/(?:\?(?:[^&]+[&;])*channel_id=)?)(?P<id>\d*)'
273 'url': 'https://stream.tvp.pl/?channel_id=56969941',
274 'only_matching': True,
276 # untestable as "video" id changes many times across a day
277 'url': 'https://tvpstream.vod.tvp.pl/?channel_id=1455',
278 'only_matching': True,
280 'url': 'tvpstream:39821455',
281 'only_matching': True,
283 # the default stream when you provide no channel_id, most probably TVP Info
285 'only_matching': True,
287 'url': 'https://tvpstream.vod.tvp.pl/',
288 'only_matching': True,
291 def _real_extract(self
, url
):
292 channel_id
= self
._match
_id
(url
)
293 channel_url
= self
._proto
_relative
_url
(f
'//stream.tvp.pl/?channel_id={channel_id}' or 'default')
294 webpage
= self
._download
_webpage
(channel_url
, channel_id
or 'default', 'Downloading channel webpage')
295 channels
= self
._search
_json
(
296 r
'window\.__channels\s*=', webpage
, 'channel list', channel_id
,
297 contains_pattern
=r
'\[\s*{(?s:.+)}\s*]')
298 channel
= traverse_obj(channels
, (lambda _
, v
: channel_id
== str(v
['id'])), get_all
=False) if channel_id
else channels
[0]
299 audition
= traverse_obj(channel
, ('items', lambda _
, v
: v
['is_live'] is True), get_all
=False)
301 '_type': 'url_transparent',
302 'id': channel_id
or channel
['id'],
303 'url': 'tvp:{}'.format(audition
['video_id']),
304 'title': audition
.get('title'),
305 'alt_title': channel
.get('title'),
307 'ie_key': 'TVPEmbed',
311 class TVPEmbedIE(InfoExtractor
):
312 IE_NAME
= 'tvp:embed'
313 IE_DESC
= 'Telewizja Polska'
315 _VALID_URL
= r
'''(?x)
320 (?:tvp(?:parlament)?\.pl|tvp\.info|tvpworld\.com|swipeto\.pl)/
322 (?:tvplayer\.php\?.*?object_id
323 |TVPlayer2/(?:embed|api)\.php\?.*[Ii][Dd])
324 |shared/details\.php\?.*?object_id)
328 _EMBED_REGEX
= [rf
'(?x)<iframe[^>]+?src=(["\'])(?P<url>{_VALID_URL[4:]})']
335 'title': 'Czas honoru, odc. 13 – Władek',
336 'description': 'md5:76649d2014f65c99477be17f23a4dead',
339 'series': 'Czas honoru',
340 'episode': 'Episode 13',
341 'episode_number': 13,
343 'thumbnail': r
're:https://.+',
346 'url': 'https://www.tvp.pl/sess/tvplayer.php?object_id=51247504&autoplay=false',
350 'title': 'Razmova 091220',
353 'thumbnail': r
're:https://.+',
356 # TVPlayer2 embed URL
357 'url': 'https://tvp.info/sess/TVPlayer2/embed.php?ID=50595757',
358 'only_matching': True,
360 'url': 'https://wiadomosci.tvp.pl/sess/TVPlayer2/api.php?id=51233452',
361 'only_matching': True,
363 # pulsembed on dziennik.pl
364 'url': 'https://www.tvp.pl/shared/details.php?copy_id=52205981&object_id=52204505&autoplay=false&is_muted=false&allowfullscreen=true&template=external-embed/video/iframe-video.html',
365 'only_matching': True,
368 def _real_extract(self
, url
):
369 video_id
= self
._match
_id
(url
)
371 # it could be anything that is a valid JS function name
372 callback
= random
.choice((
377 'sasin_przejebal_70_milionow_PLN',
378 'tvp_is_a_state_propaganda_service',
381 webpage
= self
._download
_webpage
(
382 f
'https://www.tvp.pl/sess/TVPlayer2/api.php?id={video_id}&@method=getTvpConfig&@callback={callback}', video_id
)
384 # stripping JSONP padding
385 datastr
= webpage
[15 + len(callback
):-3]
386 if datastr
.startswith('null,'):
387 error
= self
._parse
_json
(datastr
[5:], video_id
, fatal
=False)
388 error_desc
= traverse_obj(error
, (0, 'desc'))
390 if error_desc
== 'Obiekt wymaga płatności':
391 raise ExtractorError('Video requires payment and log-in, but log-in is not implemented')
393 raise ExtractorError(error_desc
or 'unexpected JSON error')
395 content
= self
._parse
_json
(datastr
, video_id
)['content']
396 info
= content
['info']
397 is_live
= try_get(info
, lambda x
: x
['isLive'], bool)
399 if info
.get('isGeoBlocked'):
400 # actual country list is not provided, we just assume it's always available in PL
401 self
.raise_geo_restricted(countries
=['PL'])
404 for file in content
['files']:
405 video_url
= url_or_none(file.get('url'))
408 ext
= determine_ext(video_url
, None)
410 formats
.extend(self
._extract
_m
3u8_formats
(video_url
, video_id
, m3u8_id
='hls', fatal
=False, live
=is_live
))
413 # doesn't work with either ffmpeg or native downloader
415 formats
.extend(self
._extract
_mpd
_formats
(video_url
, video_id
, mpd_id
='dash', fatal
=False))
417 formats
.extend(self
._extract
_f
4m
_formats
(video_url
, video_id
, f4m_id
='hds', fatal
=False))
418 elif video_url
.endswith('.ism/manifest'):
419 formats
.extend(self
._extract
_ism
_formats
(video_url
, video_id
, ism_id
='mss', fatal
=False))
422 'format_id': 'direct',
424 'ext': ext
or file.get('type'),
425 'fps': int_or_none(traverse_obj(file, ('quality', 'fps'))),
426 'tbr': int_or_none(traverse_obj(file, ('quality', 'bitrate')), scale
=1000),
427 'width': int_or_none(traverse_obj(file, ('quality', 'width'))),
428 'height': int_or_none(traverse_obj(file, ('quality', 'height'))),
431 title
= dict_get(info
, ('subtitle', 'title', 'seoTitle'))
432 description
= dict_get(info
, ('description', 'seoDescription'))
434 for thumb
in content
.get('posters') or ():
435 thumb_url
= thumb
.get('src')
436 if not thumb_url
or '{width}' in thumb_url
or '{height}' in thumb_url
:
439 'url': thumb
.get('src'),
440 'width': thumb
.get('width'),
441 'height': thumb
.get('height'),
443 age_limit
= try_get(info
, lambda x
: x
['ageGroup']['minAge'], int)
446 duration
= try_get(info
, lambda x
: x
['duration'], int) if not is_live
else None
449 for sub
in content
.get('subtitles') or []:
450 if not sub
.get('url'):
452 subtitles
.setdefault(sub
['lang'], []).append({
454 'ext': sub
.get('type'),
460 'description': description
,
461 'thumbnails': thumbnails
,
462 'age_limit': age_limit
,
464 'duration': duration
,
466 'subtitles': subtitles
,
470 if info
.get('vortalName') == 'vod':
472 'title': '{}, {}'.format(info
.get('title'), info
.get('subtitle')),
473 'series': info
.get('title'),
474 'season': info
.get('season'),
475 'episode_number': info
.get('episode'),
481 class TVPVODBaseIE(InfoExtractor
):
482 _API_BASE_URL
= 'https://vod.tvp.pl/api/products'
484 def _call_api(self
, resource
, video_id
, query
={}, **kwargs
):
485 is_valid
= lambda x
: 200 <= x
< 300
486 document
, urlh
= self
._download
_json
_handle
(
487 f
'{self._API_BASE_URL}/{resource}', video_id
,
488 query
={'lang': 'pl', 'platform': 'BROWSER', **query
},
489 expected_status
=lambda x
: is_valid(x
) or 400 <= x
< 500, **kwargs
)
490 if is_valid(urlh
.status
):
492 raise ExtractorError(f
'Woronicza said: {document.get("code")} (HTTP {urlh.status})')
494 def _parse_video(self
, video
, with_url
=True):
495 info_dict
= traverse_obj(video
, {
496 'id': ('id', {str_or_none}
),
498 'age_limit': ('rating', {int_or_none}
),
499 'duration': ('duration', {int_or_none}
),
500 'episode_number': ('number', {int_or_none}
),
501 'series': ('season', 'serial', 'title', {str_or_none}
),
502 'thumbnails': ('images', ..., ..., {'url': ('url', {url_or_none}
)}),
504 info_dict
['description'] = clean_html(dict_get(video
, ('lead', 'description')))
508 'url': video
['webUrl'],
509 'ie_key': TVPVODVideoIE
.ie_key(),
514 class TVPVODVideoIE(TVPVODBaseIE
):
516 _VALID_URL
= r
'https?://vod\.tvp\.pl/(?P<category>[a-z\d-]+,\d+)/[a-z\d-]+(?<!-odcinki)(?:-odcinki,\d+/odcinek-\d+,S\d+E\d+)?,(?P<id>\d+)/?(?:[?#]|$)'
519 'url': 'https://vod.tvp.pl/dla-dzieci,24/laboratorium-alchemika-odcinki,309338/odcinek-24,S01E24,311357',
523 'title': 'Tusze termiczne. Jak zobaczyć niewidoczne. Odcinek 24',
524 'description': 'md5:1d4098d3e537092ccbac1abf49b7cd4c',
526 'episode_number': 24,
527 'episode': 'Episode 24',
529 'series': 'Laboratorium alchemika',
530 'thumbnail': 're:https?://.+',
532 'params': {'skip_download': 'm3u8'},
534 'url': 'https://vod.tvp.pl/filmy-dokumentalne,163/ukrainski-sluga-narodu,339667',
538 'title': 'Ukraiński sługa narodu',
539 'description': 'md5:b7940c0a8e439b0c81653a986f544ef3',
542 'thumbnail': 're:https?://.+',
543 'subtitles': 'count:2',
545 'params': {'skip_download': 'm3u8'},
547 'note': 'embed fails with "payment required"',
548 'url': 'https://vod.tvp.pl/seriale,18/polowanie-na-cmy-odcinki,390116/odcinek-7,S01E07,398869',
553 'description': 'md5:dd2bb33f023dc5c2fbaddfbe4cb5dba0',
556 'series': 'Polowanie na ćmy',
558 'episode': 'Episode 7',
559 'thumbnail': 're:https?://.+',
561 'params': {'skip_download': 'm3u8'},
563 'url': 'https://vod.tvp.pl/live,1/tvp-world,399731',
567 'title': r
're:TVP WORLD \d{4}-\d{2}-\d{2} \d{2}:\d{2}',
568 'live_status': 'is_live',
569 'thumbnail': 're:https?://.+',
573 def _real_extract(self
, url
):
574 category
, video_id
= self
._match
_valid
_url
(url
).group('category', 'id')
576 is_live
= category
== 'live,1'
577 entity
= 'lives' if is_live
else 'vods'
578 info_dict
= self
._parse
_video
(self
._call
_api
(f
'{entity}/{video_id}', video_id
), with_url
=False)
580 playlist
= self
._call
_api
(f
'{video_id}/videos/playlist', video_id
, query
={'videoType': 'MOVIE'})
582 info_dict
['formats'] = []
583 for manifest_url
in traverse_obj(playlist
, ('sources', 'HLS', ..., 'src')):
584 info_dict
['formats'].extend(self
._extract
_m
3u8_formats
(manifest_url
, video_id
, fatal
=False))
585 for manifest_url
in traverse_obj(playlist
, ('sources', 'DASH', ..., 'src')):
586 info_dict
['formats'].extend(self
._extract
_mpd
_formats
(manifest_url
, video_id
, fatal
=False))
588 info_dict
['subtitles'] = {}
589 for sub
in playlist
.get('subtitles') or []:
590 info_dict
['subtitles'].setdefault(sub
.get('language') or 'und', []).append({
595 info_dict
['is_live'] = is_live
600 class TVPVODSeriesIE(TVPVODBaseIE
):
601 IE_NAME
= 'tvp:vod:series'
602 _VALID_URL
= r
'https?://vod\.tvp\.pl/[a-z\d-]+,\d+/[a-z\d-]+-odcinki,(?P<id>\d+)(?:\?[^#]+)?(?:#.+)?$'
605 'url': 'https://vod.tvp.pl/seriale,18/ranczo-odcinki,316445',
610 'categories': ['seriale'],
612 'playlist_count': 130,
614 'url': 'https://vod.tvp.pl/programy,88/rolnik-szuka-zony-odcinki,284514',
615 'only_matching': True,
617 'url': 'https://vod.tvp.pl/dla-dzieci,24/laboratorium-alchemika-odcinki,309338',
618 'only_matching': True,
621 def _entries(self
, seasons
, playlist_id
):
622 for season
in seasons
:
623 episodes
= self
._call
_api
(
624 f
'vods/serials/{playlist_id}/seasons/{season["id"]}/episodes', playlist_id
,
625 note
=f
'Downloading episode list for {season["title"]}')
626 yield from map(self
._parse
_video
, episodes
)
628 def _real_extract(self
, url
):
629 playlist_id
= self
._match
_id
(url
)
630 metadata
= self
._call
_api
(
631 f
'vods/serials/{playlist_id}', playlist_id
,
632 note
='Downloading serial metadata')
633 seasons
= self
._call
_api
(
634 f
'vods/serials/{playlist_id}/seasons', playlist_id
,
635 note
='Downloading season list')
636 return self
.playlist_result(
637 self
._entries
(seasons
, playlist_id
), playlist_id
, strip_or_none(metadata
.get('title')),
638 clean_html(traverse_obj(metadata
, ('description', 'lead'), expected_type
=strip_or_none
)),
639 categories
=[traverse_obj(metadata
, ('mainCategory', 'name'))],
640 age_limit
=int_or_none(metadata
.get('rating')),