2 from __future__ import unicode_literals
4 from .common import InfoExtractor
13 class NTVRuIE(InfoExtractor):
15 _VALID_URL = r'https?://(?:www\.)?ntv\.ru/(?:[^/]+/)*(?P<id>[^/?#&]+)'
18 'url': 'http://www.ntv.ru/novosti/863142/',
19 'md5': 'ba7ea172a91cb83eb734cad18c10e723',
23 'title': 'Командующий Черноморским флотом провел переговоры в штабе ВМС Украины',
24 'description': 'Командующий Черноморским флотом провел переговоры в штабе ВМС Украины',
25 'thumbnail': r're:^http://.*\.jpg',
29 'url': 'http://www.ntv.ru/video/novosti/750370/',
30 'md5': 'adecff79691b4d71e25220a191477124',
34 'title': 'Родные пассажиров пропавшего Boeing не верят в трагический исход',
35 'description': 'Родные пассажиров пропавшего Boeing не верят в трагический исход',
36 'thumbnail': r're:^http://.*\.jpg',
40 'url': 'http://www.ntv.ru/peredacha/segodnya/m23700/o232416',
41 'md5': '82dbd49b38e3af1d00df16acbeab260c',
45 'title': '«Сегодня». 21 марта 2014 года. 16:00',
46 'description': '«Сегодня». 21 марта 2014 года. 16:00',
47 'thumbnail': r're:^http://.*\.jpg',
51 'url': 'https://www.ntv.ru/kino/Koma_film/m70281/o336036/video/',
52 'md5': 'e9c7cde24d9d3eaed545911a04e6d4f4',
56 'title': 'Остросюжетный фильм «Кома»',
57 'description': 'Остросюжетный фильм «Кома»',
58 'thumbnail': r're:^http://.*\.jpg',
62 'url': 'http://www.ntv.ru/serial/Delo_vrachey/m31760/o233916/',
63 'md5': '9320cd0e23f3ea59c330dc744e06ff3b',
67 'title': '«Дело врачей»: «Деревце жизни»',
68 'description': '«Дело врачей»: «Деревце жизни»',
69 'thumbnail': r're:^http://.*\.jpg',
74 'url': 'https://www.ntv.ru/video/1797442',
75 'only_matching': True,
79 r'<meta property="og:url" content="http://www\.ntv\.ru/video/(\d+)',
80 r'<video embed=[^>]+><id>(\d+)</id>',
81 r'<video restriction[^>]+><key>(\d+)</key>',
84 def _real_extract(self, url):
85 video_id = self._match_id(url)
87 webpage = self._download_webpage(url, video_id)
89 video_url = self._og_search_property(
90 ('video', 'video:iframe'), webpage, default=None)
92 video_id = self._search_regex(
93 r'https?://(?:www\.)?ntv\.ru/video/(?:embed/)?(\d+)',
94 video_url, 'video id', default=None)
97 video_id = self._html_search_regex(
98 self._VIDEO_ID_REGEXES, webpage, 'video id')
100 player = self._download_xml(
101 'http://www.ntv.ru/vi%s/' % video_id,
102 video_id, 'Downloading video XML')
104 title = strip_or_none(unescapeHTML(xpath_text(player, './data/title', 'title', fatal=True)))
106 video = player.find('./data/video')
109 for format_id in ['', 'hi', 'webm']:
110 file_ = xpath_text(video, './%sfile' % format_id)
113 if file_.startswith('//'):
114 file_ = self._proto_relative_url(file_)
115 elif not file_.startswith('http'):
116 file_ = 'http://media.ntv.ru/vod/' + file_
119 'filesize': int_or_none(xpath_text(video, './%ssize' % format_id)),
121 self._sort_formats(formats)
124 'id': xpath_text(video, './id'),
126 'description': strip_or_none(unescapeHTML(xpath_text(player, './data/description'))),
127 'thumbnail': xpath_text(video, './splash'),
128 'duration': int_or_none(xpath_text(video, './totaltime')),
129 'view_count': int_or_none(xpath_text(video, './views')),