You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

128 lines
4.9 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. # encoding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. clean_html,
  6. xpath_text,
  7. int_or_none,
  8. )
  9. class NTVRuIE(InfoExtractor):
  10. IE_NAME = 'ntv.ru'
  11. _VALID_URL = r'http://(?:www\.)?ntv\.ru/(?P<id>.+)'
  12. _TESTS = [
  13. {
  14. 'url': 'http://www.ntv.ru/novosti/863142/',
  15. 'md5': 'ba7ea172a91cb83eb734cad18c10e723',
  16. 'info_dict': {
  17. 'id': '746000',
  18. 'ext': 'mp4',
  19. 'title': 'Командующий Черноморским флотом провел переговоры в штабе ВМС Украины',
  20. 'description': 'Командующий Черноморским флотом провел переговоры в штабе ВМС Украины',
  21. 'thumbnail': 're:^http://.*\.jpg',
  22. 'duration': 136,
  23. },
  24. },
  25. {
  26. 'url': 'http://www.ntv.ru/video/novosti/750370/',
  27. 'md5': 'adecff79691b4d71e25220a191477124',
  28. 'info_dict': {
  29. 'id': '750370',
  30. 'ext': 'mp4',
  31. 'title': 'Родные пассажиров пропавшего Boeing не верят в трагический исход',
  32. 'description': 'Родные пассажиров пропавшего Boeing не верят в трагический исход',
  33. 'thumbnail': 're:^http://.*\.jpg',
  34. 'duration': 172,
  35. },
  36. },
  37. {
  38. 'url': 'http://www.ntv.ru/peredacha/segodnya/m23700/o232416',
  39. 'md5': '82dbd49b38e3af1d00df16acbeab260c',
  40. 'info_dict': {
  41. 'id': '747480',
  42. 'ext': 'mp4',
  43. 'title': '«Сегодня». 21 марта 2014 года. 16:00',
  44. 'description': '«Сегодня». 21 марта 2014 года. 16:00',
  45. 'thumbnail': 're:^http://.*\.jpg',
  46. 'duration': 1496,
  47. },
  48. },
  49. {
  50. 'url': 'http://www.ntv.ru/kino/Koma_film',
  51. 'md5': 'f825770930937aa7e5aca0dc0d29319a',
  52. 'info_dict': {
  53. 'id': '1007609',
  54. 'ext': 'mp4',
  55. 'title': 'Остросюжетный фильм «Кома»',
  56. 'description': 'Остросюжетный фильм «Кома»',
  57. 'thumbnail': 're:^http://.*\.jpg',
  58. 'duration': 5592,
  59. },
  60. },
  61. {
  62. 'url': 'http://www.ntv.ru/serial/Delo_vrachey/m31760/o233916/',
  63. 'md5': '9320cd0e23f3ea59c330dc744e06ff3b',
  64. 'info_dict': {
  65. 'id': '751482',
  66. 'ext': 'mp4',
  67. 'title': '«Дело врачей»: «Деревце жизни»',
  68. 'description': '«Дело врачей»: «Деревце жизни»',
  69. 'thumbnail': 're:^http://.*\.jpg',
  70. 'duration': 2590,
  71. },
  72. },
  73. ]
  74. _VIDEO_ID_REGEXES = [
  75. r'<meta property="og:url" content="http://www\.ntv\.ru/video/(\d+)',
  76. r'<video embed=[^>]+><id>(\d+)</id>',
  77. r'<video restriction[^>]+><key>(\d+)</key>',
  78. ]
  79. def _real_extract(self, url):
  80. video_id = self._match_id(url)
  81. webpage = self._download_webpage(url, video_id)
  82. video_id = self._html_search_regex(self._VIDEO_ID_REGEXES, webpage, 'video id')
  83. player = self._download_xml(
  84. 'http://www.ntv.ru/vi%s/' % video_id,
  85. video_id, 'Downloading video XML')
  86. title = clean_html(xpath_text(player, './data/title', 'title', fatal=True))
  87. description = clean_html(xpath_text(player, './data/description', 'description'))
  88. video = player.find('./data/video')
  89. video_id = xpath_text(video, './id', 'video id')
  90. thumbnail = xpath_text(video, './splash', 'thumbnail')
  91. duration = int_or_none(xpath_text(video, './totaltime', 'duration'))
  92. view_count = int_or_none(xpath_text(video, './views', 'view count'))
  93. token = self._download_webpage(
  94. 'http://stat.ntv.ru/services/access/token',
  95. video_id, 'Downloading access token')
  96. formats = []
  97. for format_id in ['', 'hi', 'webm']:
  98. file_ = video.find('./%sfile' % format_id)
  99. if file_ is None:
  100. continue
  101. size = video.find('./%ssize' % format_id)
  102. formats.append({
  103. 'url': 'http://media2.ntv.ru/vod/%s&tok=%s' % (file_.text, token),
  104. 'filesize': int_or_none(size.text if size is not None else None),
  105. })
  106. self._sort_formats(formats)
  107. return {
  108. 'id': video_id,
  109. 'title': title,
  110. 'description': description,
  111. 'thumbnail': thumbnail,
  112. 'duration': duration,
  113. 'view_count': view_count,
  114. 'formats': formats,
  115. }