mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[twitter:card] Use _html_search_regex
This commit is contained in:
		@@ -7,7 +7,6 @@ from .common import InfoExtractor
 | 
				
			|||||||
from ..compat import compat_urllib_request
 | 
					from ..compat import compat_urllib_request
 | 
				
			||||||
from ..utils import (
 | 
					from ..utils import (
 | 
				
			||||||
    float_or_none,
 | 
					    float_or_none,
 | 
				
			||||||
    unescapeHTML,
 | 
					 | 
				
			||||||
    xpath_text,
 | 
					    xpath_text,
 | 
				
			||||||
    remove_end,
 | 
					    remove_end,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
@@ -57,9 +56,8 @@ class TwitterCardIE(InfoExtractor):
 | 
				
			|||||||
            request.add_header('User-Agent', user_agent)
 | 
					            request.add_header('User-Agent', user_agent)
 | 
				
			||||||
            webpage = self._download_webpage(request, video_id)
 | 
					            webpage = self._download_webpage(request, video_id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            config = self._parse_json(
 | 
					            config = self._parse_json(self._html_search_regex(
 | 
				
			||||||
                unescapeHTML(self._search_regex(
 | 
					                r'data-player-config="([^"]+)"', webpage, 'data player config'),
 | 
				
			||||||
                    r'data-player-config="([^"]+)"', webpage, 'data player config')),
 | 
					 | 
				
			||||||
                video_id)
 | 
					                video_id)
 | 
				
			||||||
            if 'playlist' not in config:
 | 
					            if 'playlist' not in config:
 | 
				
			||||||
                if 'vmapUrl' in config:
 | 
					                if 'vmapUrl' in config:
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user