mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[crunchyroll] Fix python 3.2
This commit is contained in:
parent
b2cf6543b2
commit
1a5b77dc21
1 changed files with 2 additions and 2 deletions
|
@ -76,8 +76,8 @@ def _real_initialize(self):
|
|||
self._login()
|
||||
|
||||
def _decrypt_subtitles(self, data, iv, id):
|
||||
data = bytes_to_intlist(base64.b64decode(data))
|
||||
iv = bytes_to_intlist(base64.b64decode(iv))
|
||||
data = bytes_to_intlist(base64.b64decode(data.encode('utf-8')))
|
||||
iv = bytes_to_intlist(base64.b64decode(iv.encode('utf-8')))
|
||||
id = int(id)
|
||||
|
||||
def obfuscate_key_aux(count, modulo, start):
|
||||
|
|
Loading…
Reference in a new issue