mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 02:27:11 -05:00 
			
		
		
		
	[brightcove:new] Raise GeoRestrictedError
This commit is contained in:
		@@ -544,8 +544,10 @@ class BrightcoveNewIE(InfoExtractor):
 | 
			
		||||
        except ExtractorError as e:
 | 
			
		||||
            if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403:
 | 
			
		||||
                json_data = self._parse_json(e.cause.read().decode(), video_id)[0]
 | 
			
		||||
                raise ExtractorError(
 | 
			
		||||
                    json_data.get('message') or json_data['error_code'], expected=True)
 | 
			
		||||
                message = json_data.get('message') or json_data['error_code']
 | 
			
		||||
                if json_data.get('error_subcode') == 'CLIENT_GEO':
 | 
			
		||||
                    self.raise_geo_restricted(msg=message)
 | 
			
		||||
                raise ExtractorError(message, expected=True)
 | 
			
		||||
            raise
 | 
			
		||||
 | 
			
		||||
        title = json_data['name'].strip()
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user