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/kompas.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/kompas.py')
-rw-r--r-- | yt_dlp/extractor/kompas.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/yt_dlp/extractor/kompas.py b/yt_dlp/extractor/kompas.py new file mode 100644 index 0000000..8bad961 --- /dev/null +++ b/yt_dlp/extractor/kompas.py @@ -0,0 +1,26 @@ +from .jixie import JixieBaseIE + + +class KompasVideoIE(JixieBaseIE): + _VALID_URL = r'https?://video\.kompas\.com/\w+/(?P<id>\d+)/(?P<slug>[\w-]+)' + _TESTS = [{ + 'url': 'https://video.kompas.com/watch/164474/kim-jong-un-siap-kirim-nuklir-lawan-as-dan-korsel', + 'info_dict': { + 'id': '164474', + 'ext': 'mp4', + 'title': 'Kim Jong Un Siap Kirim Nuklir Lawan AS dan Korsel', + 'description': 'md5:262530c4fb7462398235f9a5dba92456', + 'uploader_id': '9262bf2590d558736cac4fff7978fcb1', + 'display_id': 'kim-jong-un-siap-kirim-nuklir-lawan-as-dan-korsel', + 'duration': 85.066667, + 'categories': ['news'], + 'thumbnail': 'https://video.jixie.media/1001/164474/164474_1280x720.jpg', + 'tags': 'count:9', + } + }] + + def _real_extract(self, url): + video_id, display_id = self._match_valid_url(url).group('id', 'slug') + webpage = self._download_webpage(url, display_id) + + return self._extract_data_from_jixie_id(display_id, video_id, webpage) |