diff options
| -rw-r--r-- | youtube_dl/extractor/__init__.py | 1 | ||||
| -rw-r--r-- | youtube_dl/extractor/pladform.py | 86 | 
2 files changed, 87 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index e2475a634..14172ca56 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -364,6 +364,7 @@ from .pbs import PBSIE  from .phoenix import PhoenixIE  from .photobucket import PhotobucketIE  from .planetaplay import PlanetaPlayIE +from .pladform import PladformIE  from .played import PlayedIE  from .playfm import PlayFMIE  from .playvid import PlayvidIE diff --git a/youtube_dl/extractor/pladform.py b/youtube_dl/extractor/pladform.py new file mode 100644 index 000000000..926e368a2 --- /dev/null +++ b/youtube_dl/extractor/pladform.py @@ -0,0 +1,86 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from .common import InfoExtractor +from ..utils import ( +    ExtractorError, +    int_or_none, +    xpath_text, +) + + +class PladformIE(InfoExtractor): +    _VALID_URL = r'''(?x) +                    https?:// +                        (?: +                            (?: +                                out\.pladform\.ru/player| +                                static\.pladform\.ru/player\.swf +                            ) +                            \?.*\bvideoid=| +                            video\.pladform\.ru/catalog/video/videoid/ +                        ) +                        (?P<id>\d+) +                    ''' +    _TESTS = [{ +        # http://muz-tv.ru/kinozal/view/7400/ +        'url': 'http://out.pladform.ru/player?pl=24822&videoid=100183293', +        'md5': '61f37b575dd27f1bb2e1854777fe31f4', +        'info_dict': { +            'id': '100183293', +            'ext': 'mp4', +            'title': 'Тайны перевала Дятлова • Тайна перевала Дятлова 1 серия 2 часть', +            'description': 'Документальный сериал-расследование одной из самых жутких тайн ХХ века', +            'thumbnail': 're:^https?://.*\.jpg$', +            'duration': 694, +            'age_limit': 0, +        }, +    }, { +        'url': 'http://static.pladform.ru/player.swf?pl=21469&videoid=100183293&vkcid=0', +        'only_matching': True, +    }, { +        'url': 'http://video.pladform.ru/catalog/video/videoid/100183293/vkcid/0', +        'only_matching': True, +    }] + +    def _real_extract(self, url): +        video_id = self._match_id(url) + +        video = self._download_xml( +            'http://out.pladform.ru/getVideo?pl=1&videoid=%s' % video_id, +            video_id) + +        if video.tag == 'error': +            raise ExtractorError( +                '%s returned error: %s' % (self.IE_NAME, video.text), +                expected=True) + +        formats = [{ +            'url': src.text, +            'format_id': src.get('quality'), +        } for src in video.findall('./src')] +        self._sort_formats(formats) + +        webpage = self._download_webpage( +            'http://video.pladform.ru/catalog/video/videoid/%s' % video_id, +            video_id) + +        title = self._og_search_title(webpage, fatal=False) or xpath_text( +            video, './/title', 'title', fatal=True) +        description = self._search_regex( +            r'</h3>\s*<p>([^<]+)</p>', webpage, 'description', fatal=False) +        thumbnail = self._og_search_thumbnail(webpage) or xpath_text( +            video, './/cover', 'cover') + +        duration = int_or_none(xpath_text(video, './/time', 'duration')) +        age_limit = int_or_none(xpath_text(video, './/age18', 'age limit')) + +        return { +            'id': video_id, +            'title': title, +            'description': description, +            'thumbnail': thumbnail, +            'duration': duration, +            'age_limit': age_limit, +            'formats': formats, +        } | 
