|
|
@ -1653,7 +1653,7 @@ class GenericIE(InfoExtractor): |
|
|
|
return self.url_result(mobj.group('url'), 'MLB') |
|
|
|
|
|
|
|
mobj = re.search( |
|
|
|
r'<iframe[^>]+?src=(["\'])(?P<url>%s)\1' % CondeNastIE.EMBED_URL, |
|
|
|
r'<(?:iframe|script)[^>]+?src=(["\'])(?P<url>%s)\1' % CondeNastIE.EMBED_URL, |
|
|
|
webpage) |
|
|
|
if mobj is not None: |
|
|
|
return self.url_result(self._proto_relative_url(mobj.group('url'), scheme='http:'), 'CondeNast') |
|
|
|