mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[generic] Add support for sibnet embeds
This commit is contained in:
		| @@ -126,6 +126,7 @@ from .viqeo import ViqeoIE | |||||||
| from .expressen import ExpressenIE | from .expressen import ExpressenIE | ||||||
| from .zype import ZypeIE | from .zype import ZypeIE | ||||||
| from .odnoklassniki import OdnoklassnikiIE | from .odnoklassniki import OdnoklassnikiIE | ||||||
|  | from .vk import VKIE | ||||||
| from .kinja import KinjaEmbedIE | from .kinja import KinjaEmbedIE | ||||||
| from .arcpublishing import ArcPublishingIE | from .arcpublishing import ArcPublishingIE | ||||||
| from .medialaan import MedialaanIE | from .medialaan import MedialaanIE | ||||||
| @@ -2248,6 +2249,11 @@ class GenericIE(InfoExtractor): | |||||||
|             }, |             }, | ||||||
|             'playlist_mincount': 52, |             'playlist_mincount': 52, | ||||||
|         }, |         }, | ||||||
|  |         { | ||||||
|  |             # Sibnet embed (https://help.sibnet.ru/?sibnet_video_embed) | ||||||
|  |             'url': 'https://phpbb3.x-tk.ru/bbcode-video-sibnet-t24.html', | ||||||
|  |             'only_matching': True, | ||||||
|  |         }, | ||||||
|     ] |     ] | ||||||
|  |  | ||||||
|     def report_following_redirect(self, new_url): |     def report_following_redirect(self, new_url): | ||||||
| @@ -2777,6 +2783,11 @@ class GenericIE(InfoExtractor): | |||||||
|         if odnoklassniki_url: |         if odnoklassniki_url: | ||||||
|             return self.url_result(odnoklassniki_url, OdnoklassnikiIE.ie_key()) |             return self.url_result(odnoklassniki_url, OdnoklassnikiIE.ie_key()) | ||||||
|  |  | ||||||
|  |         # Look for sibnet embedded player | ||||||
|  |         sibnet_urls = VKIE._extract_sibnet_urls(webpage) | ||||||
|  |         if sibnet_urls: | ||||||
|  |             return self.playlist_from_matches(sibnet_urls, video_id, video_title) | ||||||
|  |  | ||||||
|         # Look for embedded ivi player |         # Look for embedded ivi player | ||||||
|         mobj = re.search(r'<embed[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?ivi\.ru/video/player.+?)\1', webpage) |         mobj = re.search(r'<embed[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?ivi\.ru/video/player.+?)\1', webpage) | ||||||
|         if mobj is not None: |         if mobj is not None: | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user