Skip to content

Commit

Permalink
[ie/twitcasting] twitcasting live element status had change from 'onl…
Browse files Browse the repository at this point in the history
…ine' to 'recorded'.
  • Loading branch information
saintliao committed Oct 25, 2023
1 parent a40e0b3 commit c3ad151
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/extractor/twitcasting.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down

0 comments on commit c3ad151

Please sign in to comment.