diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-09-24 19:57:55 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-09-24 20:00:29 +0800 |
commit | f0bc5a8609786633d8b51ab4255c1f0fdb941f73 (patch) | |
tree | b13de2bca46267ff79b37c41c0dfc735c4a9daf1 /youtube_dl/extractor/periscope.py | |
parent | a54ffb8aa778062901dd15b020576bc7d472ae40 (diff) |
[twitter] Support Periscope embeds (closes #10737)
Also update _TESTS
Diffstat (limited to 'youtube_dl/extractor/periscope.py')
-rw-r--r-- | youtube_dl/extractor/periscope.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/youtube_dl/extractor/periscope.py b/youtube_dl/extractor/periscope.py index eb1aeba46..e8b2f11c6 100644 --- a/youtube_dl/extractor/periscope.py +++ b/youtube_dl/extractor/periscope.py @@ -1,6 +1,8 @@ # coding: utf-8 from __future__ import unicode_literals +import re + from .common import InfoExtractor from ..utils import ( parse_iso8601, @@ -41,6 +43,13 @@ class PeriscopeIE(PeriscopeBaseIE): 'only_matching': True, }] + @staticmethod + def _extract_url(webpage): + mobj = re.search( + r'<iframe[^>]+src=([\'"])(?P<url>(?:https?:)?//(?:www\.)?periscope\.tv/(?:(?!\1).)+)\1', webpage) + if mobj: + return mobj.group('url') + def _real_extract(self, url): token = self._match_id(url) |