[extractor/generic] Use _extract_url for pladform
This commit is contained in:
parent
db7c9da871
commit
45dad7ba1b
1 changed files with 4 additions and 4 deletions
|
@ -54,6 +54,7 @@ from .onionstudios import OnionStudiosIE
|
||||||
from .snagfilms import SnagFilmsEmbedIE
|
from .snagfilms import SnagFilmsEmbedIE
|
||||||
from .screenwavemedia import ScreenwaveMediaIE
|
from .screenwavemedia import ScreenwaveMediaIE
|
||||||
from .mtv import MTVServicesEmbeddedIE
|
from .mtv import MTVServicesEmbeddedIE
|
||||||
|
from .pladform import PladformIE
|
||||||
|
|
||||||
|
|
||||||
class GenericIE(InfoExtractor):
|
class GenericIE(InfoExtractor):
|
||||||
|
@ -1741,10 +1742,9 @@ class GenericIE(InfoExtractor):
|
||||||
return self.url_result('eagleplatform:%(host)s:%(id)s' % mobj.groupdict(), 'EaglePlatform')
|
return self.url_result('eagleplatform:%(host)s:%(id)s' % mobj.groupdict(), 'EaglePlatform')
|
||||||
|
|
||||||
# Look for Pladform embeds
|
# Look for Pladform embeds
|
||||||
mobj = re.search(
|
pladform_url = PladformIE._extract_url(webpage)
|
||||||
r'<iframe[^>]+src="(?P<url>https?://out\.pladform\.ru/player\?.+?)"', webpage)
|
if pladform_url:
|
||||||
if mobj is not None:
|
return self.url_result(pladform_url)
|
||||||
return self.url_result(mobj.group('url'), 'Pladform')
|
|
||||||
|
|
||||||
# Look for Playwire embeds
|
# Look for Playwire embeds
|
||||||
mobj = re.search(
|
mobj = re.search(
|
||||||
|
|
Loading…
Reference in a new issue