mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	raise unexpected error when no stream found
This commit is contained in:
		| @@ -56,11 +56,12 @@ class DiscoveryGoIE(InfoExtractor): | ||||
|  | ||||
|         stream = video.get('stream') | ||||
|         if not stream: | ||||
|             raise ExtractorError( | ||||
|                 'This video is only available via cable service provider subscription that' | ||||
|                 ' is not currently supported. You may want to use --cookies.' | ||||
|                 if video.get('authenticated') is True else 'Unable to find stream', | ||||
|                 expected=True) | ||||
|             if video.get('authenticated') is True: | ||||
|                 raise ExtractorError( | ||||
|                     'This video is only available via cable service provider subscription that' | ||||
|                     ' is not currently supported. You may want to use --cookies.', expected=True) | ||||
|             else: | ||||
|                 raise ExtractorError('Unable to find stream') | ||||
|         STREAM_URL_SUFFIX = 'streamUrl' | ||||
|         formats = [] | ||||
|         for stream_kind in ('', 'hds'): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Remita Amine
					Remita Amine