1 from .common
import InfoExtractor
9 class RENTVIE(InfoExtractor
):
11 _VALID_URL
= r
'(?:rentv:|https?://(?:www\.)?ren\.tv/(?:player|video/epizod)/)(?P<id>\d+)'
13 'url': 'http://ren.tv/video/epizod/118577',
14 'md5': 'd91851bf9af73c0ad9b2cdf76c127fbb',
18 'title': 'Документальный спецпроект: "Промывка мозгов. Технологии XXI века"',
19 'timestamp': 1472230800,
20 'upload_date': '20160826',
23 'url': 'http://ren.tv/player/118577',
24 'only_matching': True,
26 'url': 'rentv:118577',
27 'only_matching': True,
30 def _real_extract(self
, url
):
31 video_id
= self
._match
_id
(url
)
32 webpage
= self
._download
_webpage
('http://ren.tv/player/' + video_id
, video_id
)
33 config
= self
._parse
_json
(self
._search
_regex
(
34 r
'config\s*=\s*({.+})\s*;', webpage
, 'config'), video_id
)
35 title
= config
['title']
37 for video
in config
['src']:
38 src
= url_or_none(video
.get('src'))
41 ext
= determine_ext(src
)
43 formats
.extend(self
._extract
_m
3u8_formats
(
44 src
, video_id
, 'mp4', entry_protocol
='m3u8_native',
45 m3u8_id
='hls', fatal
=False))
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')),
61 class RENTVArticleIE(InfoExtractor
):
63 _VALID_URL
= r
'https?://(?:www\.)?ren\.tv/novosti/\d{4}-\d{2}-\d{2}/(?P<id>[^/?#]+)'
65 'url': 'http://ren.tv/novosti/2016-10-26/video-mikroavtobus-popavshiy-v-dtp-s-gruzovikami-v-podmoskove-prevratilsya-v',
66 'md5': 'ebd63c4680b167693745ab91343df1d6',
70 'title': 'Видео: микроавтобус, попавший в ДТП с грузовиками в Подмосковье, превратился в груду металла',
71 'description': 'Жертвами столкновения двух фур и микроавтобуса, по последним данным, стали семь человек.',
75 'url': 'http://ren.tv/novosti/2015-09-25/sluchaynyy-prohozhiy-poymal-avtougonshchika-v-murmanske-video',
79 'title': 'Случайный прохожий поймал автоугонщика в Мурманске. ВИДЕО | РЕН ТВ',
84 'skip_download': True,
89 def _real_extract(self
, url
):
90 display_id
= self
._match
_id
(url
)
91 webpage
= self
._download
_webpage
(url
, display_id
)
92 drupal_settings
= self
._parse
_json
(self
._search
_regex
(
93 r
'jQuery\.extend\(Drupal\.settings\s*,\s*({.+?})\);',
94 webpage
, 'drupal settings'), display_id
)
97 for config_profile
in drupal_settings
.get('ren_jwplayer', {}).values():
98 media_id
= config_profile
.get('mediaid')
101 media_id
= str(media_id
)
102 entries
.append(self
.url_result('rentv:' + media_id
, 'RENTV', media_id
))
103 return self
.playlist_result(entries
, display_id
)