mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[extractor/common] Allow passing more parameters to _search_json_ld
This commit is contained in:
		| @@ -763,13 +763,13 @@ class InfoExtractor(object): | ||||
|         return self._html_search_meta('twitter:player', html, | ||||
|                                       'twitter card player') | ||||
|  | ||||
|     def _search_json_ld(self, html, video_id, fatal=True): | ||||
|     def _search_json_ld(self, html, video_id, **kwargs): | ||||
|         json_ld = self._search_regex( | ||||
|             r'(?s)<script[^>]+type=(["\'])application/ld\+json\1[^>]*>(?P<json_ld>.+?)</script>', | ||||
|             html, 'JSON-LD', fatal=fatal, group='json_ld') | ||||
|             html, 'JSON-LD', group='json_ld', **kwargs) | ||||
|         if not json_ld: | ||||
|             return {} | ||||
|         return self._json_ld(json_ld, video_id, fatal=fatal) | ||||
|         return self._json_ld(json_ld, video_id, fatal=kwargs.get('fatal', True)) | ||||
|  | ||||
|     def _json_ld(self, json_ld, video_id, fatal=True): | ||||
|         if isinstance(json_ld, compat_str): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Yen Chi Hsuan
					Yen Chi Hsuan