diff options
Diffstat (limited to 'yt_dlp/extractor/redtube.py')
-rw-r--r-- | yt_dlp/extractor/redtube.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/yt_dlp/extractor/redtube.py b/yt_dlp/extractor/redtube.py index ab7c505da..8e767b6e4 100644 --- a/yt_dlp/extractor/redtube.py +++ b/yt_dlp/extractor/redtube.py @@ -1,5 +1,3 @@ -import re - from .common import InfoExtractor from ..utils import ( determine_ext, @@ -14,6 +12,7 @@ from ..utils import ( class RedTubeIE(InfoExtractor): _VALID_URL = r'https?://(?:(?:\w+\.)?redtube\.com/|embed\.redtube\.com/\?.*?\bid=)(?P<id>[0-9]+)' + _EMBED_REGEX = [r'<iframe[^>]+?src=["\'](?P<url>(?:https?:)?//embed\.redtube\.com/\?.*?\bid=\d+)'] _TESTS = [{ 'url': 'https://www.redtube.com/38864951', 'md5': '4fba70cbca3aefd25767ab4b523c9878', @@ -37,12 +36,6 @@ class RedTubeIE(InfoExtractor): '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): video_id = self._match_id(url) webpage = self._download_webpage( |