mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 09:00:43 +01:00
Clarify a couple of calls
This commit is contained in:
parent
ba552f542f
commit
2f2ffea9ca
@ -641,7 +641,7 @@ def read_byte(reader=None):
|
|||||||
return res
|
return res
|
||||||
|
|
||||||
# minor_version + major_version
|
# minor_version + major_version
|
||||||
_ = read_bytes(4)
|
_ = read_bytes(2 + 2)
|
||||||
|
|
||||||
# Constant pool
|
# Constant pool
|
||||||
int_count = u30()
|
int_count = u30()
|
||||||
@ -994,9 +994,10 @@ def _decrypt_signature(self, s, video_id, player_url, age_gate=False):
|
|||||||
|
|
||||||
self._downloader.report_warning(
|
self._downloader.report_warning(
|
||||||
u'Warning: Falling back to static signature algorithm')
|
u'Warning: Falling back to static signature algorithm')
|
||||||
return self._static_decrypt_signature(s)
|
return self._static_decrypt_signature(
|
||||||
|
s, video_id, player_url, age_gate)
|
||||||
|
|
||||||
def _static_decrypt_signature(self, s):
|
def _static_decrypt_signature(self, s, video_id, player_url, age_gate):
|
||||||
if age_gate:
|
if age_gate:
|
||||||
# The videos with age protection use another player, so the
|
# The videos with age protection use another player, so the
|
||||||
# algorithms can be different.
|
# algorithms can be different.
|
||||||
|
Loading…
Reference in New Issue
Block a user