1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-29 12:41:20 +02:00

[rtve.es:alacarta] Fix for python 3.2

This commit is contained in:
Sergey M․ 2015-05-22 00:09:15 +06:00
parent 878563c847
commit afe8b594be

View File

@ -17,7 +17,7 @@
def _decrypt_url(png):
encrypted_data = base64.b64decode(png)
encrypted_data = base64.b64decode(png.encode('utf-8'))
text_index = encrypted_data.find(b'tEXt')
text_chunk = encrypted_data[text_index - 4:]
length = struct_unpack('!I', text_chunk[:4])[0]