2014-03-02 12:59:34 +00:00
|
|
|
|
# encoding: utf-8
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
from ..utils import (
|
2014-09-03 12:59:36 +00:00
|
|
|
|
float_or_none,
|
|
|
|
|
str_to_int,
|
2014-03-02 12:59:34 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TvigleIE(InfoExtractor):
|
|
|
|
|
IE_NAME = 'tvigle'
|
|
|
|
|
IE_DESC = 'Интернет-телевидение Tvigle.ru'
|
2014-09-03 12:59:36 +00:00
|
|
|
|
_VALID_URL = r'http://(?:www\.)?tvigle\.ru/(?:[^/]+/)+(?P<display_id>[^/]+)/$'
|
2014-03-04 12:22:48 +00:00
|
|
|
|
|
|
|
|
|
_TESTS = [
|
|
|
|
|
{
|
2014-09-30 12:55:30 +00:00
|
|
|
|
'url': 'http://www.tvigle.ru/video/brat/',
|
|
|
|
|
'md5': 'ff4344a4894b0524441fb6f8218dc716',
|
2014-03-04 12:22:48 +00:00
|
|
|
|
'info_dict': {
|
2014-09-30 12:55:30 +00:00
|
|
|
|
'id': '5118490',
|
|
|
|
|
'display_id': 'brat',
|
2014-09-03 12:59:36 +00:00
|
|
|
|
'ext': 'mp4',
|
2014-09-30 12:55:30 +00:00
|
|
|
|
'title': 'Брат',
|
|
|
|
|
'description': 'md5:d16ac7c0b47052ea51fddb92c4e413eb',
|
|
|
|
|
'duration': 5722.6,
|
|
|
|
|
'age_limit': 16,
|
2014-03-04 12:22:48 +00:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
2014-09-03 12:59:36 +00:00
|
|
|
|
'url': 'http://www.tvigle.ru/video/vladimir-vysotskii/vedushchii-teleprogrammy-60-minut-ssha-o-vladimire-vysotskom/',
|
|
|
|
|
'md5': 'd9012d7c7c598fe7a11d7fb46dc1f574',
|
2014-03-04 12:22:48 +00:00
|
|
|
|
'info_dict': {
|
2014-09-03 12:59:36 +00:00
|
|
|
|
'id': '5142516',
|
|
|
|
|
'ext': 'mp4',
|
2014-03-04 12:22:48 +00:00
|
|
|
|
'title': 'Ведущий телепрограммы «60 минут» (США) о Владимире Высоцком',
|
|
|
|
|
'description': 'md5:027f7dc872948f14c96d19b4178428a4',
|
2014-09-03 12:59:36 +00:00
|
|
|
|
'duration': 186.080,
|
|
|
|
|
'age_limit': 0,
|
2014-03-04 12:22:48 +00:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
]
|
2014-03-02 12:59:34 +00:00
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
2014-09-03 12:59:36 +00:00
|
|
|
|
display_id = mobj.group('display_id')
|
2014-03-02 12:59:34 +00:00
|
|
|
|
|
2014-09-03 12:59:36 +00:00
|
|
|
|
webpage = self._download_webpage(url, display_id)
|
2014-03-02 12:59:34 +00:00
|
|
|
|
|
2014-09-03 12:59:36 +00:00
|
|
|
|
video_id = self._html_search_regex(
|
|
|
|
|
r'<li class="video-preview current_playing" id="(\d+)">', webpage, 'video id')
|
2014-03-02 12:59:34 +00:00
|
|
|
|
|
2014-09-03 12:59:36 +00:00
|
|
|
|
video_data = self._download_json(
|
|
|
|
|
'http://cloud.tvigle.ru/api/play/video/%s/' % video_id, display_id)
|
2014-03-02 12:59:34 +00:00
|
|
|
|
|
2014-09-03 12:59:36 +00:00
|
|
|
|
item = video_data['playlist']['items'][0]
|
|
|
|
|
|
|
|
|
|
title = item['title']
|
|
|
|
|
description = item['description']
|
|
|
|
|
thumbnail = item['thumbnail']
|
|
|
|
|
duration = float_or_none(item['durationMilliseconds'], 1000)
|
|
|
|
|
age_limit = str_to_int(item['ageRestrictions'])
|
2014-03-02 12:59:34 +00:00
|
|
|
|
|
2014-09-03 12:59:36 +00:00
|
|
|
|
formats = []
|
|
|
|
|
for vcodec, fmts in item['videos'].items():
|
|
|
|
|
for quality, video_url in fmts.items():
|
|
|
|
|
formats.append({
|
|
|
|
|
'url': video_url,
|
|
|
|
|
'format_id': '%s-%s' % (vcodec, quality),
|
|
|
|
|
'vcodec': vcodec,
|
|
|
|
|
'height': int(quality[:-1]),
|
2014-09-30 13:00:21 +00:00
|
|
|
|
'filesize': item['video_files_size'][vcodec][quality],
|
2014-09-03 12:59:36 +00:00
|
|
|
|
})
|
2014-03-02 12:59:34 +00:00
|
|
|
|
self._sort_formats(formats)
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
'id': video_id,
|
2014-09-03 12:59:36 +00:00
|
|
|
|
'display_id': display_id,
|
2014-03-02 12:59:34 +00:00
|
|
|
|
'title': title,
|
|
|
|
|
'description': description,
|
|
|
|
|
'thumbnail': thumbnail,
|
2014-09-03 12:59:36 +00:00
|
|
|
|
'duration': duration,
|
|
|
|
|
'age_limit': age_limit,
|
2014-03-02 12:59:34 +00:00
|
|
|
|
'formats': formats,
|
|
|
|
|
}
|