[extractor/generic] Add support for async wistia embeds (Closes #9549)

This commit is contained in:
Sergey M․ 2016-05-20 21:33:31 +06:00
parent 64413f7563
commit aa5957ac49
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with 9 additions and 0 deletions

View File

@ -1563,6 +1563,15 @@ class GenericIE(InfoExtractor):
'id': match.group('id')
}
match = re.search(
r'''(?sx)
<script[^>]+src=(["'])(?:https?:)?//fast\.wistia\.com/assets/external/E-v1\.js\1[^>]*>.*?
<div[^>]+class=(["']).*?\bwistia_async_(?P<id>[a-z0-9]+)\b.*?\2
''', webpage)
if match:
return self.url_result(self._proto_relative_url(
'wistia:%s' % match.group('id')), 'Wistia')
# Look for SVT player
svt_url = SVTIE._extract_url(webpage)
if svt_url: