mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 18:33:17 +00:00
parent
c854208ccf
commit
2e25ce3a05
|
@ -212,7 +212,7 @@ def _perform_login(self, username, password):
|
||||||
|
|
||||||
def _get_heartbeat_info(self, info_dict):
|
def _get_heartbeat_info(self, info_dict):
|
||||||
video_id, video_src_id, audio_src_id = info_dict['url'].split(':')[1].split('/')
|
video_id, video_src_id, audio_src_id = info_dict['url'].split(':')[1].split('/')
|
||||||
dmc_protocol = info_dict['_expected_protocol']
|
dmc_protocol = info_dict['expected_protocol']
|
||||||
|
|
||||||
api_data = (
|
api_data = (
|
||||||
info_dict.get('_api_data')
|
info_dict.get('_api_data')
|
||||||
|
@ -366,7 +366,7 @@ def extract_video_quality(video_quality):
|
||||||
'width': traverse_obj(video_quality, ('metadata', 'resolution', 'width')),
|
'width': traverse_obj(video_quality, ('metadata', 'resolution', 'width')),
|
||||||
'quality': -2 if 'low' in video_quality['id'] else None,
|
'quality': -2 if 'low' in video_quality['id'] else None,
|
||||||
'protocol': 'niconico_dmc',
|
'protocol': 'niconico_dmc',
|
||||||
'_expected_protocol': dmc_protocol,
|
'expected_protocol': dmc_protocol, # XXX: This is not a documented field
|
||||||
'http_headers': {
|
'http_headers': {
|
||||||
'Origin': 'https://www.nicovideo.jp',
|
'Origin': 'https://www.nicovideo.jp',
|
||||||
'Referer': 'https://www.nicovideo.jp/watch/' + video_id,
|
'Referer': 'https://www.nicovideo.jp/watch/' + video_id,
|
||||||
|
|
Loading…
Reference in a new issue