mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:30:46 +00:00 
			
		
		
		
	[ThisOldHouse] Improve Premium URL check (#2445)
Closes #2443 Authored by: Ashish0804
This commit is contained in:
		@@ -52,7 +52,7 @@ class ThisOldHouseIE(InfoExtractor):
 | 
			
		||||
        video_url = self._search_regex(
 | 
			
		||||
            r'<iframe[^>]+src=[\'"]((?:https?:)?//(?:www\.)?thisoldhouse\.(?:chorus\.build|com)/videos/zype/([0-9a-f]{24})[^\'"]*)[\'"]',
 | 
			
		||||
            webpage, 'video url')
 | 
			
		||||
        if 'subscription_required=true' in video_url:
 | 
			
		||||
        if 'subscription_required=true' in video_url or 'c-entry-group-labels__image' in webpage:
 | 
			
		||||
            return self.url_result(self._request_webpage(HEADRequest(video_url), display_id).geturl(), 'Zype', display_id)
 | 
			
		||||
        video_id = self._search_regex(r'(?:https?:)?//(?:www\.)?thisoldhouse\.(?:chorus\.build|com)/videos/zype/([0-9a-f]{24})', video_url, 'video id')
 | 
			
		||||
        return self.url_result(self._ZYPE_TMPL % video_id, 'Zype', video_id)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user