logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

ntvru.py (5054B)


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