mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[generic] Add support for playwire embeds (Closes #5430)
This commit is contained in:
		@@ -1310,6 +1310,12 @@ class GenericIE(InfoExtractor):
 | 
				
			|||||||
        if mobj is not None:
 | 
					        if mobj is not None:
 | 
				
			||||||
            return self.url_result(mobj.group('url'), 'Pladform')
 | 
					            return self.url_result(mobj.group('url'), 'Pladform')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        # Look for Playwire embeds
 | 
				
			||||||
 | 
					        mobj = re.search(
 | 
				
			||||||
 | 
					            r'<script[^>]+data-config=(["\'])(?P<url>(?:https?:)?//config\.playwire\.com/.+?)\1', webpage)
 | 
				
			||||||
 | 
					        if mobj is not None:
 | 
				
			||||||
 | 
					            return self.url_result(mobj.group('url'))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        # Look for 5min embeds
 | 
					        # Look for 5min embeds
 | 
				
			||||||
        mobj = re.search(
 | 
					        mobj = re.search(
 | 
				
			||||||
            r'<meta[^>]+property="og:video"[^>]+content="https?://embed\.5min\.com/(?P<id>[0-9]+)/?', webpage)
 | 
					            r'<meta[^>]+property="og:video"[^>]+content="https?://embed\.5min\.com/(?P<id>[0-9]+)/?', webpage)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user