1 from .common
import InfoExtractor
4 get_elements_text_and_html_by_attribute
,
5 scale_thumbnails_to_max_format_width
,
9 class 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
)
17 class 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'
24 'url': 'https://www.ethnos.gr/watch/101009/nikoskaprabelosdenexoymekanenanasthenhsemethmethmetallaxhomikron',
25 'md5': '8728570e3a72e0f8d9475ba94859fdc1',
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',
33 'upload_date': '20220109',
34 'timestamp': 1641686400,
37 'url': 'https://www.tvopen.gr/watch/100979/se28099agapaomenalla7cepeisodio267cmhthrargiapashskakias',
38 'md5': '38f98a1be0c577db4ea2d1b1c0770c48',
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',
46 'upload_date': '20220108',
47 'timestamp': 1641600000,
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'):
56 ext
= determine_ext(format_url
)
58 formats_
, subs_
= self
._extract
_m
3u8_formats
_and
_subtitles
(
59 format_url
, video_id
, 'mp4', m3u8_id
=format_id
,
62 formats_
, subs_
= self
._extract
_mpd
_formats
_and
_subtitles
(
63 format_url
, video_id
, 'mp4', fatal
=False)
67 'format_id': format_id
,
70 formats
.extend(formats_
)
71 self
._merge
_subtitles
(subs_
, target
=subs
)
74 def _real_extract(self
, url
):
75 netloc
, video_id
, display_id
= self
._match
_valid
_url
(url
).group('netloc', 'id', 'slug')
76 if netloc
.find('tvopen.gr') == -1:
77 return self
._return
_canonical
_url
(url
, video_id
)
78 webpage
= self
._download
_webpage
(url
, video_id
)
79 info
= self
._search
_json
_ld
(webpage
, video_id
, expected_type
='VideoObject')
80 info
['formats'], info
['subtitles'] = self
._extract
_formats
_and
_subs
(
81 self
._download
_json
(self
._API
_ENDPOINT
, video_id
, query
={'cid': video_id
}),
83 info
['thumbnails'] = scale_thumbnails_to_max_format_width(
84 info
['formats'], info
['thumbnails'], r
'(?<=/imgHandler/)\d+')
85 description
, _html
= next(get_elements_text_and_html_by_attribute('class', 'description', webpage
))
86 if description
and _html
.startswith('<span '):
87 info
['description'] = description
89 info
['display_id'] = display_id
93 class TVOpenGrEmbedIE(TVOpenGrBaseIE
):
94 IE_NAME
= 'tvopengr:embed'
95 IE_DESC
= 'tvopen.gr embedded videos'
96 _VALID_URL
= r
'(?:https?:)?//(?:www\.|cdn\.|)(?:tvopen|ethnos).gr/embed/(?P<id>\d+)'
97 _EMBED_REGEX
= [rf
'''<iframe[^>]+?src=(?P<_q1>["'])(?P<url>{_VALID_URL})(?P=_q1)''']
100 'url': 'https://cdn.ethnos.gr/embed/100963',
101 'md5': '2da147881f45571d81662d94d086628b',
104 'display_id': 'koronoiosapotoysdieythyntestonsxoleionselftestgiaosoysdenbrhkan',
105 'title': 'md5:2c71876fadf0cda6043da0da5fca2936',
106 'description': 'md5:17482b4432e5ed30eccd93b05d6ea509',
107 'thumbnail': 'https://opentv-static.siliconweb.com/imgHandler/1920/5804e07f-799a-4247-a696-33842c94ca37.jpg',
109 'upload_date': '20220108',
110 'timestamp': 1641600000,
114 def _real_extract(self
, url
):
115 video_id
= self
._match
_id
(url
)
116 return self
._return
_canonical
_url
(url
, video_id
)