From c3ad151df4fd32bff7976148a262aaa6e4b54232 Mon Sep 17 00:00:00 2001 From: saintliao Date: Wed, 25 Oct 2023 14:32:13 +0800 Subject: [PATCH] [ie/twitcasting] twitcasting live element status had change from 'online' to 'recorded'. --- yt_dlp/extractor/twitcasting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/twitcasting.py b/yt_dlp/extractor/twitcasting.py index 540e217fd87b..e941e10c1d6d 100644 --- a/yt_dlp/extractor/twitcasting.py +++ b/yt_dlp/extractor/twitcasting.py @@ -142,7 +142,7 @@ def _real_extract(self, url): 'https://twitcasting.tv/streamserver.php?target=%s&mode=client' % uploader_id, video_id, 'Downloading live info', fatal=False) - is_live = 'data-status="online"' in webpage + is_live = 'data-status="recorded"' in webpage if not traverse_obj(stream_server_data, 'llfmp4') and is_live: self.raise_login_required(method='cookies')