[yandexvideo] fix extraction(closes #25000)
This commit is contained in:
parent
9dd674e1d2
commit
f7e95fb2a0
|
@ -13,26 +13,30 @@ class YandexVideoIE(InfoExtractor):
|
||||||
_VALID_URL = r'''(?x)
|
_VALID_URL = r'''(?x)
|
||||||
https?://
|
https?://
|
||||||
(?:
|
(?:
|
||||||
yandex\.ru(?:/portal/(?:video|efir))?/?\?.*?stream_id=|
|
yandex\.ru(?:/(?:portal/(?:video|efir)|efir))?/?\?.*?stream_id=|
|
||||||
frontend\.vh\.yandex\.ru/player/
|
frontend\.vh\.yandex\.ru/player/
|
||||||
)
|
)
|
||||||
(?P<id>[\da-f]+)
|
(?P<id>(?:[\da-f]{32}|[\w-]{12}))
|
||||||
'''
|
'''
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'https://yandex.ru/portal/video?stream_id=4dbb262b4fe5cf15a215de4f34eee34d',
|
'url': 'https://yandex.ru/portal/video?stream_id=4dbb36ec4e0526d58f9f2dc8f0ecf374',
|
||||||
'md5': '33955d7ae052f15853dc41f35f17581c',
|
'md5': 'e02a05bfaf0d9615ef07ae3a10f4faf4',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '4dbb262b4fe5cf15a215de4f34eee34d',
|
'id': '4dbb36ec4e0526d58f9f2dc8f0ecf374',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'В Нью-Йорке баржи и теплоход оторвались от причала и расплылись по Гудзону',
|
'title': 'Русский Вудсток - главный рок-фест в истории СССР / вДудь',
|
||||||
'description': '',
|
'description': 'md5:7d6b8d4bc4a3b9a56499916c1ea5b5fa',
|
||||||
'thumbnail': r're:^https?://.*\.jpg$',
|
'thumbnail': r're:^https?://',
|
||||||
'timestamp': 0,
|
'timestamp': 1549972939,
|
||||||
'duration': 30,
|
'duration': 5575,
|
||||||
'age_limit': 18,
|
'age_limit': 18,
|
||||||
|
'upload_date': '20190212',
|
||||||
|
'view_count': int,
|
||||||
|
'like_count': int,
|
||||||
|
'dislike_count': int,
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://yandex.ru/portal/efir?stream_id=4dbb36ec4e0526d58f9f2dc8f0ecf374&from=morda',
|
'url': 'https://yandex.ru/portal/efir?stream_id=4dbb262b4fe5cf15a215de4f34eee34d&from=morda',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://yandex.ru/?stream_id=4dbb262b4fe5cf15a215de4f34eee34d',
|
'url': 'https://yandex.ru/?stream_id=4dbb262b4fe5cf15a215de4f34eee34d',
|
||||||
|
@ -52,53 +56,85 @@ class YandexVideoIE(InfoExtractor):
|
||||||
# DASH with DRM
|
# DASH with DRM
|
||||||
'url': 'https://yandex.ru/portal/video?from=morda&stream_id=485a92d94518d73a9d0ff778e13505f8',
|
'url': 'https://yandex.ru/portal/video?from=morda&stream_id=485a92d94518d73a9d0ff778e13505f8',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'https://yandex.ru/efir?stream_active=watching&stream_id=v7a2dZ-v5mSI&from_block=efir_newtab',
|
||||||
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
|
|
||||||
content = self._download_json(
|
content = self._download_json(
|
||||||
'https://frontend.vh.yandex.ru/v22/player/%s.json' % video_id,
|
# 'https://frontend.vh.yandex.ru/v23/player/%s.json' % video_id,
|
||||||
video_id, query={
|
# video_id, query={
|
||||||
'stream_options': 'hires',
|
# 'stream_options': 'hires',
|
||||||
'disable_trackings': 1,
|
# 'disable_trackings': 1,
|
||||||
})['content']
|
# })['content']
|
||||||
|
'https://frontend.vh.yandex.ru/graphql', video_id, data=b'''{
|
||||||
|
player(content_id: "%s") {
|
||||||
|
computed_title
|
||||||
|
content_url
|
||||||
|
description
|
||||||
|
dislikes
|
||||||
|
duration
|
||||||
|
likes
|
||||||
|
program_title
|
||||||
|
release_date
|
||||||
|
release_date_ut
|
||||||
|
release_year
|
||||||
|
restriction_age
|
||||||
|
season
|
||||||
|
start_time
|
||||||
|
streams
|
||||||
|
thumbnail
|
||||||
|
title
|
||||||
|
views_count
|
||||||
|
}
|
||||||
|
}''' % video_id.encode())['player']['content']['content']
|
||||||
|
|
||||||
content_url = url_or_none(content.get('content_url')) or url_or_none(
|
title = content.get('title') or content['computed_title']
|
||||||
content['streams'][0]['url'])
|
|
||||||
title = content.get('title') or content.get('computed_title')
|
|
||||||
|
|
||||||
|
formats = []
|
||||||
|
streams = content.get('streams') or []
|
||||||
|
streams.append({'url': content.get('content_url')})
|
||||||
|
for stream in streams:
|
||||||
|
content_url = url_or_none(stream.get('url'))
|
||||||
|
if not content_url:
|
||||||
|
continue
|
||||||
ext = determine_ext(content_url)
|
ext = determine_ext(content_url)
|
||||||
|
if ext == 'ismc':
|
||||||
if ext == 'm3u8':
|
continue
|
||||||
formats = self._extract_m3u8_formats(
|
elif ext == 'm3u8':
|
||||||
content_url, video_id, 'mp4', entry_protocol='m3u8_native',
|
formats.extend(self._extract_m3u8_formats(
|
||||||
m3u8_id='hls')
|
content_url, video_id, 'mp4',
|
||||||
|
'm3u8_native', m3u8_id='hls', fatal=False))
|
||||||
elif ext == 'mpd':
|
elif ext == 'mpd':
|
||||||
formats = self._extract_mpd_formats(
|
formats.extend(self._extract_mpd_formats(
|
||||||
content_url, video_id, mpd_id='dash')
|
content_url, video_id, mpd_id='dash', fatal=False))
|
||||||
else:
|
else:
|
||||||
formats = [{'url': content_url}]
|
formats.append({'url': content_url})
|
||||||
|
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
description = content.get('description')
|
|
||||||
thumbnail = content.get('thumbnail')
|
|
||||||
timestamp = (int_or_none(content.get('release_date'))
|
timestamp = (int_or_none(content.get('release_date'))
|
||||||
or int_or_none(content.get('release_date_ut'))
|
or int_or_none(content.get('release_date_ut'))
|
||||||
or int_or_none(content.get('start_time')))
|
or int_or_none(content.get('start_time')))
|
||||||
duration = int_or_none(content.get('duration'))
|
season = content.get('season') or {}
|
||||||
series = content.get('program_title')
|
|
||||||
age_limit = int_or_none(content.get('restriction_age'))
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': title,
|
'title': title,
|
||||||
'description': description,
|
'description': content.get('description'),
|
||||||
'thumbnail': thumbnail,
|
'thumbnail': content.get('thumbnail'),
|
||||||
'timestamp': timestamp,
|
'timestamp': timestamp,
|
||||||
'duration': duration,
|
'duration': int_or_none(content.get('duration')),
|
||||||
'series': series,
|
'series': content.get('program_title'),
|
||||||
'age_limit': age_limit,
|
'age_limit': int_or_none(content.get('restriction_age')),
|
||||||
|
'view_count': int_or_none(content.get('views_count')),
|
||||||
|
'like_count': int_or_none(content.get('likes')),
|
||||||
|
'dislike_count': int_or_none(content.get('dislikes')),
|
||||||
|
'season_number': int_or_none(season.get('season_number')),
|
||||||
|
'season_id': season.get('id'),
|
||||||
|
'release_year': int_or_none(content.get('release_year')),
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue