mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 22:50:45 +00:00 
			
		
		
		
	[ie/twitcasting] Fix livestream extraction (#8427)
Closes #8431 Authored by: JC-Chung, saintliao Co-authored-by: JC-Chung <52159296+JC-Chung@users.noreply.github.com>
This commit is contained in:
		| @@ -142,7 +142,7 @@ class TwitCastingIE(InfoExtractor): | ||||
|             '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 = any(f'data-{x}' in webpage for x in ['is-onlive="true"', 'live-type="live"', 'status="online"']) | ||||
|         if not traverse_obj(stream_server_data, 'llfmp4') and is_live: | ||||
|             self.raise_login_required(method='cookies') | ||||
| 
 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 saintliao
					saintliao