]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/ntv.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
13 class NTVIE(InfoExtractor
):
14 _VALID_URL
= r
'http://(?:www\.)?ntv\.ru/(?P<id>.+)'
18 'url': 'http://www.ntv.ru/novosti/863142/',
22 'title': 'Командующий Черноморским флотом провел переговоры в штабе ВМС Украины',
23 'description': 'Командующий Черноморским флотом провел переговоры в штабе ВМС Украины',
28 'skip_download': True,
32 'url': 'http://www.ntv.ru/video/novosti/750370/',
36 'title': 'Родные пассажиров пропавшего Boeing не верят в трагический исход',
37 'description': 'Родные пассажиров пропавшего Boeing не верят в трагический исход',
42 'skip_download': True,
46 'url': 'http://www.ntv.ru/peredacha/segodnya/m23700/o232416',
50 'title': '«Сегодня». 21 марта 2014 года. 16:00 ',
51 'description': '«Сегодня». 21 марта 2014 года. 16:00 ',
56 'skip_download': True,
60 'url': 'http://www.ntv.ru/kino/Koma_film',
64 'title': 'Остросюжетный фильм «Кома»',
65 'description': 'Остросюжетный фильм «Кома»',
70 'skip_download': True,
74 'url': 'http://www.ntv.ru/serial/Delo_vrachey/m31760/o233916/',
78 'title': '«Дело врачей»: «Деревце жизни»',
79 'description': '«Дело врачей»: «Деревце жизни»',
84 'skip_download': True,
90 r
'<meta property="og:url" content="http://www\.ntv\.ru/video/(\d+)',
91 r
'<video embed=[^>]+><id>(\d+)</id>',
92 r
'<video restriction[^>]+><key>(\d+)</key>',
95 def _real_extract(self
, url
):
96 mobj
= re
.match(self
._VALID
_URL
, url
)
97 video_id
= mobj
.group('id')
99 page
= self
._download
_webpage
(url
, video_id
)
101 video_id
= self
._html
_search
_regex
(self
._VIDEO
_ID
_REGEXES
, page
, 'video id')
103 player
= self
._download
_xml
('http://www.ntv.ru/vi%s/' % video_id
, video_id
, 'Downloading video XML')
104 title
= unescapeHTML(player
.find('./data/title').text
)
105 description
= unescapeHTML(player
.find('./data/description').text
)
107 video
= player
.find('./data/video')
108 video_id
= video
.find('./id').text
109 thumbnail
= video
.find('./splash').text
110 duration
= int(video
.find('./totaltime').text
)
111 view_count
= int(video
.find('./views').text
)
112 puid22
= video
.find('./puid22').text
119 app
= apps
.get(puid22
, apps
['4'])
122 for format_id
in ['', 'hi', 'webm']:
123 file = video
.find('./%sfile' % format_id
)
126 size
= video
.find('./%ssize' % format_id
)
128 'url': 'rtmp://media.ntv.ru/%s' % app
,
130 'play_path': file.text
,
132 'player_url': 'http://www.ntv.ru/swf/vps1.swf?update=20131128',
133 'page_url': 'http://www.ntv.ru',
134 'flash_ver': 'LNX 11,2,202,341',
137 'filesize': int(size
.text
),
139 self
._sort
_formats
(formats
)
144 'description': description
,
145 'thumbnail': thumbnail
,
146 'duration': duration
,
147 'view_count': view_count
,