logo

youtube-dl

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

rentv.py (4156B)


  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..compat import compat_str
  5. from ..utils import (
  6. determine_ext,
  7. int_or_none,
  8. url_or_none,
  9. )
  10. class RENTVIE(InfoExtractor):
  11. _VALID_URL = r'(?:rentv:|https?://(?:www\.)?ren\.tv/(?:player|video/epizod)/)(?P<id>\d+)'
  12. _TESTS = [{
  13. 'url': 'http://ren.tv/video/epizod/118577',
  14. 'md5': 'd91851bf9af73c0ad9b2cdf76c127fbb',
  15. 'info_dict': {
  16. 'id': '118577',
  17. 'ext': 'mp4',
  18. 'title': 'Документальный спецпроект: "Промывка мозгов. Технологии XXI века"',
  19. 'timestamp': 1472230800,
  20. 'upload_date': '20160826',
  21. }
  22. }, {
  23. 'url': 'http://ren.tv/player/118577',
  24. 'only_matching': True,
  25. }, {
  26. 'url': 'rentv:118577',
  27. 'only_matching': True,
  28. }]
  29. def _real_extract(self, url):
  30. video_id = self._match_id(url)
  31. webpage = self._download_webpage('http://ren.tv/player/' + video_id, video_id)
  32. config = self._parse_json(self._search_regex(
  33. r'config\s*=\s*({.+})\s*;', webpage, 'config'), video_id)
  34. title = config['title']
  35. formats = []
  36. for video in config['src']:
  37. src = url_or_none(video.get('src'))
  38. if not src:
  39. continue
  40. ext = determine_ext(src)
  41. if ext == 'm3u8':
  42. formats.extend(self._extract_m3u8_formats(
  43. src, video_id, 'mp4', entry_protocol='m3u8_native',
  44. m3u8_id='hls', fatal=False))
  45. else:
  46. formats.append({
  47. 'url': src,
  48. })
  49. self._sort_formats(formats)
  50. return {
  51. 'id': video_id,
  52. 'title': title,
  53. 'description': config.get('description'),
  54. 'thumbnail': config.get('image'),
  55. 'duration': int_or_none(config.get('duration')),
  56. 'timestamp': int_or_none(config.get('date')),
  57. 'formats': formats,
  58. }
  59. class RENTVArticleIE(InfoExtractor):
  60. _VALID_URL = r'https?://(?:www\.)?ren\.tv/novosti/\d{4}-\d{2}-\d{2}/(?P<id>[^/?#]+)'
  61. _TESTS = [{
  62. 'url': 'http://ren.tv/novosti/2016-10-26/video-mikroavtobus-popavshiy-v-dtp-s-gruzovikami-v-podmoskove-prevratilsya-v',
  63. 'md5': 'ebd63c4680b167693745ab91343df1d6',
  64. 'info_dict': {
  65. 'id': '136472',
  66. 'ext': 'mp4',
  67. 'title': 'Видео: микроавтобус, попавший в ДТП с грузовиками в Подмосковье, превратился в груду металла',
  68. 'description': 'Жертвами столкновения двух фур и микроавтобуса, по последним данным, стали семь человек.',
  69. }
  70. }, {
  71. # TODO: invalid m3u8
  72. 'url': 'http://ren.tv/novosti/2015-09-25/sluchaynyy-prohozhiy-poymal-avtougonshchika-v-murmanske-video',
  73. 'info_dict': {
  74. 'id': 'playlist',
  75. 'ext': 'mp4',
  76. 'title': 'Случайный прохожий поймал автоугонщика в Мурманске. ВИДЕО | РЕН ТВ',
  77. 'uploader': 'ren.tv',
  78. },
  79. 'params': {
  80. # m3u8 downloads
  81. 'skip_download': True,
  82. },
  83. 'skip': True,
  84. }]
  85. def _real_extract(self, url):
  86. display_id = self._match_id(url)
  87. webpage = self._download_webpage(url, display_id)
  88. drupal_settings = self._parse_json(self._search_regex(
  89. r'jQuery\.extend\(Drupal\.settings\s*,\s*({.+?})\);',
  90. webpage, 'drupal settings'), display_id)
  91. entries = []
  92. for config_profile in drupal_settings.get('ren_jwplayer', {}).values():
  93. media_id = config_profile.get('mediaid')
  94. if not media_id:
  95. continue
  96. media_id = compat_str(media_id)
  97. entries.append(self.url_result('rentv:' + media_id, 'RENTV', media_id))
  98. return self.playlist_result(entries, display_id)