mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[nzz] Relax kaltura regex
This commit is contained in:
		 Alexander Seiler
					Alexander Seiler
				
			
				
					committed by
					
						 Sergey M
						Sergey M
					
				
			
			
				
	
			
			
			 Sergey M
						Sergey M
					
				
			
						parent
						
							2e1280ed43
						
					
				
				
					commit
					15ed5a2784
				
			| @@ -11,20 +11,27 @@ from ..utils import ( | |||||||
|  |  | ||||||
| class NZZIE(InfoExtractor): | class NZZIE(InfoExtractor): | ||||||
|     _VALID_URL = r'https?://(?:www\.)?nzz\.ch/(?:[^/]+/)*[^/?#]+-ld\.(?P<id>\d+)' |     _VALID_URL = r'https?://(?:www\.)?nzz\.ch/(?:[^/]+/)*[^/?#]+-ld\.(?P<id>\d+)' | ||||||
|     _TEST = { |     _TESTS = [{ | ||||||
|         'url': 'http://www.nzz.ch/zuerich/gymizyte/gymizyte-schreiben-schueler-heute-noch-diktate-ld.9153', |         'url': 'http://www.nzz.ch/zuerich/gymizyte/gymizyte-schreiben-schueler-heute-noch-diktate-ld.9153', | ||||||
|         'info_dict': { |         'info_dict': { | ||||||
|             'id': '9153', |             'id': '9153', | ||||||
|         }, |         }, | ||||||
|         'playlist_mincount': 6, |         'playlist_mincount': 6, | ||||||
|     } |     }, { | ||||||
|  |         'url': 'https://www.nzz.ch/video/nzz-standpunkte/cvp-auf-der-suche-nach-dem-mass-der-mitte-ld.1368112', | ||||||
|  |         'info_dict': { | ||||||
|  |             'id': '1368112', | ||||||
|  |         }, | ||||||
|  |         'playlist_count': 1, | ||||||
|  |     }] | ||||||
|  |  | ||||||
|     def _real_extract(self, url): |     def _real_extract(self, url): | ||||||
|         page_id = self._match_id(url) |         page_id = self._match_id(url) | ||||||
|         webpage = self._download_webpage(url, page_id) |         webpage = self._download_webpage(url, page_id) | ||||||
|  |  | ||||||
|         entries = [] |         entries = [] | ||||||
|         for player_element in re.findall(r'(<[^>]+class="kalturaPlayer"[^>]*>)', webpage): |         for player_element in re.findall( | ||||||
|  |                 r'(<[^>]+class="kalturaPlayer[^"]*"[^>]*>)', webpage): | ||||||
|             player_params = extract_attributes(player_element) |             player_params = extract_attributes(player_element) | ||||||
|             if player_params.get('data-type') not in ('kaltura_singleArticle',): |             if player_params.get('data-type') not in ('kaltura_singleArticle',): | ||||||
|                 self.report_warning('Unsupported player type') |                 self.report_warning('Unsupported player type') | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user