1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2026-05-30 17:25:23 +00:00
Files
youtube-dl/youtube_dl/extractor/viki.py
T

387 lines
14 KiB
Python
Raw Normal View History

# coding: utf-8
2014-03-21 00:53:18 +01:00
from __future__ import unicode_literals
2015-05-21 01:44:05 +06:00
import hashlib
import hmac
import json
import time
2013-11-24 07:30:05 +01:00
from .common import InfoExtractor
2013-11-24 07:30:05 +01:00
from ..utils import (
2013-11-24 15:28:33 +01:00
ExtractorError,
2015-05-21 01:44:05 +06:00
int_or_none,
parse_age_limit,
parse_iso8601,
try_get,
2013-11-24 07:30:05 +01:00
)
2015-05-21 01:44:05 +06:00
class VikiBaseIE(InfoExtractor):
2015-05-21 22:27:22 +06:00
_VALID_URL_BASE = r'https?://(?:www\.)?viki\.(?:com|net|mx|jp|fr)/'
2022-02-04 11:29:41 +00:00
_API_URL_TEMPLATE = 'https://api.viki.io%s'
2015-05-21 01:44:05 +06:00
2022-02-04 11:29:41 +00:00
_DEVICE_ID = '112395910d'
2017-09-16 21:15:23 +05:30
_APP = '100005a'
2022-02-04 11:29:41 +00:00
_APP_VERSION = '6.11.3'
_APP_SECRET = 'd96704b180208dbb2efa30fe44c48bd8690441af9f567ba8fd710a72badc85198f7472'
2015-05-21 01:44:05 +06:00
2017-02-19 03:53:23 +07:00
_GEO_BYPASS = False
_NETRC_MACHINE = 'viki'
2015-06-20 00:49:28 +06:00
_token = None
_ERRORS = {
'geo': 'Sorry, this content is not available in your region.',
'upcoming': 'Sorry, this content is not yet available.',
'paywall': 'Sorry, this content is only available to Viki Pass Plus subscribers',
}
2022-02-04 11:29:41 +00:00
def _stream_headers(self, timestamp, sig):
return {
'X-Viki-manufacturer': 'vivo',
'X-Viki-device-model': 'vivo 1606',
'X-Viki-device-os-ver': '6.0.1',
'X-Viki-connection-type': 'WIFI',
'X-Viki-carrier': '',
'X-Viki-as-id': '100005a-1625321982-3932',
'timestamp': str(timestamp),
'signature': str(sig),
'x-viki-app-ver': self._APP_VERSION
}
def _api_query(self, path, version=4, **kwargs):
2015-05-21 01:44:05 +06:00
path += '?' if '?' not in path else '&'
2022-02-04 11:29:41 +00:00
app = self._APP
query = '/v{version}/{path}app={app}'.format(**locals())
2015-06-20 00:49:28 +06:00
if self._token:
query += '&token=%s' % self._token
2022-02-04 11:29:41 +00:00
return query + ''.join('&{name}={val}.format(**locals())' for name, val in kwargs.items())
def _sign_query(self, path):
timestamp = int(time.time())
query = self._api_query(path, version=5)
2015-05-21 01:44:05 +06:00
sig = hmac.new(
self._APP_SECRET.encode('ascii'),
2022-02-04 11:29:41 +00:00
'{query}&t={timestamp}'.format(**locals()).encode('ascii'),
hashlib.sha1).hexdigest()
return timestamp, sig, self._API_URL_TEMPLATE % query
def _call_api(
self, path, video_id, note='Downloading JSON metadata', data=None, query=None, fatal=True):
if query is None:
timestamp, sig, url = self._sign_query(path)
else:
url = self._API_URL_TEMPLATE % self._api_query(path, version=4)
2015-05-21 01:44:05 +06:00
resp = self._download_json(
2022-02-04 11:29:41 +00:00
url, video_id, note, fatal=fatal, query=query,
data=json.dumps(data).encode('utf-8') if data else None,
headers=({'x-viki-app-ver': self._APP_VERSION} if data
else self._stream_headers(timestamp, sig) if query is None
else None), expected_status=400) or {}
2015-05-21 01:44:05 +06:00
2022-02-04 11:29:41 +00:00
self._raise_error(resp.get('error'), fatal)
2015-05-21 01:44:05 +06:00
return resp
2022-02-04 11:29:41 +00:00
def _raise_error(self, error, fatal=True):
if error is None:
return
msg = '%s said: %s' % (self.IE_NAME, error)
if fatal:
raise ExtractorError(msg, expected=True)
else:
self.report_warning(msg)
2015-05-21 01:44:05 +06:00
def _check_errors(self, data):
for reason, status in (data.get('blocking') or {}).items():
if status and reason in self._ERRORS:
2017-02-04 18:55:39 +07:00
message = self._ERRORS[reason]
if reason == 'geo':
self.raise_geo_restricted(msg=message)
elif reason == 'paywall':
2022-02-04 11:29:41 +00:00
if try_get(data, lambda x: x['paywallable']['tvod']):
self._raise_error('This video is for rent only or TVOD (Transactional Video On demand)')
self.raise_login_required(message)
2022-02-04 11:29:41 +00:00
self._raise_error(message)
def _real_initialize(self):
self._login()
def _login(self):
2018-05-26 16:12:44 +01:00
username, password = self._get_login_info()
if username is None:
return
2022-02-04 11:29:41 +00:00
self._token = self._call_api(
'sessions.json', None, 'Logging in', fatal=False,
data={'username': username, 'password': password}).get('token')
2015-06-20 00:49:28 +06:00
if not self._token:
2022-02-04 11:29:41 +00:00
self.report_warning('Login Failed: Unable to get session token')
2015-06-20 00:49:28 +06:00
2015-07-23 14:02:19 +08:00
@staticmethod
2022-02-04 11:29:41 +00:00
def dict_selection(dict_obj, preferred_key):
2015-07-23 14:02:19 +08:00
if preferred_key in dict_obj:
2022-02-04 11:29:41 +00:00
return dict_obj[preferred_key]
return (list(filter(None, dict_obj.values())) or [None])[0]
2015-07-23 14:02:19 +08:00
2015-05-21 01:44:05 +06:00
class VikiIE(VikiBaseIE):
2014-03-21 00:53:18 +01:00
IE_NAME = 'viki'
2015-05-21 22:27:22 +06:00
_VALID_URL = r'%s(?:videos|player)/(?P<id>[0-9]+v)' % VikiBaseIE._VALID_URL_BASE
_TESTS = [{
2022-02-04 11:29:41 +00:00
'note': 'Free non-DRM video with storyboards in MPD',
'url': 'https://www.viki.com/videos/1175236v-choosing-spouse-by-lottery-episode-1',
'info_dict': {
'id': '1175236v',
'ext': 'mp4',
'title': 'Choosing Spouse by Lottery - Episode 1',
'timestamp': 1606463239,
'age_limit': 12,
'uploader': 'FCC',
'upload_date': '20201127',
},
'expected_warnings': ['Unknown MIME type image/jpeg in DASH manifest'],
'params': {
'format': 'bestvideo',
},
}, {
2014-03-21 00:53:18 +01:00
'url': 'http://www.viki.com/videos/1023585v-heirs-episode-14',
'info_dict': {
'id': '1023585v',
'ext': 'mp4',
'title': 'Heirs - Episode 14',
'uploader': 'SBS Contents Hub',
'timestamp': 1385047627,
2014-03-21 00:53:18 +01:00
'upload_date': '20131121',
'age_limit': 13,
'duration': 3570,
'episode_number': 14,
},
'params': {
'format': 'bestvideo',
2013-11-24 15:28:33 +01:00
},
2022-02-04 11:29:41 +00:00
'skip': 'Content is only available to Viki Pass Plus subscribers',
'expected_warnings': ['Unknown MIME type image/jpeg in DASH manifest'],
}, {
2015-05-21 01:44:05 +06:00
# clip
'url': 'http://www.viki.com/videos/1067139v-the-avengers-age-of-ultron-press-conference',
2016-07-17 18:13:54 +07:00
'md5': '86c0b5dbd4d83a6611a79987cc7a1989',
'info_dict': {
'id': '1067139v',
'ext': 'mp4',
2015-05-21 01:44:05 +06:00
'title': "'The Avengers: Age of Ultron' Press Conference",
'description': 'md5:d70b2f9428f5488321bfe1db10d612ea',
2015-05-21 01:44:05 +06:00
'duration': 352,
'timestamp': 1430380829,
'upload_date': '20150430',
2015-05-21 01:44:05 +06:00
'uploader': 'Arirang TV',
'like_count': int,
'age_limit': 0,
},
'skip': 'Sorry. There was an error loading this video',
2015-05-02 01:19:06 +08:00
}, {
'url': 'http://www.viki.com/videos/1048879v-ankhon-dekhi',
'info_dict': {
'id': '1048879v',
'ext': 'mp4',
'title': 'Ankhon Dekhi',
2015-05-21 01:44:05 +06:00
'duration': 6512,
'timestamp': 1408532356,
'upload_date': '20140820',
'uploader': 'Spuul',
'like_count': int,
'age_limit': 13,
2015-05-02 01:19:06 +08:00
},
2022-02-04 11:29:41 +00:00
'skip': 'Page not found!',
2015-05-21 01:44:05 +06:00
}, {
# episode
'url': 'http://www.viki.com/videos/44699v-boys-over-flowers-episode-1',
2022-02-04 11:29:41 +00:00
'md5': '670440c79f7109ca6564d4c7f24e3e81',
2015-05-21 01:44:05 +06:00
'info_dict': {
'id': '44699v',
'ext': 'mp4',
'title': 'Boys Over Flowers - Episode 1',
2016-06-11 22:39:13 +08:00
'description': 'md5:b89cf50038b480b88b5b3c93589a9076',
2020-11-19 22:45:46 +01:00
'duration': 4172,
2015-05-21 01:44:05 +06:00
'timestamp': 1270496524,
'upload_date': '20100405',
'uploader': 'group8',
'like_count': int,
2022-02-04 11:29:41 +00:00
'age_limit': 15,
'episode_number': 1,
},
'params': {
'format': 'bestvideo',
2020-11-19 22:45:46 +01:00
},
'expected_warnings': ['Unknown MIME type image/jpeg in DASH manifest'],
2015-05-21 01:56:02 +06:00
}, {
# youtube external
'url': 'http://www.viki.com/videos/50562v-poor-nastya-complete-episode-1',
'md5': '63f8600c1da6f01b7640eee7eca4f1da',
2015-05-21 01:56:02 +06:00
'info_dict': {
'id': '50562v',
'ext': 'webm',
2015-05-21 01:56:02 +06:00
'title': 'Poor Nastya [COMPLETE] - Episode 1',
'description': '',
'duration': 606,
2015-05-21 01:56:02 +06:00
'timestamp': 1274949505,
'upload_date': '20101213',
'uploader': 'ad14065n',
'uploader_id': 'ad14065n',
'like_count': int,
'age_limit': 13,
2020-11-19 22:45:46 +01:00
},
'skip': 'Page not found!',
2015-05-21 01:44:05 +06:00
}, {
'url': 'http://www.viki.com/player/44699v',
'only_matching': True,
}, {
# non-English description
'url': 'http://www.viki.com/videos/158036v-love-in-magic',
2022-02-04 11:29:41 +00:00
'md5': '78bf49fdaa51f9e7f9150262a9ef9bdf',
'info_dict': {
'id': '158036v',
'ext': 'mp4',
'uploader': 'I Planet Entertainment',
'upload_date': '20111122',
'timestamp': 1321985454,
'description': 'md5:44b1e46619df3a072294645c770cef36',
2022-02-04 11:29:41 +00:00
'title': 'Love in Magic',
'age_limit': 15,
},
'params': {
'format': 'bestvideo',
},
'expected_warnings': ['Unknown MIME type image/jpeg in DASH manifest'],
}]
2013-11-24 07:30:05 +01:00
def _real_extract(self, url):
2015-01-07 07:21:24 +01:00
video_id = self._match_id(url)
2013-11-24 07:30:05 +01:00
2022-02-04 11:29:41 +00:00
video = self._call_api('videos/{0}.json'.format(video_id), video_id, 'Downloading video JSON', query={})
2015-05-21 01:44:05 +06:00
self._check_errors(video)
2022-02-04 11:29:41 +00:00
title = try_get(video, lambda x: x['titles']['en'], str)
episode_number = int_or_none(video.get('number'))
2015-05-21 01:44:05 +06:00
if not title:
title = 'Episode %d' % episode_number if video.get('type') == 'episode' else video.get('id') or video_id
container_titles = try_get(video, lambda x: x['container']['titles'], dict) or {}
2015-07-23 14:02:19 +08:00
container_title = self.dict_selection(container_titles, 'en')
2022-02-04 11:29:41 +00:00
if container_title and title == video_id:
title = container_title
else:
title = '%s - %s' % (container_title, title)
resp = self._call_api(
'playback_streams/%s.json?drms=dt3&device_id=%s' % (video_id, self._DEVICE_ID),
video_id, 'Downloading video streams JSON')['main'][0]
mpd_url = resp['url']
# 720p is hidden in another MPD which can be found in the current manifest content
mpd_content = self._download_webpage(mpd_url, video_id, note='Downloading initial MPD manifest')
mpd_url = self._search_regex(
r'(?mi)<BaseURL>(http.+.mpd)', mpd_content, 'new manifest', default=mpd_url)
if 'mpdhd_high' not in mpd_url:
# Modify the URL to get 1080p
mpd_url = mpd_url.replace('mpdhd', 'mpdhd_high')
formats = self._extract_mpd_formats(mpd_url, video_id)
self._sort_formats(formats)
2015-07-23 14:02:19 +08:00
description = self.dict_selection(video.get('descriptions', {}), 'en')
2022-02-04 11:29:41 +00:00
thumbnails = [{
'id': thumbnail_id,
'url': thumbnail['url'],
} for thumbnail_id, thumbnail in (video.get('images') or {}).items() if thumbnail.get('url')]
like_count = int_or_none(try_get(video, lambda x: x['likes']['count']))
2015-05-21 01:44:05 +06:00
2022-02-04 11:29:41 +00:00
stream_id = try_get(resp, lambda x: x['properties']['track']['stream_id'])
subtitles = dict((lang, [{
'ext': ext,
'url': self._API_URL_TEMPLATE % self._api_query(
'videos/{0}/auth_subtitles/{1}.{2}'.format(video_id, lang, ext), stream_id=stream_id)
} for ext in ('srt', 'vtt')]) for lang in (video.get('subtitle_completions') or {}).keys())
return {
2013-11-24 07:30:05 +01:00
'id': video_id,
2022-02-04 11:29:41 +00:00
'formats': formats,
2013-11-24 07:30:05 +01:00
'title': title,
'description': description,
'duration': int_or_none(video.get('duration')),
'timestamp': parse_iso8601(video.get('created_at')),
'uploader': video.get('author'),
'uploader_url': video.get('author_url'),
2015-05-21 01:44:05 +06:00
'like_count': like_count,
'age_limit': parse_age_limit(video.get('rating')),
2015-05-21 01:44:05 +06:00
'thumbnails': thumbnails,
'subtitles': subtitles,
'episode_number': episode_number,
2013-11-24 07:30:05 +01:00
}
2015-05-16 15:43:13 +08:00
2015-05-21 02:08:13 +06:00
class VikiChannelIE(VikiBaseIE):
IE_NAME = 'viki:channel'
2015-05-21 22:27:22 +06:00
_VALID_URL = r'%s(?:tv|news|movies|artists)/(?P<id>[0-9]+c)' % VikiBaseIE._VALID_URL_BASE
2015-05-16 15:43:13 +08:00
_TESTS = [{
'url': 'http://www.viki.com/tv/50c-boys-over-flowers',
'info_dict': {
'id': '50c',
'title': 'Boys Over Flowers',
2022-02-04 11:29:41 +00:00
'description': 'md5:f08b679c200e1a273c695fe9986f21d7',
2015-05-16 15:43:13 +08:00
},
2022-02-04 11:29:41 +00:00
'playlist_mincount': 51,
2015-05-17 01:38:50 +08:00
}, {
'url': 'http://www.viki.com/tv/1354c-poor-nastya-complete',
'info_dict': {
'id': '1354c',
'title': 'Poor Nastya [COMPLETE]',
'description': 'md5:05bf5471385aa8b21c18ad450e350525',
},
'playlist_count': 127,
'skip': 'Page not found',
}, {
'url': 'http://www.viki.com/news/24569c-showbiz-korea',
'only_matching': True,
}, {
'url': 'http://www.viki.com/movies/22047c-pride-and-prejudice-2005',
'only_matching': True,
}, {
'url': 'http://www.viki.com/artists/2141c-shinee',
'only_matching': True,
2015-05-16 15:43:13 +08:00
}]
2015-05-21 02:08:13 +06:00
2022-02-04 11:29:41 +00:00
_video_types = ('episodes', 'movies', 'clips', 'trailers')
def _entries(self, channel_id):
params = {
'app': self._APP, 'token': self._token, 'only_ids': 'true',
'direction': 'asc', 'sort': 'number', 'per_page': 30
}
video_types = self._video_types
for video_type in video_types:
if video_type not in self._video_types:
self.report_warning('Unknown video_type: ' + video_type)
page_num = 0
while True:
page_num += 1
params['page'] = page_num
res = self._call_api(
'containers/{channel_id}/{video_type}.json'.format(**locals()), channel_id, query=params, fatal=False,
note='Downloading %s JSON page %d' % (video_type.title(), page_num))
for video_id in res.get('response') or []:
yield self.url_result('https://www.viki.com/videos/' + video_id, VikiIE.ie_key(), video_id)
if not res.get('more'):
break
2015-05-16 15:43:13 +08:00
def _real_extract(self, url):
2015-05-20 21:28:04 +06:00
channel_id = self._match_id(url)
2015-05-16 15:43:13 +08:00
2022-02-04 11:29:41 +00:00
channel = self._call_api('containers/%s.json' % channel_id, channel_id, 'Downloading channel JSON')
2015-05-20 21:28:04 +06:00
self._check_errors(channel)
2022-02-04 11:29:41 +00:00
return self.playlist_result(
self._entries(channel_id), channel_id,
self.dict_selection(channel['titles'], 'en'),
self.dict_selection(channel['descriptions'], 'en'))