mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 00:27:07 -05:00 
			
		
		
		
	[youtube] Adapt player version regex to handle urls ending in '/html5player-new.js'
It was always extracting 'new' as the version, breaking the cache system.
This commit is contained in:
		@@ -660,7 +660,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
 | 
			
		||||
 | 
			
		||||
    def _extract_signature_function(self, video_id, player_url, example_sig):
 | 
			
		||||
        id_m = re.match(
 | 
			
		||||
            r'.*?-(?P<id>[a-zA-Z0-9_-]+)(?:/watch_as3|/html5player)?\.(?P<ext>[a-z]+)$',
 | 
			
		||||
            r'.*?-(?P<id>[a-zA-Z0-9_-]+)(?:/watch_as3|/html5player(?:-new)?)?\.(?P<ext>[a-z]+)$',
 | 
			
		||||
            player_url)
 | 
			
		||||
        if not id_m:
 | 
			
		||||
            raise ExtractorError('Cannot identify player %r' % player_url)
 | 
			
		||||
@@ -1289,7 +1289,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
 | 
			
		||||
                                player_desc = 'flash player %s' % player_version
 | 
			
		||||
                            else:
 | 
			
		||||
                                player_version = self._search_regex(
 | 
			
		||||
                                    r'html5player-([^/]+?)(?:/html5player)?\.js',
 | 
			
		||||
                                    r'html5player-([^/]+?)(?:/html5player(?:-new)?)?\.js',
 | 
			
		||||
                                    player_url,
 | 
			
		||||
                                    'html5 player', fatal=False)
 | 
			
		||||
                                player_desc = 'html5 player %s' % player_version
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user