2014-03-02 13:59:34 +01:00
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
from ..utils import (
|
2015-06-03 16:52:47 +02:00
|
|
|
|
ExtractorError,
|
2014-09-03 14:59:36 +02:00
|
|
|
|
float_or_none,
|
2015-05-30 23:00:13 +02:00
|
|
|
|
int_or_none,
|
2014-12-08 17:03:02 +01:00
|
|
|
|
parse_age_limit,
|
2019-08-02 00:25:01 +02:00
|
|
|
|
try_get,
|
|
|
|
|
url_or_none,
|
2014-03-02 13:59:34 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TvigleIE(InfoExtractor):
|
|
|
|
|
IE_NAME = 'tvigle'
|
|
|
|
|
IE_DESC = 'Интернет-телевидение Tvigle.ru'
|
2015-02-06 16:15:01 +01:00
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?(?:tvigle\.ru/(?:[^/]+/)+(?P<display_id>[^/]+)/$|cloud\.tvigle\.ru/video/(?P<id>\d+))'
|
2022-08-01 03:23:25 +02:00
|
|
|
|
_EMBED_REGEX = [r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//cloud\.tvigle\.ru/video/.+?)\1']
|
2014-03-04 13:22:48 +01:00
|
|
|
|
|
2017-02-25 17:27:14 +01:00
|
|
|
|
_GEO_BYPASS = False
|
|
|
|
|
_GEO_COUNTRIES = ['RU']
|
|
|
|
|
|
2014-03-04 13:22:48 +01:00
|
|
|
|
_TESTS = [
|
|
|
|
|
{
|
2014-12-08 17:03:02 +01:00
|
|
|
|
'url': 'http://www.tvigle.ru/video/sokrat/',
|
2014-03-04 13:22:48 +01:00
|
|
|
|
'info_dict': {
|
2014-12-08 17:03:02 +01:00
|
|
|
|
'id': '1848932',
|
|
|
|
|
'display_id': 'sokrat',
|
2019-08-02 00:25:01 +02:00
|
|
|
|
'ext': 'mp4',
|
2014-12-08 17:03:02 +01:00
|
|
|
|
'title': 'Сократ',
|
2015-05-30 23:00:13 +02:00
|
|
|
|
'description': 'md5:d6b92ffb7217b4b8ebad2e7665253c17',
|
2014-12-08 17:03:02 +01:00
|
|
|
|
'duration': 6586,
|
2015-05-30 23:00:13 +02:00
|
|
|
|
'age_limit': 12,
|
2014-03-04 13:22:48 +01:00
|
|
|
|
},
|
2015-06-03 16:53:54 +02:00
|
|
|
|
'skip': 'georestricted',
|
2014-03-04 13:22:48 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2014-09-03 14:59:36 +02:00
|
|
|
|
'url': 'http://www.tvigle.ru/video/vladimir-vysotskii/vedushchii-teleprogrammy-60-minut-ssha-o-vladimire-vysotskom/',
|
2014-03-04 13:22:48 +01:00
|
|
|
|
'info_dict': {
|
2014-09-03 14:59:36 +02:00
|
|
|
|
'id': '5142516',
|
2015-05-30 23:00:13 +02:00
|
|
|
|
'ext': 'flv',
|
2014-03-04 13:22:48 +01:00
|
|
|
|
'title': 'Ведущий телепрограммы «60 минут» (США) о Владимире Высоцком',
|
|
|
|
|
'description': 'md5:027f7dc872948f14c96d19b4178428a4',
|
2014-09-03 14:59:36 +02:00
|
|
|
|
'duration': 186.080,
|
|
|
|
|
'age_limit': 0,
|
2014-03-04 13:22:48 +01:00
|
|
|
|
},
|
2015-06-03 16:53:54 +02:00
|
|
|
|
'skip': 'georestricted',
|
2015-02-06 16:15:01 +01:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://cloud.tvigle.ru/video/5267604/',
|
|
|
|
|
'only_matching': True,
|
|
|
|
|
}
|
2014-03-04 13:22:48 +01:00
|
|
|
|
]
|
2014-03-02 13:59:34 +01:00
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2021-08-19 03:41:24 +02:00
|
|
|
|
mobj = self._match_valid_url(url)
|
2015-02-06 16:15:01 +01:00
|
|
|
|
video_id = mobj.group('id')
|
|
|
|
|
display_id = mobj.group('display_id')
|
2014-03-02 13:59:34 +01:00
|
|
|
|
|
2015-02-06 16:15:01 +01:00
|
|
|
|
if not video_id:
|
|
|
|
|
webpage = self._download_webpage(url, display_id)
|
|
|
|
|
video_id = self._html_search_regex(
|
2016-04-20 19:52:41 +02:00
|
|
|
|
(r'<div[^>]+class=["\']player["\'][^>]+id=["\'](\d+)',
|
2019-08-02 00:25:01 +02:00
|
|
|
|
r'cloudId\s*=\s*["\'](\d+)',
|
2016-04-20 19:52:41 +02:00
|
|
|
|
r'class="video-preview current_playing" id="(\d+)"'),
|
2015-02-06 16:15:01 +01:00
|
|
|
|
webpage, 'video id')
|
2014-03-02 13:59:34 +01:00
|
|
|
|
|
2014-09-03 14:59:36 +02:00
|
|
|
|
video_data = self._download_json(
|
|
|
|
|
'http://cloud.tvigle.ru/api/play/video/%s/' % video_id, display_id)
|
2014-03-02 13:59:34 +01:00
|
|
|
|
|
2014-09-03 14:59:36 +02:00
|
|
|
|
item = video_data['playlist']['items'][0]
|
|
|
|
|
|
2015-06-03 16:52:47 +02:00
|
|
|
|
videos = item.get('videos')
|
|
|
|
|
|
|
|
|
|
error_message = item.get('errorMessage')
|
|
|
|
|
if not videos and error_message:
|
2017-02-25 17:27:14 +01:00
|
|
|
|
if item.get('isGeoBlocked') is True:
|
|
|
|
|
self.raise_geo_restricted(
|
|
|
|
|
msg=error_message, countries=self._GEO_COUNTRIES)
|
|
|
|
|
else:
|
|
|
|
|
raise ExtractorError(
|
|
|
|
|
'%s returned error: %s' % (self.IE_NAME, error_message),
|
|
|
|
|
expected=True)
|
2015-06-03 16:52:47 +02:00
|
|
|
|
|
2014-09-03 14:59:36 +02:00
|
|
|
|
title = item['title']
|
2015-05-30 23:01:41 +02:00
|
|
|
|
description = item.get('description')
|
|
|
|
|
thumbnail = item.get('thumbnail')
|
2014-12-08 17:03:02 +01:00
|
|
|
|
duration = float_or_none(item.get('durationMilliseconds'), 1000)
|
|
|
|
|
age_limit = parse_age_limit(item.get('ageRestrictions'))
|
2014-03-02 13:59:34 +01:00
|
|
|
|
|
2014-09-03 14:59:36 +02:00
|
|
|
|
formats = []
|
2019-08-02 00:25:01 +02:00
|
|
|
|
for vcodec, url_or_fmts in item['videos'].items():
|
2016-04-21 18:15:20 +02:00
|
|
|
|
if vcodec == 'hls':
|
2019-08-02 00:25:01 +02:00
|
|
|
|
m3u8_url = url_or_none(url_or_fmts)
|
|
|
|
|
if not m3u8_url:
|
|
|
|
|
continue
|
|
|
|
|
formats.extend(self._extract_m3u8_formats(
|
|
|
|
|
m3u8_url, video_id, ext='mp4', entry_protocol='m3u8_native',
|
|
|
|
|
m3u8_id='hls', fatal=False))
|
|
|
|
|
elif vcodec == 'dash':
|
|
|
|
|
mpd_url = url_or_none(url_or_fmts)
|
|
|
|
|
if not mpd_url:
|
|
|
|
|
continue
|
|
|
|
|
formats.extend(self._extract_mpd_formats(
|
|
|
|
|
mpd_url, video_id, mpd_id='dash', fatal=False))
|
|
|
|
|
else:
|
|
|
|
|
if not isinstance(url_or_fmts, dict):
|
2015-05-30 23:00:13 +02:00
|
|
|
|
continue
|
2019-08-02 00:25:01 +02:00
|
|
|
|
for format_id, video_url in url_or_fmts.items():
|
|
|
|
|
if format_id == 'm3u8':
|
|
|
|
|
continue
|
|
|
|
|
video_url = url_or_none(video_url)
|
|
|
|
|
if not video_url:
|
|
|
|
|
continue
|
|
|
|
|
height = self._search_regex(
|
|
|
|
|
r'^(\d+)[pP]$', format_id, 'height', default=None)
|
|
|
|
|
filesize = int_or_none(try_get(
|
|
|
|
|
item, lambda x: x['video_files_size'][vcodec][format_id]))
|
|
|
|
|
formats.append({
|
|
|
|
|
'url': video_url,
|
|
|
|
|
'format_id': '%s-%s' % (vcodec, format_id),
|
|
|
|
|
'vcodec': vcodec,
|
|
|
|
|
'height': int_or_none(height),
|
|
|
|
|
'filesize': filesize,
|
|
|
|
|
})
|
2014-03-02 13:59:34 +01:00
|
|
|
|
self._sort_formats(formats)
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
'id': video_id,
|
2014-09-03 14:59:36 +02:00
|
|
|
|
'display_id': display_id,
|
2014-03-02 13:59:34 +01:00
|
|
|
|
'title': title,
|
|
|
|
|
'description': description,
|
|
|
|
|
'thumbnail': thumbnail,
|
2014-09-03 14:59:36 +02:00
|
|
|
|
'duration': duration,
|
|
|
|
|
'age_limit': age_limit,
|
2014-03-02 13:59:34 +01:00
|
|
|
|
'formats': formats,
|
2014-11-23 20:41:03 +01:00
|
|
|
|
}
|