|
@@ -49,7 +49,7 @@ class PladformIE(InfoExtractor):
|
|
@staticmethod
|
|
@staticmethod
|
|
def _extract_url(webpage):
|
|
def _extract_url(webpage):
|
|
mobj = re.search(
|
|
mobj = re.search(
|
|
- r'<iframe[^>]+src="(?P<url>(?:https?:)?//out\.pladform\.ru/player\?.+?)"', webpage)
|
|
|
|
|
|
+ r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//out\.pladform\.ru/player\?.+?)\1', webpage)
|
|
if mobj:
|
|
if mobj:
|
|
return mobj.group('url')
|
|
return mobj.group('url')
|
|
|
|
|