mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:35:04 +00:00
[tutv] Fix URL type (for Python 3)
This commit is contained in:
parent
8ba5e990a5
commit
6ffe72835a
1 changed files with 2 additions and 2 deletions
|
@ -29,8 +29,8 @@ def _real_extract(self, url):
|
||||||
data_url = u'http://tu.tv/flvurl.php?codVideo=' + str(internal_id)
|
data_url = u'http://tu.tv/flvurl.php?codVideo=' + str(internal_id)
|
||||||
data_content = self._download_webpage(data_url, video_id, note=u'Downloading video info')
|
data_content = self._download_webpage(data_url, video_id, note=u'Downloading video info')
|
||||||
data = compat_parse_qs(data_content)
|
data = compat_parse_qs(data_content)
|
||||||
video_url = base64.b64decode(data['kpt'][0])
|
video_url = base64.b64decode(data['kpt'][0]).decode('utf-8')
|
||||||
ext = video_url.partition('?')[0].rpartition('.')[2]
|
ext = video_url.partition(u'?')[0].rpartition(u'.')[2]
|
||||||
|
|
||||||
info = {
|
info = {
|
||||||
'id': internal_id,
|
'id': internal_id,
|
||||||
|
|
Loading…
Reference in a new issue