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.

168 lines
6.4 KiB

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