mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[kaltura] Add support for iframe embeds
This commit is contained in:
		| @@ -91,6 +91,7 @@ class KalturaIE(InfoExtractor): | ||||
|                     }], | ||||
|                 }, | ||||
|             }, | ||||
|             'skip': 'Gone. Maybe https://www.safaribooksonline.com/library/tutorials/introduction-to-python-anon/3469/', | ||||
|             'params': { | ||||
|                 'skip_download': True, | ||||
|             }, | ||||
| @@ -108,6 +109,7 @@ class KalturaIE(InfoExtractor): | ||||
|     @staticmethod | ||||
|     def _extract_url(webpage): | ||||
|         mobj = ( | ||||
|             # Embed codes: https://knowledge.kaltura.com/embedding-kaltura-media-players-your-site | ||||
|             re.search( | ||||
|                 r"""(?xs) | ||||
|                     kWidget\.(?:thumb)?[Ee]mbed\( | ||||
| @@ -127,7 +129,16 @@ class KalturaIE(InfoExtractor): | ||||
|                         (?P<q2>["\'])entry_?[Ii]d(?P=q2) | ||||
|                     )\s*:\s* | ||||
|                     (?P<q3>["\'])(?P<id>(?:(?!(?P=q3)).)+)(?P=q3) | ||||
|                 ''', webpage)) | ||||
|                 ''', webpage) or | ||||
|             re.search( | ||||
|                 r'''(?xs) | ||||
|                     <iframe[^>]+src=(?P<q1>["\']) | ||||
|                       (?:https?:)?//(?:www\.)?kaltura\.com/p/(?P<partner_id>\d+)/ | ||||
|                       (?:(?!(?P=q1)).)* | ||||
|                       [\?&]entry_id=(?P<id>(?:(?!(?P=q1))[^&])+) | ||||
|                     (?P=q1) | ||||
|                 ''', webpage) | ||||
|         ) | ||||
|         if mobj: | ||||
|             embed_info = mobj.groupdict() | ||||
|             url = 'kaltura:%(partner_id)s:%(id)s' % embed_info | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 John Hawkinson
					John Hawkinson