mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[thescene] Fix extraction (closes #12235)
This commit is contained in:
		 Thomas Christlieb
					Thomas Christlieb
				
			
				
					committed by
					
						 Sergey M
						Sergey M
					
				
			
			
				
	
			
			
			 Sergey M
						Sergey M
					
				
			
						parent
						
							68f17a9c2d
						
					
				
				
					commit
					51ed496307
				
			| @@ -32,7 +32,7 @@ class TheSceneIE(InfoExtractor): | ||||
|         player = self._download_webpage(player_url, display_id) | ||||
|         info = self._parse_json( | ||||
|             self._search_regex( | ||||
|                 r'(?m)var\s+video\s+=\s+({.+?});$', player, 'info json'), | ||||
|                 r'(?m)video\s*:\s*({.+?}),$', player, 'info json'), | ||||
|             display_id) | ||||
|  | ||||
|         qualities_order = qualities(('low', 'high')) | ||||
| @@ -40,7 +40,7 @@ class TheSceneIE(InfoExtractor): | ||||
|             'format_id': '{0}-{1}'.format(f['type'].split('/')[0], f['quality']), | ||||
|             'url': f['src'], | ||||
|             'quality': qualities_order(f['quality']), | ||||
|         } for f in info['sources'][0]] | ||||
|         } for f in info['sources']] | ||||
|         self._sort_formats(formats) | ||||
|  | ||||
|         return { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user