mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[shared] Fix for python 3.2
This commit is contained in:
parent
afe8b594be
commit
43150d7ac3
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ def _real_extract(self, url):
|
||||||
video_url = self._html_search_regex(
|
video_url = self._html_search_regex(
|
||||||
r'data-url="([^"]+)"', video_page, 'video URL')
|
r'data-url="([^"]+)"', video_page, 'video URL')
|
||||||
title = base64.b64decode(self._html_search_meta(
|
title = base64.b64decode(self._html_search_meta(
|
||||||
'full:title', webpage, 'title')).decode('utf-8')
|
'full:title', webpage, 'title').encode('utf-8')).decode('utf-8')
|
||||||
filesize = int_or_none(self._html_search_meta(
|
filesize = int_or_none(self._html_search_meta(
|
||||||
'full:size', webpage, 'file size', fatal=False))
|
'full:size', webpage, 'file size', fatal=False))
|
||||||
thumbnail = self._html_search_regex(
|
thumbnail = self._html_search_regex(
|
||||||
|
|
Loading…
Reference in a new issue