aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/shared.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/shared.py
parent5d7d805ca90992cac1cdffbe5d3df3d894d2b979 (diff)
downloadyoutube-dl-cf2820710d61742818a906af07f6d6c9669d58a9.tar.xz
Switch codebase to use compat_b64decode
Diffstat (limited to 'youtube_dl/extractor/shared.py')
-rw-r--r--youtube_dl/extractor/shared.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/youtube_dl/extractor/shared.py b/youtube_dl/extractor/shared.py
index 89e19e927..b2250afdd 100644
--- a/youtube_dl/extractor/shared.py
+++ b/youtube_dl/extractor/shared.py
@@ -1,8 +1,7 @@
from __future__ import unicode_literals
-import base64
-
from .common import InfoExtractor
+from ..compat import compat_b64decode
from ..utils import (
ExtractorError,
int_or_none,
@@ -22,8 +21,8 @@ class SharedBaseIE(InfoExtractor):
video_url = self._extract_video_url(webpage, video_id, url)
- title = base64.b64decode(self._html_search_meta(
- 'full:title', webpage, 'title').encode('utf-8')).decode('utf-8')
+ title = compat_b64decode(self._html_search_meta(
+ 'full:title', webpage, 'title')).decode('utf-8')
filesize = int_or_none(self._html_search_meta(
'full:size', webpage, 'file size', fatal=False))
@@ -92,5 +91,4 @@ class VivoIE(SharedBaseIE):
r'InitializeStream\s*\(\s*(["\'])(?P<url>(?:(?!\1).)+)\1',
webpage, 'stream', group='url'),
video_id,
- transform_source=lambda x: base64.b64decode(
- x.encode('ascii')).decode('utf-8'))[0]
+ transform_source=lambda x: compat_b64decode(x).decode('utf-8'))[0]