mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 07:17:07 -05:00 
			
		
		
		
	[generic] Fix HTML5 video regexp
This commit is contained in:
		@@ -933,7 +933,7 @@ class GenericIE(InfoExtractor):
 | 
				
			|||||||
                found = filter_video(re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage))
 | 
					                found = filter_video(re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage))
 | 
				
			||||||
        if not found:
 | 
					        if not found:
 | 
				
			||||||
            # HTML5 video
 | 
					            # HTML5 video
 | 
				
			||||||
            found = re.findall(r'(?s)<video[^<]*(?:>.*?<source[^>]+)? src="([^"]+)"', webpage)
 | 
					            found = re.findall(r'(?s)<video[^<]*(?:>.*?<source[^>]*)?\s+src="([^"]+)"', webpage)
 | 
				
			||||||
        if not found:
 | 
					        if not found:
 | 
				
			||||||
            found = re.search(
 | 
					            found = re.search(
 | 
				
			||||||
                r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
 | 
					                r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user