mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[vimeo] Fix error parsing
This commit is contained in:
		| @@ -273,13 +273,13 @@ class VimeoIE(VimeoBaseInfoExtractor): | |||||||
|         self.report_extraction(video_id) |         self.report_extraction(video_id) | ||||||
|  |  | ||||||
|         vimeo_config = self._search_regex( |         vimeo_config = self._search_regex( | ||||||
|             r'vimeo\.config\s*=\s*({.+?});', webpage, |             r'vimeo\.config\s*=\s*(?:({.+?})|_extend\([^,]+,\s+({.+?})\));', webpage, | ||||||
|             'vimeo config', default=None) |             'vimeo config', default=None) | ||||||
|         if vimeo_config: |         if vimeo_config: | ||||||
|             seed_status = self._parse_json(vimeo_config, video_id).get('seed_status', {}) |             seed_status = self._parse_json(vimeo_config, video_id).get('seed_status', {}) | ||||||
|             if seed_status.get('state') == 'failed': |             if seed_status.get('state') == 'failed': | ||||||
|                 raise ExtractorError( |                 raise ExtractorError( | ||||||
|                     '%s returned error: %s' % (self.IE_NAME, seed_status['title']), |                     '%s said: %s' % (self.IE_NAME, seed_status['title']), | ||||||
|                     expected=True) |                     expected=True) | ||||||
|  |  | ||||||
|         # Extract the config JSON |         # Extract the config JSON | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Lukáš Lalinský
					Lukáš Lalinský