diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-01-07 21:49:23 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-01-07 21:49:23 +0700 |
commit | b0ead0e09aae6de6026a018cda7019eb7eade919 (patch) | |
tree | 22910a9f6ee98fd6c1f185e6bee770130b28f6a0 /youtube_dl/extractor/jwplatform.py | |
parent | 0a5b1295b7c1aa6395b65ee137087c540b37b32b (diff) |
[jwplatform] Add support for multiple embeds (closes #15192)
Diffstat (limited to 'youtube_dl/extractor/jwplatform.py')
-rw-r--r-- | youtube_dl/extractor/jwplatform.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/youtube_dl/extractor/jwplatform.py b/youtube_dl/extractor/jwplatform.py index c9bcbb08f..63d0dc998 100644 --- a/youtube_dl/extractor/jwplatform.py +++ b/youtube_dl/extractor/jwplatform.py @@ -23,11 +23,14 @@ class JWPlatformIE(InfoExtractor): @staticmethod def _extract_url(webpage): - mobj = re.search( - r'<(?:script|iframe)[^>]+?src=["\'](?P<url>(?:https?:)?//content.jwplatform.com/players/[a-zA-Z0-9]{8})', + urls = JWPlatformIE._extract_urls(webpage) + return urls[0] if urls else None + + @staticmethod + def _extract_urls(webpage): + return re.findall( + r'<(?:script|iframe)[^>]+?src=["\']((?:https?:)?//content\.jwplatform\.com/players/[a-zA-Z0-9]{8})', webpage) - if mobj: - return mobj.group('url') def _real_extract(self, url): video_id = self._match_id(url) |