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.

75 lines
3.1 KiB

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