aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/rtve.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-01-23 22:23:12 +0700
committerSergey M․ <dstftw@gmail.com>2018-01-23 22:23:12 +0700
commitcf2820710d61742818a906af07f6d6c9669d58a9 (patch)
tree49da7e89124bcbfd9d297906d8436ff1cd107820 /youtube_dl/extractor/rtve.py
parent5d7d805ca90992cac1cdffbe5d3df3d894d2b979 (diff)
downloadyoutube-dl-cf2820710d61742818a906af07f6d6c9669d58a9.tar.xz
Switch codebase to use compat_b64decode
Diffstat (limited to 'youtube_dl/extractor/rtve.py')
-rw-r--r--youtube_dl/extractor/rtve.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/rtve.py b/youtube_dl/extractor/rtve.py
index fa60ffd5e..ce9db0629 100644
--- a/youtube_dl/extractor/rtve.py
+++ b/youtube_dl/extractor/rtve.py
@@ -7,6 +7,7 @@ import time
from .common import InfoExtractor
from ..compat import (
+ compat_b64decode,
compat_struct_unpack,
)
from ..utils import (
@@ -21,7 +22,7 @@ from ..utils import (
def _decrypt_url(png):
- encrypted_data = base64.b64decode(png.encode('utf-8'))
+ encrypted_data = compat_b64decode(png)
text_index = encrypted_data.find(b'tEXt')
text_chunk = encrypted_data[text_index - 4:]
length = compat_struct_unpack('!I', text_chunk[:4])[0]