]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/tvopengr.py
[extractors] Use new framework for existing embeds (#4307)
[yt-dlp.git] / yt_dlp / extractor / tvopengr.py
CommitLineData
1a20d295
ZM
1from .common import InfoExtractor
2from ..utils import (
3 determine_ext,
4 get_elements_text_and_html_by_attribute,
27231526 5 scale_thumbnails_to_max_format_width,
1a20d295
ZM
6)
7
8
9class TVOpenGrBaseIE(InfoExtractor):
10 def _return_canonical_url(self, url, video_id):
11 webpage = self._download_webpage(url, video_id)
12 canonical_url = self._og_search_url(webpage)
13 title = self._og_search_title(webpage)
14 return self.url_result(canonical_url, ie=TVOpenGrWatchIE.ie_key(), video_id=video_id, video_title=title)
15
16
17class TVOpenGrWatchIE(TVOpenGrBaseIE):
18 IE_NAME = 'tvopengr:watch'
19 IE_DESC = 'tvopen.gr (and ethnos.gr) videos'
20 _VALID_URL = r'https?://(?P<netloc>(?:www\.)?(?:tvopen|ethnos)\.gr)/watch/(?P<id>\d+)/(?P<slug>[^/]+)'
21 _API_ENDPOINT = 'https://www.tvopen.gr/templates/data/player'
22
23 _TESTS = [{
24 'url': 'https://www.ethnos.gr/watch/101009/nikoskaprabelosdenexoymekanenanasthenhsemethmethmetallaxhomikron',
25 'md5': '8728570e3a72e0f8d9475ba94859fdc1',
26 'info_dict': {
27 'id': '101009',
28 'title': 'md5:51f68773dcb6c70498cd326f45fefdf0',
29 'display_id': 'nikoskaprabelosdenexoymekanenanasthenhsemethmethmetallaxhomikron',
30 'description': 'md5:78fff49f18fb3effe41b070e5c7685d6',
31 'thumbnail': 'https://opentv-static.siliconweb.com/imgHandler/1920/d573ba71-ec5f-43c6-b4cb-d181f327d3a8.jpg',
32 'ext': 'mp4',
33 'upload_date': '20220109',
34 'timestamp': 1641686400,
35 },
36 }, {
37 'url': 'https://www.tvopen.gr/watch/100979/se28099agapaomenalla7cepeisodio267cmhthrargiapashskakias',
38 'md5': '38f98a1be0c577db4ea2d1b1c0770c48',
39 'info_dict': {
40 'id': '100979',
41 'title': 'md5:e021f3001e16088ee40fa79b20df305b',
42 'display_id': 'se28099agapaomenalla7cepeisodio267cmhthrargiapashskakias',
43 'description': 'md5:ba17db53954134eb8d625d199e2919fb',
44 'thumbnail': 'https://opentv-static.siliconweb.com/imgHandler/1920/9bb71cf1-21da-43a9-9d65-367950fde4e3.jpg',
45 'ext': 'mp4',
46 'upload_date': '20220108',
47 'timestamp': 1641600000,
48 },
49 }]
50
51 def _extract_formats_and_subs(self, response, video_id):
52 formats, subs = [], {}
53 for format_id, format_url in response.items():
54 if format_id not in ('stream', 'httpstream', 'mpegdash'):
55 continue
56 ext = determine_ext(format_url)
57 if ext == 'm3u8':
58 formats_, subs_ = self._extract_m3u8_formats_and_subtitles(
59 format_url, video_id, 'mp4', m3u8_id=format_id,
60 fatal=False)
61 elif ext == 'mpd':
62 formats_, subs_ = self._extract_mpd_formats_and_subtitles(
63 format_url, video_id, 'mp4', fatal=False)
64 else:
65 formats.append({
66 'url': format_url,
67 'format_id': format_id,
68 })
69 continue
70 formats.extend(formats_)
71 self._merge_subtitles(subs_, target=subs)
72 self._sort_formats(formats)
73 return formats, subs
74
1a20d295
ZM
75 def _real_extract(self, url):
76 netloc, video_id, display_id = self._match_valid_url(url).group('netloc', 'id', 'slug')
77 if netloc.find('tvopen.gr') == -1:
78 return self._return_canonical_url(url, video_id)
79 webpage = self._download_webpage(url, video_id)
80 info = self._search_json_ld(webpage, video_id, expected_type='VideoObject')
81 info['formats'], info['subtitles'] = self._extract_formats_and_subs(
82 self._download_json(self._API_ENDPOINT, video_id, query={'cid': video_id}),
83 video_id)
27231526 84 info['thumbnails'] = scale_thumbnails_to_max_format_width(
1a20d295
ZM
85 info['formats'], info['thumbnails'], r'(?<=/imgHandler/)\d+')
86 description, _html = next(get_elements_text_and_html_by_attribute('class', 'description', webpage))
87 if description and _html.startswith('<span '):
88 info['description'] = description
89 info['id'] = video_id
90 info['display_id'] = display_id
91 return info
92
93
94class TVOpenGrEmbedIE(TVOpenGrBaseIE):
95 IE_NAME = 'tvopengr:embed'
96 IE_DESC = 'tvopen.gr embedded videos'
97 _VALID_URL = r'(?:https?:)?//(?:www\.|cdn\.|)(?:tvopen|ethnos).gr/embed/(?P<id>\d+)'
bfd973ec 98 _EMBED_REGEX = [rf'''<iframe[^>]+?src=(?P<_q1>["'])(?P<url>{_VALID_URL})(?P=_q1)''']
1a20d295
ZM
99
100 _TESTS = [{
101 'url': 'https://cdn.ethnos.gr/embed/100963',
102 'md5': '2da147881f45571d81662d94d086628b',
103 'info_dict': {
104 'id': '100963',
105 'display_id': 'koronoiosapotoysdieythyntestonsxoleionselftestgiaosoysdenbrhkan',
106 'title': 'md5:2c71876fadf0cda6043da0da5fca2936',
107 'description': 'md5:17482b4432e5ed30eccd93b05d6ea509',
108 'thumbnail': 'https://opentv-static.siliconweb.com/imgHandler/1920/5804e07f-799a-4247-a696-33842c94ca37.jpg',
109 'ext': 'mp4',
110 'upload_date': '20220108',
111 'timestamp': 1641600000,
112 },
113 }]
114
1a20d295
ZM
115 def _real_extract(self, url):
116 video_id = self._match_id(url)
117 return self._return_canonical_url(url, video_id)