summaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/chzzk.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-05 09:06:47 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-05 09:06:47 +0000
commitcd78f55e124020231c9d3c0b5118f1dcb4b9d6e9 (patch)
treeb541b015faac61d8d78ce84c6bfa75a5d27c755f /yt_dlp/extractor/chzzk.py
parentAdding upstream version 2024.07.02. (diff)
downloadyt-dlp-cd78f55e124020231c9d3c0b5118f1dcb4b9d6e9.tar.xz
yt-dlp-cd78f55e124020231c9d3c0b5118f1dcb4b9d6e9.zip
Adding upstream version 2024.07.07.upstream/2024.07.07
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'yt_dlp/extractor/chzzk.py')
-rw-r--r--yt_dlp/extractor/chzzk.py37
1 files changed, 35 insertions, 2 deletions
diff --git a/yt_dlp/extractor/chzzk.py b/yt_dlp/extractor/chzzk.py
index 420fe05..e0b9980 100644
--- a/yt_dlp/extractor/chzzk.py
+++ b/yt_dlp/extractor/chzzk.py
@@ -36,7 +36,7 @@ class CHZZKLiveIE(InfoExtractor):
def _real_extract(self, url):
channel_id = self._match_id(url)
live_detail = self._download_json(
- f'https://api.chzzk.naver.com/service/v2/channels/{channel_id}/live-detail', channel_id,
+ f'https://api.chzzk.naver.com/service/v3/channels/{channel_id}/live-detail', channel_id,
note='Downloading channel info', errnote='Unable to download channel info')['content']
if live_detail.get('status') == 'CLOSE':
@@ -106,12 +106,45 @@ class CHZZKVideoIE(InfoExtractor):
'upload_date': '20231219',
'view_count': int,
},
+ 'skip': 'Replay video is expired',
+ }, {
+ # Manually uploaded video
+ 'url': 'https://chzzk.naver.com/video/1980',
+ 'info_dict': {
+ 'id': '1980',
+ 'ext': 'mp4',
+ 'title': '※시청주의※한번보면 잊기 힘든 영상',
+ 'channel': '라디유radiyu',
+ 'channel_id': '68f895c59a1043bc5019b5e08c83a5c5',
+ 'channel_is_verified': False,
+ 'thumbnail': r're:^https?://.*\.jpg$',
+ 'duration': 95,
+ 'timestamp': 1703102631.722,
+ 'upload_date': '20231220',
+ 'view_count': int,
+ },
+ }, {
+ # Partner channel replay video
+ 'url': 'https://chzzk.naver.com/video/2458',
+ 'info_dict': {
+ 'id': '2458',
+ 'ext': 'mp4',
+ 'title': '첫 방송',
+ 'channel': '강지',
+ 'channel_id': 'b5ed5db484d04faf4d150aedd362f34b',
+ 'channel_is_verified': True,
+ 'thumbnail': r're:^https?://.*\.jpg$',
+ 'duration': 4433,
+ 'timestamp': 1703307460.214,
+ 'upload_date': '20231223',
+ 'view_count': int,
+ },
}]
def _real_extract(self, url):
video_id = self._match_id(url)
video_meta = self._download_json(
- f'https://api.chzzk.naver.com/service/v2/videos/{video_id}', video_id,
+ f'https://api.chzzk.naver.com/service/v3/videos/{video_id}', video_id,
note='Downloading video info', errnote='Unable to download video info')['content']
formats, subtitles = self._extract_mpd_formats_and_subtitles(
f'https://apis.naver.com/neonplayer/vodplay/v1/playback/{video_meta["videoId"]}', video_id,