mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[shared] Fix for python 3.2
This commit is contained in:
parent
43150d7ac3
commit
0459432d96
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ def _real_extract(self, url):
|
|||
|
||||
data_content = self._download_webpage(
|
||||
'http://tu.tv/flvurl.php?codVideo=%s' % internal_id, video_id, 'Downloading video info')
|
||||
video_url = base64.b64decode(compat_parse_qs(data_content)['kpt'][0]).decode('utf-8')
|
||||
video_url = base64.b64decode(compat_parse_qs(data_content)['kpt'][0].encode('utf-8')).decode('utf-8')
|
||||
|
||||
return {
|
||||
'id': internal_id,
|
||||
|
|
Loading…
Reference in a new issue