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.

169 lines
6.6 KiB

10 years ago
10 years ago
  1. # encoding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..compat import compat_urlparse
  6. from ..utils import (
  7. determine_ext,
  8. int_or_none,
  9. unified_strdate,
  10. ExtractorError,
  11. )
  12. class LifeNewsIE(InfoExtractor):
  13. IE_NAME = 'lifenews'
  14. IE_DESC = 'LIFE | NEWS'
  15. _VALID_URL = r'http://lifenews\.ru/(?:mobile/)?(?P<section>news|video)/(?P<id>\d+)'
  16. _TESTS = [{
  17. 'url': 'http://lifenews.ru/news/126342',
  18. 'md5': 'e1b50a5c5fb98a6a544250f2e0db570a',
  19. 'info_dict': {
  20. 'id': '126342',
  21. 'ext': 'mp4',
  22. 'title': 'МВД разыскивает мужчин, оставивших в IKEA сумку с автоматом',
  23. 'description': 'Камеры наблюдения гипермаркета зафиксировали троих мужчин, спрятавших оружейный арсенал в камере хранения.',
  24. 'thumbnail': 're:http://.*\.jpg',
  25. 'upload_date': '20140130',
  26. }
  27. }, {
  28. # video in <iframe>
  29. 'url': 'http://lifenews.ru/news/152125',
  30. 'md5': '77d19a6f0886cd76bdbf44b4d971a273',
  31. 'info_dict': {
  32. 'id': '152125',
  33. 'ext': 'mp4',
  34. 'title': 'В Сети появилось видео захвата «Правым сектором» колхозных полей ',
  35. 'description': 'Жители двух поселков Днепропетровской области не простили радикалам угрозу лишения плодородных земель и пошли в лобовую. ',
  36. 'upload_date': '20150402',
  37. 'uploader': 'embed.life.ru',
  38. }
  39. }, {
  40. 'url': 'http://lifenews.ru/news/153461',
  41. 'md5': '9b6ef8bc0ffa25aebc8bdb40d89ab795',
  42. 'info_dict': {
  43. 'id': '153461',
  44. 'ext': 'mp4',
  45. 'title': 'В Москве спасли потерявшегося медвежонка, который спрятался на дереве',
  46. 'description': 'Маленький хищник не смог найти дорогу домой и обрел временное убежище на тополе недалеко от жилого массива, пока его не нашла соседская собака.',
  47. 'upload_date': '20150505',
  48. 'uploader': 'embed.life.ru',
  49. }
  50. }, {
  51. 'url': 'http://lifenews.ru/video/13035',
  52. 'only_matching': True,
  53. }]
  54. def _real_extract(self, url):
  55. mobj = re.match(self._VALID_URL, url)
  56. video_id = mobj.group('id')
  57. section = mobj.group('section')
  58. webpage = self._download_webpage(
  59. 'http://lifenews.ru/%s/%s' % (section, video_id),
  60. video_id, 'Downloading page')
  61. videos = re.findall(r'<video.*?poster="(?P<poster>[^"]+)".*?src="(?P<video>[^"]+)".*?></video>', webpage)
  62. iframe_link = self._html_search_regex(
  63. '<iframe[^>]+src=["\']([^"\']+)["\']', webpage, 'iframe link', default=None)
  64. if not videos and not iframe_link:
  65. raise ExtractorError('No media links available for %s' % video_id)
  66. title = self._og_search_title(webpage)
  67. TITLE_SUFFIX = ' - Первый по срочным новостям — LIFE | NEWS'
  68. if title.endswith(TITLE_SUFFIX):
  69. title = title[:-len(TITLE_SUFFIX)]
  70. description = self._og_search_description(webpage)
  71. view_count = self._html_search_regex(
  72. r'<div class=\'views\'>\s*(\d+)\s*</div>', webpage, 'view count', fatal=False)
  73. comment_count = self._html_search_regex(
  74. r'<div class=\'comments\'>\s*<span class=\'counter\'>\s*(\d+)\s*</span>', webpage, 'comment count', fatal=False)
  75. upload_date = self._html_search_regex(
  76. r'<time datetime=\'([^\']+)\'>', webpage, 'upload date', fatal=False)
  77. if upload_date is not None:
  78. upload_date = unified_strdate(upload_date)
  79. common_info = {
  80. 'description': description,
  81. 'view_count': int_or_none(view_count),
  82. 'comment_count': int_or_none(comment_count),
  83. 'upload_date': upload_date,
  84. }
  85. def make_entry(video_id, media, video_number=None):
  86. cur_info = dict(common_info)
  87. cur_info.update({
  88. 'id': video_id,
  89. 'url': media[1],
  90. 'thumbnail': media[0],
  91. 'title': title if video_number is None else '%s-video%s' % (title, video_number),
  92. })
  93. return cur_info
  94. if iframe_link:
  95. iframe_link = self._proto_relative_url(iframe_link, 'http:')
  96. cur_info = dict(common_info)
  97. cur_info.update({
  98. '_type': 'url_transparent',
  99. 'id': video_id,
  100. 'title': title,
  101. 'url': iframe_link,
  102. })
  103. return cur_info
  104. if len(videos) == 1:
  105. return make_entry(video_id, videos[0])
  106. else:
  107. return [make_entry(video_id, media, video_number + 1) for video_number, media in enumerate(videos)]
  108. class LifeEmbedIE(InfoExtractor):
  109. IE_NAME = 'life:embed'
  110. _VALID_URL = r'http://embed\.life\.ru/embed/(?P<id>[\da-f]{32})'
  111. _TEST = {
  112. 'url': 'http://embed.life.ru/embed/e50c2dec2867350528e2574c899b8291',
  113. 'md5': 'b889715c9e49cb1981281d0e5458fbbe',
  114. 'info_dict': {
  115. 'id': 'e50c2dec2867350528e2574c899b8291',
  116. 'ext': 'mp4',
  117. 'title': 'e50c2dec2867350528e2574c899b8291',
  118. 'thumbnail': 're:http://.*\.jpg',
  119. }
  120. }
  121. def _real_extract(self, url):
  122. video_id = self._match_id(url)
  123. webpage = self._download_webpage(url, video_id)
  124. formats = []
  125. for video_url in re.findall(r'"file"\s*:\s*"([^"]+)', webpage):
  126. video_url = compat_urlparse.urljoin(url, video_url)
  127. ext = determine_ext(video_url)
  128. if ext == 'm3u8':
  129. formats.extend(self._extract_m3u8_formats(
  130. video_url, video_id, 'mp4', m3u8_id='m3u8'))
  131. else:
  132. formats.append({
  133. 'url': video_url,
  134. 'format_id': ext,
  135. 'preference': 1,
  136. })
  137. self._sort_formats(formats)
  138. thumbnail = self._search_regex(
  139. r'"image"\s*:\s*"([^"]+)', webpage, 'thumbnail', default=None)
  140. return {
  141. 'id': video_id,
  142. 'title': video_id,
  143. 'thumbnail': thumbnail,
  144. 'formats': formats,
  145. }