2017-07-29 08:10:19 +00:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2020-12-30 12:43:56 +00:00
|
|
|
import json
|
|
|
|
|
2017-07-29 08:10:19 +00:00
|
|
|
from .common import InfoExtractor
|
2020-12-30 12:43:56 +00:00
|
|
|
from ..compat import compat_HTTPError
|
2017-07-29 08:10:19 +00:00
|
|
|
from ..utils import (
|
|
|
|
determine_ext,
|
2020-12-30 12:43:56 +00:00
|
|
|
ExtractorError,
|
2017-07-29 08:10:19 +00:00
|
|
|
float_or_none,
|
|
|
|
int_or_none,
|
2020-12-30 12:43:56 +00:00
|
|
|
mimetype2ext,
|
|
|
|
parse_iso8601,
|
|
|
|
urljoin,
|
2017-07-29 08:10:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class YandexDiskIE(InfoExtractor):
|
2020-12-30 12:43:56 +00:00
|
|
|
_VALID_URL = r'''(?x)https?://
|
|
|
|
(?:
|
|
|
|
(?:www\.)?yadi\.sk|
|
|
|
|
disk\.yandex\.
|
|
|
|
(?:
|
|
|
|
az|
|
|
|
|
by|
|
|
|
|
co(?:m(?:\.(?:am|ge|tr))?|\.il)|
|
|
|
|
ee|
|
|
|
|
fr|
|
|
|
|
k[gz]|
|
|
|
|
l[tv]|
|
|
|
|
md|
|
|
|
|
t[jm]|
|
|
|
|
u[az]|
|
|
|
|
ru
|
|
|
|
)
|
|
|
|
)/(?:[di]/|public.*?\bhash=)(?P<id>[^/?#&]+)'''
|
2017-07-29 08:10:19 +00:00
|
|
|
|
2017-08-04 17:59:07 +00:00
|
|
|
_TESTS = [{
|
2017-07-29 08:10:19 +00:00
|
|
|
'url': 'https://yadi.sk/i/VdOeDou8eZs6Y',
|
|
|
|
'md5': '33955d7ae052f15853dc41f35f17581c',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'VdOeDou8eZs6Y',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': '4.mp4',
|
|
|
|
'duration': 168.6,
|
|
|
|
'uploader': 'y.botova',
|
|
|
|
'uploader_id': '300043621',
|
2020-12-30 12:43:56 +00:00
|
|
|
'timestamp': 1421396809,
|
|
|
|
'upload_date': '20150116',
|
2017-07-29 08:10:19 +00:00
|
|
|
'view_count': int,
|
|
|
|
},
|
2017-08-04 17:59:07 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://yadi.sk/d/h3WAXvDS3Li3Ce',
|
|
|
|
'only_matching': True,
|
2020-12-30 12:43:56 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://yadi.sk/public?hash=5DZ296JK9GWCLp02f6jrObjnctjRxMs8L6%2B%2FuhNqk38%3D',
|
|
|
|
'only_matching': True,
|
2017-08-04 17:59:07 +00:00
|
|
|
}]
|
2017-07-29 08:10:19 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
video_id = self._match_id(url)
|
|
|
|
|
2020-12-30 12:43:56 +00:00
|
|
|
try:
|
|
|
|
resource = self._download_json(
|
|
|
|
'https://cloud-api.yandex.net/v1/disk/public/resources',
|
|
|
|
video_id, query={'public_key': url})
|
|
|
|
except ExtractorError as e:
|
|
|
|
if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403:
|
|
|
|
error_description = self._parse_json(
|
|
|
|
e.cause.read().decode(), video_id)['description']
|
|
|
|
raise ExtractorError(error_description, expected=True)
|
|
|
|
raise
|
|
|
|
|
|
|
|
title = resource['name']
|
|
|
|
public_url = resource.get('public_url')
|
|
|
|
if public_url:
|
|
|
|
video_id = self._match_id(public_url)
|
|
|
|
|
|
|
|
self._set_cookie('yadi.sk', 'yandexuid', '0')
|
|
|
|
|
|
|
|
def call_api(action):
|
|
|
|
return (self._download_json(
|
|
|
|
urljoin(url, '/public/api/') + action, video_id, data=json.dumps({
|
|
|
|
'hash': url,
|
|
|
|
# obtain sk if needed from call_api('check-auth') while
|
|
|
|
# the yandexuid cookie is set and sending an empty JSON object
|
|
|
|
'sk': 'ya6b52f8c6b12abe91a66d22d3a31084b'
|
|
|
|
}).encode(), headers={
|
|
|
|
'Content-Type': 'text/plain',
|
|
|
|
}, fatal=False) or {}).get('data') or {}
|
2017-07-29 08:10:19 +00:00
|
|
|
|
|
|
|
formats = []
|
2020-12-30 12:43:56 +00:00
|
|
|
source_url = resource.get('file')
|
|
|
|
if not source_url:
|
|
|
|
source_url = call_api('download-url').get('url')
|
2017-07-29 08:10:19 +00:00
|
|
|
if source_url:
|
|
|
|
formats.append({
|
|
|
|
'url': source_url,
|
|
|
|
'format_id': 'source',
|
2020-12-30 12:43:56 +00:00
|
|
|
'ext': determine_ext(title, mimetype2ext(resource.get('mime_type')) or 'mp4'),
|
2017-07-29 08:10:19 +00:00
|
|
|
'quality': 1,
|
2020-12-30 12:43:56 +00:00
|
|
|
'filesize': int_or_none(resource.get('size'))
|
2017-07-29 08:10:19 +00:00
|
|
|
})
|
2020-12-30 12:43:56 +00:00
|
|
|
|
|
|
|
video_streams = call_api('get-video-streams')
|
|
|
|
for video in (video_streams.get('videos') or []):
|
2017-07-29 08:10:19 +00:00
|
|
|
format_url = video.get('url')
|
|
|
|
if not format_url:
|
|
|
|
continue
|
2020-12-30 12:43:56 +00:00
|
|
|
if video.get('dimension') == 'adaptive':
|
2017-07-29 08:10:19 +00:00
|
|
|
formats.extend(self._extract_m3u8_formats(
|
2020-12-30 12:43:56 +00:00
|
|
|
format_url, video_id, 'mp4', 'm3u8_native',
|
2017-07-29 08:10:19 +00:00
|
|
|
m3u8_id='hls', fatal=False))
|
|
|
|
else:
|
2020-12-30 12:43:56 +00:00
|
|
|
size = video.get('size') or {}
|
|
|
|
height = int_or_none(size.get('height'))
|
|
|
|
format_id = 'hls'
|
|
|
|
if height:
|
|
|
|
format_id += '-%dp' % height
|
2017-07-29 08:10:19 +00:00
|
|
|
formats.append({
|
2020-12-30 12:43:56 +00:00
|
|
|
'ext': 'mp4',
|
|
|
|
'format_id': format_id,
|
|
|
|
'height': height,
|
|
|
|
'protocol': 'm3u8_native',
|
2017-07-29 08:10:19 +00:00
|
|
|
'url': format_url,
|
2020-12-30 12:43:56 +00:00
|
|
|
'width': int_or_none(size.get('width')),
|
2017-07-29 08:10:19 +00:00
|
|
|
})
|
|
|
|
self._sort_formats(formats)
|
|
|
|
|
2020-12-30 12:43:56 +00:00
|
|
|
owner = resource.get('owner') or {}
|
2017-07-29 08:10:19 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
2020-12-30 12:43:56 +00:00
|
|
|
'duration': float_or_none(video_streams.get('duration'), 1000),
|
|
|
|
'uploader': owner.get('display_name'),
|
|
|
|
'uploader_id': owner.get('uid'),
|
|
|
|
'view_count': int_or_none(resource.get('views_count')),
|
|
|
|
'timestamp': parse_iso8601(resource.get('created')),
|
2017-07-29 08:10:19 +00:00
|
|
|
'formats': formats,
|
|
|
|
}
|