mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	Improve some id regexes
This commit is contained in:
		| @@ -71,7 +71,7 @@ class CanvasIE(InfoExtractor): | |||||||
|             webpage)).strip() |             webpage)).strip() | ||||||
|  |  | ||||||
|         video_id = self._html_search_regex( |         video_id = self._html_search_regex( | ||||||
|             r'data-video=(["\'])(?P<id>.+?)\1', webpage, 'video id', group='id') |             r'data-video=(["\'])(?P<id>(?:(?!\1).)+)\1', webpage, 'video id', group='id') | ||||||
|  |  | ||||||
|         data = self._download_json( |         data = self._download_json( | ||||||
|             'https://mediazone.vrt.be/api/v1/%s/assets/%s' |             'https://mediazone.vrt.be/api/v1/%s/assets/%s' | ||||||
|   | |||||||
| @@ -165,7 +165,7 @@ class NFLIE(InfoExtractor): | |||||||
|             group='config')) |             group='config')) | ||||||
|         # For articles, the id in the url is not the video id |         # For articles, the id in the url is not the video id | ||||||
|         video_id = self._search_regex( |         video_id = self._search_regex( | ||||||
|             r'(?:<nflcs:avplayer[^>]+data-content[Ii]d\s*=\s*|content[Ii]d\s*:\s*)(["\'])(?P<id>.+?)\1', |             r'(?:<nflcs:avplayer[^>]+data-content[Ii]d\s*=\s*|content[Ii]d\s*:\s*)(["\'])(?P<id>(?:(?!\1).)+)\1', | ||||||
|             webpage, 'video id', default=video_id, group='id') |             webpage, 'video id', default=video_id, group='id') | ||||||
|         config = self._download_json(config_url, video_id, 'Downloading player config') |         config = self._download_json(config_url, video_id, 'Downloading player config') | ||||||
|         url_template = NFLIE.prepend_host( |         url_template = NFLIE.prepend_host( | ||||||
|   | |||||||
| @@ -429,7 +429,7 @@ class SchoolTVIE(InfoExtractor): | |||||||
|         display_id = self._match_id(url) |         display_id = self._match_id(url) | ||||||
|         webpage = self._download_webpage(url, display_id) |         webpage = self._download_webpage(url, display_id) | ||||||
|         video_id = self._search_regex( |         video_id = self._search_regex( | ||||||
|             r'data-mid=(["\'])(?P<id>.+?)\1', webpage, 'video_id', group='id') |             r'data-mid=(["\'])(?P<id>(?:(?!\1).)+)\1', webpage, 'video_id', group='id') | ||||||
|         return { |         return { | ||||||
|             '_type': 'url_transparent', |             '_type': 'url_transparent', | ||||||
|             'ie_key': 'NPO', |             'ie_key': 'NPO', | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 stepshal
					stepshal