mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[dailymotion] Restrict player v5 regex (Closes #7826)
This commit is contained in:
		| @@ -122,7 +122,9 @@ class DailymotionIE(DailymotionBaseInfoExtractor): | ||||
|             webpage, 'comment count', fatal=False)) | ||||
|  | ||||
|         player_v5 = self._search_regex( | ||||
|             [r'buildPlayer\(({.+?})\);', r'playerV5\s*=\s*dmp\.create\([^,]+?,\s*({.+?})\);'], | ||||
|             [r'buildPlayer\(({.+?})\);\n',  # See https://github.com/rg3/youtube-dl/issues/7826 | ||||
|              r'playerV5\s*=\s*dmp\.create\([^,]+?,\s*({.+?})\);', | ||||
|              r'buildPlayer\(({.+?})\);'], | ||||
|             webpage, 'player v5', default=None) | ||||
|         if player_v5: | ||||
|             player = self._parse_json(player_v5, video_id) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user