2016-10-02 13:39:18 +02:00
|
|
|
|
# coding: utf-8
|
2014-03-28 17:01:08 +01:00
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
from ..utils import (
|
2015-02-10 16:35:34 +01:00
|
|
|
|
int_or_none,
|
2019-11-18 21:40:53 +01:00
|
|
|
|
strip_or_none,
|
|
|
|
|
unescapeHTML,
|
|
|
|
|
xpath_text,
|
2014-03-28 17:01:08 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2015-02-02 20:43:02 +01:00
|
|
|
|
class NTVRuIE(InfoExtractor):
|
2015-02-02 21:48:54 +01:00
|
|
|
|
IE_NAME = 'ntv.ru'
|
2016-08-02 17:56:48 +02:00
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?ntv\.ru/(?:[^/]+/)*(?P<id>[^/?#&]+)'
|
2014-03-28 17:01:08 +01:00
|
|
|
|
|
2016-08-02 17:56:48 +02:00
|
|
|
|
_TESTS = [{
|
|
|
|
|
'url': 'http://www.ntv.ru/novosti/863142/',
|
|
|
|
|
'md5': 'ba7ea172a91cb83eb734cad18c10e723',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '746000',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'title': 'Командующий Черноморским флотом провел переговоры в штабе ВМС Украины',
|
|
|
|
|
'description': 'Командующий Черноморским флотом провел переговоры в штабе ВМС Украины',
|
2017-01-02 13:08:07 +01:00
|
|
|
|
'thumbnail': r're:^http://.*\.jpg',
|
2016-08-02 17:56:48 +02:00
|
|
|
|
'duration': 136,
|
2014-03-28 17:01:08 +01:00
|
|
|
|
},
|
2016-08-02 17:56:48 +02:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://www.ntv.ru/video/novosti/750370/',
|
|
|
|
|
'md5': 'adecff79691b4d71e25220a191477124',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '750370',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'title': 'Родные пассажиров пропавшего Boeing не верят в трагический исход',
|
|
|
|
|
'description': 'Родные пассажиров пропавшего Boeing не верят в трагический исход',
|
2017-01-02 13:08:07 +01:00
|
|
|
|
'thumbnail': r're:^http://.*\.jpg',
|
2016-08-02 17:56:48 +02:00
|
|
|
|
'duration': 172,
|
2014-03-28 17:01:08 +01:00
|
|
|
|
},
|
2016-08-02 17:56:48 +02:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://www.ntv.ru/peredacha/segodnya/m23700/o232416',
|
|
|
|
|
'md5': '82dbd49b38e3af1d00df16acbeab260c',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '747480',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'title': '«Сегодня». 21 марта 2014 года. 16:00',
|
|
|
|
|
'description': '«Сегодня». 21 марта 2014 года. 16:00',
|
2017-01-02 13:08:07 +01:00
|
|
|
|
'thumbnail': r're:^http://.*\.jpg',
|
2016-08-02 17:56:48 +02:00
|
|
|
|
'duration': 1496,
|
2014-03-28 17:01:08 +01:00
|
|
|
|
},
|
2016-08-02 17:56:48 +02:00
|
|
|
|
}, {
|
2019-11-18 21:40:53 +01:00
|
|
|
|
'url': 'https://www.ntv.ru/kino/Koma_film/m70281/o336036/video/',
|
|
|
|
|
'md5': 'e9c7cde24d9d3eaed545911a04e6d4f4',
|
2016-08-02 17:56:48 +02:00
|
|
|
|
'info_dict': {
|
2019-11-18 21:40:53 +01:00
|
|
|
|
'id': '1126480',
|
2016-08-02 17:56:48 +02:00
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'title': 'Остросюжетный фильм «Кома»',
|
|
|
|
|
'description': 'Остросюжетный фильм «Кома»',
|
2017-01-02 13:08:07 +01:00
|
|
|
|
'thumbnail': r're:^http://.*\.jpg',
|
2016-08-02 17:56:48 +02:00
|
|
|
|
'duration': 5592,
|
2014-03-28 17:01:08 +01:00
|
|
|
|
},
|
2016-08-02 17:56:48 +02:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://www.ntv.ru/serial/Delo_vrachey/m31760/o233916/',
|
|
|
|
|
'md5': '9320cd0e23f3ea59c330dc744e06ff3b',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '751482',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'title': '«Дело врачей»: «Деревце жизни»',
|
|
|
|
|
'description': '«Дело врачей»: «Деревце жизни»',
|
2017-01-02 13:08:07 +01:00
|
|
|
|
'thumbnail': r're:^http://.*\.jpg',
|
2016-08-02 17:56:48 +02:00
|
|
|
|
'duration': 2590,
|
2014-03-28 17:01:08 +01:00
|
|
|
|
},
|
2019-11-18 21:40:53 +01:00
|
|
|
|
}, {
|
|
|
|
|
# Schemeless file URL
|
|
|
|
|
'url': 'https://www.ntv.ru/video/1797442',
|
|
|
|
|
'only_matching': True,
|
2016-08-02 17:56:48 +02:00
|
|
|
|
}]
|
2014-03-28 17:01:08 +01:00
|
|
|
|
|
|
|
|
|
_VIDEO_ID_REGEXES = [
|
|
|
|
|
r'<meta property="og:url" content="http://www\.ntv\.ru/video/(\d+)',
|
|
|
|
|
r'<video embed=[^>]+><id>(\d+)</id>',
|
2014-05-01 21:26:07 +02:00
|
|
|
|
r'<video restriction[^>]+><key>(\d+)</key>',
|
2014-03-28 17:01:08 +01:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2015-02-02 20:43:02 +01:00
|
|
|
|
video_id = self._match_id(url)
|
2014-03-29 09:55:03 +01:00
|
|
|
|
|
2015-02-10 16:35:34 +01:00
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
2014-03-28 17:01:08 +01:00
|
|
|
|
|
2016-08-02 17:56:48 +02:00
|
|
|
|
video_url = self._og_search_property(
|
|
|
|
|
('video', 'video:iframe'), webpage, default=None)
|
|
|
|
|
if video_url:
|
|
|
|
|
video_id = self._search_regex(
|
|
|
|
|
r'https?://(?:www\.)?ntv\.ru/video/(?:embed/)?(\d+)',
|
|
|
|
|
video_url, 'video id', default=None)
|
|
|
|
|
|
|
|
|
|
if not video_id:
|
|
|
|
|
video_id = self._html_search_regex(
|
|
|
|
|
self._VIDEO_ID_REGEXES, webpage, 'video id')
|
2014-03-28 17:01:08 +01:00
|
|
|
|
|
2015-02-10 16:35:34 +01:00
|
|
|
|
player = self._download_xml(
|
|
|
|
|
'http://www.ntv.ru/vi%s/' % video_id,
|
|
|
|
|
video_id, 'Downloading video XML')
|
2016-08-02 17:56:48 +02:00
|
|
|
|
|
2019-11-18 21:40:53 +01:00
|
|
|
|
title = strip_or_none(unescapeHTML(xpath_text(player, './data/title', 'title', fatal=True)))
|
2014-03-28 17:01:08 +01:00
|
|
|
|
|
2015-02-10 16:35:34 +01:00
|
|
|
|
video = player.find('./data/video')
|
2014-03-28 17:09:56 +01:00
|
|
|
|
|
2014-03-28 17:01:08 +01:00
|
|
|
|
formats = []
|
|
|
|
|
for format_id in ['', 'hi', 'webm']:
|
2019-11-18 21:40:53 +01:00
|
|
|
|
file_ = xpath_text(video, './%sfile' % format_id)
|
|
|
|
|
if not file_:
|
2014-03-28 17:01:08 +01:00
|
|
|
|
continue
|
2019-11-18 21:40:53 +01:00
|
|
|
|
if file_.startswith('//'):
|
|
|
|
|
file_ = self._proto_relative_url(file_)
|
|
|
|
|
elif not file_.startswith('http'):
|
|
|
|
|
file_ = 'http://media.ntv.ru/vod/' + file_
|
2014-03-28 17:01:08 +01:00
|
|
|
|
formats.append({
|
2019-11-18 21:40:53 +01:00
|
|
|
|
'url': file_,
|
|
|
|
|
'filesize': int_or_none(xpath_text(video, './%ssize' % format_id)),
|
2014-03-28 17:01:08 +01:00
|
|
|
|
})
|
|
|
|
|
self._sort_formats(formats)
|
|
|
|
|
|
|
|
|
|
return {
|
2019-11-18 21:40:53 +01:00
|
|
|
|
'id': xpath_text(video, './id'),
|
2014-03-28 17:01:08 +01:00
|
|
|
|
'title': title,
|
2019-11-18 21:40:53 +01:00
|
|
|
|
'description': strip_or_none(unescapeHTML(xpath_text(player, './data/description'))),
|
|
|
|
|
'thumbnail': xpath_text(video, './splash'),
|
|
|
|
|
'duration': int_or_none(xpath_text(video, './totaltime')),
|
|
|
|
|
'view_count': int_or_none(xpath_text(video, './views')),
|
2014-03-28 17:01:08 +01:00
|
|
|
|
'formats': formats,
|
2014-11-23 20:41:03 +01:00
|
|
|
|
}
|