mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 20:07:08 -05:00 
			
		
		
		
	[wimp] Fix video URL regex
This commit is contained in:
		@@ -37,7 +37,7 @@ class WimpIE(InfoExtractor):
 | 
			
		||||
        video_id = mobj.group(1)
 | 
			
		||||
        webpage = self._download_webpage(url, video_id)
 | 
			
		||||
        video_url = self._search_regex(
 | 
			
		||||
            r"'file'\s*:\s*'([^']+)'", webpage, 'video URL')
 | 
			
		||||
            r"[\"']file[\"']\s*[:,]\s*[\"'](.+?)[\"']", webpage, 'video URL')
 | 
			
		||||
        if YoutubeIE.suitable(video_url):
 | 
			
		||||
            self.to_screen('Found YouTube video')
 | 
			
		||||
            return {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user