mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:43:20 +00:00
More Youku Python 3 fixing
This commit is contained in:
parent
e2a8ff24a9
commit
8f6f40d991
|
@ -3349,7 +3349,8 @@ def _real_extract(self, url):
|
|||
|
||||
self.report_extraction(video_id)
|
||||
try:
|
||||
config = json.loads(jsondata)
|
||||
jsonstr = jsondata.decode('utf-8')
|
||||
config = json.loads(jsonstr)
|
||||
|
||||
video_title = config['data'][0]['title']
|
||||
seed = config['data'][0]['seed']
|
||||
|
@ -3373,7 +3374,7 @@ def _real_extract(self, url):
|
|||
|
||||
fileid = config['data'][0]['streamfileids'][format]
|
||||
keys = [s['k'] for s in config['data'][0]['segs'][format]]
|
||||
except (ValueError, KeyError):
|
||||
except (UnicodeDecodeError, ValueError, KeyError):
|
||||
self._downloader.trouble(u'ERROR: unable to extract info section')
|
||||
return
|
||||
|
||||
|
|
Loading…
Reference in a new issue