diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-12-07 22:03:21 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-12-07 22:03:21 +0600 | 
| commit | 45dad7ba1b28321299f973fc6a42bd7de64481d7 (patch) | |
| tree | d3da4d92732af323e56883a11a12278af9ee8fcf /youtube_dl/extractor/generic.py | |
| parent | db7c9da871def2ab6c8520760512a976ea0fe0e7 (diff) | |
[extractor/generic] Use _extract_url for pladform
Diffstat (limited to 'youtube_dl/extractor/generic.py')
| -rw-r--r-- | youtube_dl/extractor/generic.py | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index e3bdff2d8..c2e8f9b62 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -54,6 +54,7 @@ from .onionstudios import OnionStudiosIE  from .snagfilms import SnagFilmsEmbedIE  from .screenwavemedia import ScreenwaveMediaIE  from .mtv import MTVServicesEmbeddedIE +from .pladform import PladformIE  class GenericIE(InfoExtractor): @@ -1741,10 +1742,9 @@ class GenericIE(InfoExtractor):              return self.url_result('eagleplatform:%(host)s:%(id)s' % mobj.groupdict(), 'EaglePlatform')          # Look for Pladform embeds -        mobj = re.search( -            r'<iframe[^>]+src="(?P<url>https?://out\.pladform\.ru/player\?.+?)"', webpage) -        if mobj is not None: -            return self.url_result(mobj.group('url'), 'Pladform') +        pladform_url = PladformIE._extract_url(webpage) +        if pladform_url: +            return self.url_result(pladform_url)          # Look for Playwire embeds          mobj = re.search( | 
