+ player = self._download_xml(
+ 'http://www.ntv.ru/vi%s/' % video_id,
+ video_id, 'Downloading video XML')
+
+ title = clean_html(xpath_text(player, './data/title', 'title', fatal=True))
+ description = clean_html(xpath_text(player, './data/description', 'description'))
+
+ video = player.find('./data/video')
+ video_id = xpath_text(video, './id', 'video id')
+ thumbnail = xpath_text(video, './splash', 'thumbnail')
+ duration = int_or_none(xpath_text(video, './totaltime', 'duration'))
+ view_count = int_or_none(xpath_text(video, './views', 'view count'))