mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	[brightcove:legacy] Relax videoPlayer validation check (closes #12381)
This commit is contained in:
		| @@ -193,7 +193,13 @@ class BrightcoveLegacyIE(InfoExtractor): | |||||||
|         if videoPlayer is not None: |         if videoPlayer is not None: | ||||||
|             if isinstance(videoPlayer, list): |             if isinstance(videoPlayer, list): | ||||||
|                 videoPlayer = videoPlayer[0] |                 videoPlayer = videoPlayer[0] | ||||||
|             if not (videoPlayer.isdigit() or videoPlayer.startswith('ref:')): |             videoPlayer = videoPlayer.strip() | ||||||
|  |             # UUID is also possible for videoPlayer (e.g. | ||||||
|  |             # http://www.popcornflix.com/hoodies-vs-hooligans/7f2d2b87-bbf2-4623-acfb-ea942b4f01dd | ||||||
|  |             # or http://www8.hp.com/cn/zh/home.html) | ||||||
|  |             if not (re.match( | ||||||
|  |                     r'^(?:\d+|[\da-fA-F]{8}-?[\da-fA-F]{4}-?[\da-fA-F]{4}-?[\da-fA-F]{4}-?[\da-fA-F]{12})$', | ||||||
|  |                     videoPlayer) or videoPlayer.startswith('ref:')): | ||||||
|                 return None |                 return None | ||||||
|             params['@videoPlayer'] = videoPlayer |             params['@videoPlayer'] = videoPlayer | ||||||
|         linkBase = find_param('linkBaseURL') |         linkBase = find_param('linkBaseURL') | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․