Merge branch 'niconico_nm' of https://github.com/ndac-todoroki/youtube-dl into ndac...
[youtube-dl] / youtube_dl / extractor / krasview.py
1 # encoding: utf-8
2 from __future__ import unicode_literals
3
4 import json
5
6 from .common import InfoExtractor
7 from ..utils import (
8     int_or_none,
9     js_to_json,
10 )
11
12
13 class KrasViewIE(InfoExtractor):
14     IE_DESC = 'Красвью'
15     _VALID_URL = r'https?://krasview\.ru/(?:video|embed)/(?P<id>\d+)'
16
17     _TEST = {
18         'url': 'http://krasview.ru/video/512228',
19         'md5': '3b91003cf85fc5db277870c8ebd98eae',
20         'info_dict': {
21             'id': '512228',
22             'ext': 'mp4',
23             'title': 'Снег, лёд, заносы',
24             'description': 'Снято в городе Нягань, в Ханты-Мансийском автономном округе.',
25             'duration': 27,
26             'thumbnail': 're:^https?://.*\.jpg',
27         },
28     }
29
30     def _real_extract(self, url):
31         video_id = self._match_id(url)
32
33         webpage = self._download_webpage(url, video_id)
34
35         flashvars = json.loads(js_to_json(self._search_regex(
36             r'video_Init\(({.+?})', webpage, 'flashvars')))
37
38         video_url = flashvars['url']
39         title = self._og_search_title(webpage)
40         description = self._og_search_description(webpage, default=None)
41         thumbnail = flashvars.get('image') or self._og_search_thumbnail(webpage)
42         duration = int_or_none(flashvars.get('duration'))
43         width = int_or_none(self._og_search_property(
44             'video:width', webpage, 'video width', default=None))
45         height = int_or_none(self._og_search_property(
46             'video:height', webpage, 'video height', default=None))
47
48         return {
49             'id': video_id,
50             'url': video_url,
51             'title': title,
52             'description': description,
53             'thumbnail': thumbnail,
54             'duration': duration,
55             'width': width,
56             'height': height,
57         }