[extractor/generic] Add support for redtube embds (closes #11099)
This commit is contained in:
		| @@ -48,6 +48,7 @@ from .pornhub import PornHubIE | |||||||
| from .xhamster import XHamsterEmbedIE | from .xhamster import XHamsterEmbedIE | ||||||
| from .tnaflix import TNAFlixNetworkEmbedIE | from .tnaflix import TNAFlixNetworkEmbedIE | ||||||
| from .drtuber import DrTuberIE | from .drtuber import DrTuberIE | ||||||
|  | from .redtube import RedTubeIE | ||||||
| from .vimeo import VimeoIE | from .vimeo import VimeoIE | ||||||
| from .dailymotion import ( | from .dailymotion import ( | ||||||
|     DailymotionIE, |     DailymotionIE, | ||||||
| @@ -2002,6 +2003,11 @@ class GenericIE(InfoExtractor): | |||||||
|         if drtuber_urls: |         if drtuber_urls: | ||||||
|             return _playlist_from_matches(drtuber_urls, ie=DrTuberIE.ie_key()) |             return _playlist_from_matches(drtuber_urls, ie=DrTuberIE.ie_key()) | ||||||
|  |  | ||||||
|  |         # Look for embedded RedTube player | ||||||
|  |         redtube_urls = RedTubeIE._extract_urls(webpage) | ||||||
|  |         if redtube_urls: | ||||||
|  |             return _playlist_from_matches(redtube_urls, ie=RedTubeIE.ie_key()) | ||||||
|  |  | ||||||
|         # Look for embedded Tvigle player |         # Look for embedded Tvigle player | ||||||
|         mobj = re.search( |         mobj = re.search( | ||||||
|             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//cloud\.tvigle\.ru/video/.+?)\1', webpage) |             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//cloud\.tvigle\.ru/video/.+?)\1', webpage) | ||||||
|   | |||||||
| @@ -1,5 +1,7 @@ | |||||||
| from __future__ import unicode_literals | from __future__ import unicode_literals | ||||||
|  |  | ||||||
|  | import re | ||||||
|  |  | ||||||
| from .common import InfoExtractor | from .common import InfoExtractor | ||||||
| from ..utils import ( | from ..utils import ( | ||||||
|     ExtractorError, |     ExtractorError, | ||||||
| @@ -28,6 +30,12 @@ class RedTubeIE(InfoExtractor): | |||||||
|         'only_matching': True, |         'only_matching': True, | ||||||
|     }] |     }] | ||||||
|  |  | ||||||
|  |     @staticmethod | ||||||
|  |     def _extract_urls(webpage): | ||||||
|  |         return re.findall( | ||||||
|  |             r'<iframe[^>]+?src=["\'](?P<url>(?:https?:)?//embed\.redtube\.com/\?.*?\bid=\d+)', | ||||||
|  |             webpage) | ||||||
|  |  | ||||||
|     def _real_extract(self, url): |     def _real_extract(self, url): | ||||||
|         video_id = self._match_id(url) |         video_id = self._match_id(url) | ||||||
|         webpage = self._download_webpage( |         webpage = self._download_webpage( | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․