mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[extractor/generic] Add support for async wistia embeds (Closes #9549)
This commit is contained in:
parent
64413f7563
commit
aa5957ac49
@ -1563,6 +1563,15 @@ class GenericIE(InfoExtractor):
|
|||||||
'id': match.group('id')
|
'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
|
# Look for SVT player
|
||||||
svt_url = SVTIE._extract_url(webpage)
|
svt_url = SVTIE._extract_url(webpage)
|
||||||
if svt_url:
|
if svt_url:
|
||||||
|
Loading…
Reference in New Issue
Block a user