mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[tubitv] Add error message for videos that require login (#5524)
This commit is contained in:
		@@ -59,6 +59,11 @@ class TubiTvIE(InfoExtractor):
 | 
				
			|||||||
        video_id = self._match_id(url)
 | 
					        video_id = self._match_id(url)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        webpage = self._download_webpage(url, video_id)
 | 
					        webpage = self._download_webpage(url, video_id)
 | 
				
			||||||
 | 
					        if re.search(r"<(?:DIV|div) class='login-required-screen'>", webpage):
 | 
				
			||||||
 | 
					            raise ExtractorError(
 | 
				
			||||||
 | 
					                'This video requires login, use --username and --password '
 | 
				
			||||||
 | 
					                'options to provide account credentials.', expected=True)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        title = self._og_search_title(webpage)
 | 
					        title = self._og_search_title(webpage)
 | 
				
			||||||
        description = self._og_search_description(webpage)
 | 
					        description = self._og_search_description(webpage)
 | 
				
			||||||
        thumbnail = self._og_search_thumbnail(webpage)
 | 
					        thumbnail = self._og_search_thumbnail(webpage)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user