mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-08-03 10:50:28 +00:00

Some checks failed
CodeQL / Analyze (python) (push) Has been cancelled
Download Tests / Quick Download Tests (push) Has been cancelled
Download Tests / Full Download Tests (ubuntu-latest, 3.10) (push) Has been cancelled
Download Tests / Full Download Tests (ubuntu-latest, 3.11) (push) Has been cancelled
Download Tests / Full Download Tests (ubuntu-latest, 3.12) (push) Has been cancelled
Download Tests / Full Download Tests (ubuntu-latest, 3.13) (push) Has been cancelled
Download Tests / Full Download Tests (ubuntu-latest, pypy-3.11) (push) Has been cancelled
Download Tests / Full Download Tests (windows-latest, 3.9) (push) Has been cancelled
Download Tests / Full Download Tests (windows-latest, pypy-3.11) (push) Has been cancelled
Quick Test / Core Test (push) Has been cancelled
Quick Test / Code check (push) Has been cancelled
Release (master) / release (push) Has been cancelled
Release (master) / publish_pypi (push) Has been cancelled
Authored by: doe1080
131 lines
5.9 KiB
Python
131 lines
5.9 KiB
Python
from .common import InfoExtractor
|
||
from ..utils import (
|
||
determine_ext,
|
||
get_elements_text_and_html_by_attribute,
|
||
scale_thumbnails_to_max_format_width,
|
||
)
|
||
|
||
|
||
class TVOpenGrBaseIE(InfoExtractor):
|
||
def _return_canonical_url(self, url, video_id):
|
||
webpage = self._download_webpage(url, video_id)
|
||
canonical_url = self._og_search_url(webpage)
|
||
title = self._og_search_title(webpage)
|
||
return self.url_result(canonical_url, ie=TVOpenGrWatchIE.ie_key(), video_id=video_id, video_title=title)
|
||
|
||
|
||
class TVOpenGrWatchIE(TVOpenGrBaseIE):
|
||
IE_NAME = 'tvopengr:watch'
|
||
IE_DESC = 'tvopen.gr (and ethnos.gr) videos'
|
||
_VALID_URL = r'https?://(?P<netloc>(?:www\.)?(?:tvopen|ethnos)\.gr)/watch/(?P<id>\d+)/(?P<slug>[^/]+)'
|
||
_API_ENDPOINT = 'https://www.tvopen.gr/templates/data/player'
|
||
|
||
_TESTS = [{
|
||
'url': 'https://www.ethnos.gr/watch/101009/nikoskaprabelosdenexoymekanenanasthenhsemethmethmetallaxhomikron',
|
||
'info_dict': {
|
||
'id': '101009',
|
||
'title': 'md5:51f68773dcb6c70498cd326f45fefdf0',
|
||
'display_id': 'nikoskaprabelosdenexoymekanenanasthenhsemethmethmetallaxhomikron',
|
||
'description': 'md5:78fff49f18fb3effe41b070e5c7685d6',
|
||
'duration': 246.0,
|
||
'thumbnail': 'https://opentv-static.siliconweb.com/imgHandler/1920/d573ba71-ec5f-43c6-b4cb-d181f327d3a8.jpg',
|
||
'ext': 'mp4',
|
||
'upload_date': '20220109',
|
||
'timestamp': 1641686400,
|
||
},
|
||
}, {
|
||
'url': 'https://www.tvopen.gr/watch/100979/se28099agapaomenalla7cepeisodio267cmhthrargiapashskakias',
|
||
'info_dict': {
|
||
'id': '100979',
|
||
'title': 'md5:e021f3001e16088ee40fa79b20df305b',
|
||
'display_id': 'se28099agapaomenalla7cepeisodio267cmhthrargiapashskakias',
|
||
'description': 'md5:ba17db53954134eb8d625d199e2919fb',
|
||
'duration': 2420.0,
|
||
'thumbnail': 'https://opentv-static.siliconweb.com/imgHandler/1920/9bb71cf1-21da-43a9-9d65-367950fde4e3.jpg',
|
||
'ext': 'mp4',
|
||
'upload_date': '20220108',
|
||
'timestamp': 1641600000,
|
||
},
|
||
}]
|
||
|
||
def _extract_formats_and_subs(self, response, video_id):
|
||
formats, subs = [], {}
|
||
for format_id, format_url in response.items():
|
||
if format_id not in ('stream', 'httpstream', 'mpegdash'):
|
||
continue
|
||
ext = determine_ext(format_url)
|
||
if ext == 'm3u8':
|
||
formats_, subs_ = self._extract_m3u8_formats_and_subtitles(
|
||
format_url, video_id, 'mp4', m3u8_id=format_id,
|
||
fatal=False)
|
||
elif ext == 'mpd':
|
||
formats_, subs_ = self._extract_mpd_formats_and_subtitles(
|
||
format_url, video_id, 'mp4', fatal=False)
|
||
else:
|
||
formats.append({
|
||
'url': format_url,
|
||
'format_id': format_id,
|
||
})
|
||
continue
|
||
formats.extend(formats_)
|
||
self._merge_subtitles(subs_, target=subs)
|
||
return formats, subs
|
||
|
||
def _real_extract(self, url):
|
||
netloc, video_id, display_id = self._match_valid_url(url).group('netloc', 'id', 'slug')
|
||
if netloc.find('tvopen.gr') == -1:
|
||
return self._return_canonical_url(url, video_id)
|
||
webpage = self._download_webpage(url, video_id)
|
||
info = self._search_json_ld(webpage, video_id, expected_type='VideoObject')
|
||
info['formats'], info['subtitles'] = self._extract_formats_and_subs(
|
||
self._download_json(self._API_ENDPOINT, video_id, query={'cid': video_id}),
|
||
video_id)
|
||
info['thumbnails'] = scale_thumbnails_to_max_format_width(
|
||
info['formats'], info['thumbnails'], r'(?<=/imgHandler/)\d+')
|
||
description, _html = next(get_elements_text_and_html_by_attribute('class', 'description', webpage))
|
||
if description and _html.startswith('<span '):
|
||
info['description'] = description
|
||
info['id'] = video_id
|
||
info['display_id'] = display_id
|
||
return info
|
||
|
||
|
||
class TVOpenGrEmbedIE(TVOpenGrBaseIE):
|
||
IE_NAME = 'tvopengr:embed'
|
||
IE_DESC = 'tvopen.gr embedded videos'
|
||
_VALID_URL = r'(?:https?:)?//(?:www\.|cdn\.|)(?:tvopen|ethnos).gr/embed/(?P<id>\d+)'
|
||
_EMBED_REGEX = [rf'''<iframe[^>]+?src=(?P<_q1>["'])(?P<url>{_VALID_URL})(?P=_q1)''']
|
||
|
||
_TESTS = [{
|
||
'url': 'https://cdn.ethnos.gr/embed/100963',
|
||
'info_dict': {
|
||
'id': '100963',
|
||
'display_id': 'koronoiosapotoysdieythyntestonsxoleionselftestgiaosoysdenbrhkan',
|
||
'title': 'md5:2c71876fadf0cda6043da0da5fca2936',
|
||
'description': 'md5:17482b4432e5ed30eccd93b05d6ea509',
|
||
'duration': 118.0,
|
||
'thumbnail': 'https://opentv-static.siliconweb.com/imgHandler/1920/5804e07f-799a-4247-a696-33842c94ca37.jpg',
|
||
'ext': 'mp4',
|
||
'upload_date': '20220108',
|
||
'timestamp': 1641600000,
|
||
},
|
||
}]
|
||
_WEBPAGE_TESTS = [{
|
||
'url': 'https://www.ethnos.gr/World/article/190604/hparosiaxekinoynoisynomiliessthgeneyhmethskiatoypolemoypanoapothnoykrania',
|
||
'info_dict': {
|
||
'id': '101119',
|
||
'ext': 'mp4',
|
||
'title': 'Οι καρποί των διαπραγματεύσεων ΗΠΑ-Ρωσίας | Ώρα Ελλάδος 7:00 > Ρεπορτάζ',
|
||
'description': 'Ξεκινούν οι διαπραγματεύσεις ανάμεσα σε Ηνωμένες Πολιτείες και Ρωσία για την Ουκρανία.',
|
||
'display_id': 'oikarpoitondiapragmateyseonhparosias',
|
||
'duration': 421.0,
|
||
'thumbnail': r're:https?://opentv-static\.siliconweb\.com/imgHandler/.+\.jpg',
|
||
'timestamp': 1641772800,
|
||
'upload_date': '20220110',
|
||
},
|
||
}]
|
||
|
||
def _real_extract(self, url):
|
||
video_id = self._match_id(url)
|
||
return self._return_canonical_url(url, video_id)
|