mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 06:27:06 -05:00 
			
		
		
		
	[extractor/common] Support HTML media elements without child nodes
This commit is contained in:
		@@ -1,6 +1,7 @@
 | 
			
		||||
version <unreleased>
 | 
			
		||||
 | 
			
		||||
Core
 | 
			
		||||
+ Support HTML media elements without child nodes
 | 
			
		||||
* [Makefile] Support for GNU make < 4 is fixed; BSD make dropped (#9387)
 | 
			
		||||
 | 
			
		||||
Extractors
 | 
			
		||||
 
 | 
			
		||||
@@ -1802,7 +1802,11 @@ class InfoExtractor(object):
 | 
			
		||||
            return is_plain_url, formats
 | 
			
		||||
 | 
			
		||||
        entries = []
 | 
			
		||||
        for media_tag, media_type, media_content in re.findall(r'(?s)(<(?P<tag>video|audio)[^>]*>)(.*?)</(?P=tag)>', webpage):
 | 
			
		||||
        media_tags = [(media_tag, media_type, '')
 | 
			
		||||
                      for media_tag, media_type
 | 
			
		||||
                      in re.findall(r'(?s)(<(video|audio)[^>]*/>)', webpage)]
 | 
			
		||||
        media_tags.extend(re.findall(r'(?s)(<(?P<tag>video|audio)[^>]*>)(.*?)</(?P=tag)>', webpage))
 | 
			
		||||
        for media_tag, media_type, media_content in media_tags:
 | 
			
		||||
            media_info = {
 | 
			
		||||
                'formats': [],
 | 
			
		||||
                'subtitles': {},
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user