mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	Merge branch 'jukebox' of https://github.com/remitamine/youtube-dl into remitamine-jukebox
This commit is contained in:
		| @@ -56,6 +56,7 @@ from .mtv import MTVServicesEmbeddedIE | ||||
| from .pladform import PladformIE | ||||
| from .googledrive import GoogleDriveIE | ||||
| from .jwplatform import JWPlatformIE | ||||
| from .ultimedia import UltimediaIE | ||||
|  | ||||
|  | ||||
| class GenericIE(InfoExtractor): | ||||
| @@ -1807,6 +1808,11 @@ class GenericIE(InfoExtractor): | ||||
|         if mobj is not None: | ||||
|             return self.url_result(unescapeHTML(mobj.group('url')), 'ScreenwaveMedia') | ||||
|  | ||||
|         # Look for Ulltimedia embeds | ||||
|         ultimedia_url = UltimediaIE._extract_url(webpage) | ||||
|         if ultimedia_url: | ||||
|             return self.url_result(self._proto_relative_url(ultimedia_url), 'Ultimedia') | ||||
|  | ||||
|         # Look for AdobeTVVideo embeds | ||||
|         mobj = re.search( | ||||
|             r'<iframe[^>]+src=[\'"]((?:https?:)?//video\.tv\.adobe\.com/v/\d+[^"]+)[\'"]', | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 remitamine
					remitamine