diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:49:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:49:24 +0000 |
commit | 2415e66f889f38503b73e8ebc5f43ca342390e5c (patch) | |
tree | ac48ab69d1d96bae3d83756134921e0d90593aa5 /yt_dlp/extractor/theholetv.py | |
parent | Initial commit. (diff) | |
download | yt-dlp-2415e66f889f38503b73e8ebc5f43ca342390e5c.tar.xz yt-dlp-2415e66f889f38503b73e8ebc5f43ca342390e5c.zip |
Adding upstream version 2024.03.10.upstream/2024.03.10
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'yt_dlp/extractor/theholetv.py')
-rw-r--r-- | yt_dlp/extractor/theholetv.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/yt_dlp/extractor/theholetv.py b/yt_dlp/extractor/theholetv.py new file mode 100644 index 0000000..a13f83b --- /dev/null +++ b/yt_dlp/extractor/theholetv.py @@ -0,0 +1,35 @@ +from .common import InfoExtractor +from ..utils import extract_attributes, remove_end + + +class TheHoleTvIE(InfoExtractor): + _VALID_URL = r'https?://(?:www\.)?the-hole\.tv/episodes/(?P<id>[\w-]+)' + _TESTS = [{ + 'url': 'https://the-hole.tv/episodes/gromkii-vopros-sergey-orlov', + 'md5': 'fea6682f47786f3ae5a6cbd635ec4bf9', + 'info_dict': { + 'id': 'gromkii-vopros-sergey-orlov', + 'ext': 'mp4', + 'title': 'Сергей Орлов — Громкий вопрос', + 'thumbnail': 'https://assets-cdn.the-hole.tv/images/t8gan4n6zn627e7wni11b2uemqts', + 'description': 'md5:45741a9202331f995d9fb76996759379' + } + }] + + def _real_extract(self, url): + video_id = self._match_id(url) + webpage = self._download_webpage(url, video_id) + + player_attrs = extract_attributes(self._search_regex( + r'(<div[^>]*\bdata-controller="player"[^>]*>)', webpage, 'video player')) + formats, subtitles = self._extract_m3u8_formats_and_subtitles( + player_attrs['data-player-source-value'], video_id, 'mp4') + + return { + 'id': video_id, + 'title': remove_end(self._html_extract_title(webpage), ' — The Hole'), + 'description': self._og_search_description(webpage), + 'thumbnail': player_attrs.get('data-player-poster-value'), + 'formats': formats, + 'subtitles': subtitles + } |