diff options
author | Sergey M․ <dstftw@gmail.com> | 2020-04-05 21:27:36 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2020-04-06 01:29:58 +0700 |
commit | 4e7b5bba5fb73502476c61e4931284c9c3d3d232 (patch) | |
tree | 8c06c7b13c739ce92a4133de55c83a2cd162d6a1 /youtube_dl/extractor/mofosex.py | |
parent | 52c4c51556df15f98c9cda911e36995fe0fc0a47 (diff) |
[mofosex] Add support for generic embeds (closes #24633)
Diffstat (limited to 'youtube_dl/extractor/mofosex.py')
-rw-r--r-- | youtube_dl/extractor/mofosex.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/youtube_dl/extractor/mofosex.py b/youtube_dl/extractor/mofosex.py index 1c652813a..5234cac02 100644 --- a/youtube_dl/extractor/mofosex.py +++ b/youtube_dl/extractor/mofosex.py @@ -1,5 +1,8 @@ from __future__ import unicode_literals +import re + +from .common import InfoExtractor from ..utils import ( int_or_none, str_to_int, @@ -54,3 +57,23 @@ class MofosexIE(KeezMoviesIE): }) return info + + +class MofosexEmbedIE(InfoExtractor): + _VALID_URL = r'https?://(?:www\.)?mofosex\.com/embed/?\?.*?\bvideoid=(?P<id>\d+)' + _TESTS = [{ + 'url': 'https://www.mofosex.com/embed/?videoid=318131&referrer=KM', + 'only_matching': True, + }] + + @staticmethod + def _extract_urls(webpage): + return re.findall( + r'<iframe[^>]+\bsrc=["\']((?:https?:)?//(?:www\.)?mofosex\.com/embed/?\?.*?\bvideoid=\d+)', + webpage) + + def _real_extract(self, url): + video_id = self._match_id(url) + return self.url_result( + 'http://www.mofosex.com/videos/{0}/{0}.html'.format(video_id), + ie=MofosexIE.ie_key(), video_id=video_id) |