mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[letv] LetvCloud: check error messages from server
This commit is contained in:
parent
e0690782b8
commit
26de1bba83
@ -287,6 +287,14 @@ def _real_extract(self, url):
|
|||||||
'uu=' + uu + '&vu=' + vu)
|
'uu=' + uu + '&vu=' + vu)
|
||||||
play_json = self._download_json(play_json_req, media_id, 'Downloading playJson data')
|
play_json = self._download_json(play_json_req, media_id, 'Downloading playJson data')
|
||||||
|
|
||||||
|
if not play_json.get('data'):
|
||||||
|
if play_json.get('message'):
|
||||||
|
raise ExtractorError('Letv cloud said: %s' % play_json['message'], expected=True)
|
||||||
|
elif play_json.get('code'):
|
||||||
|
raise ExtractorError('Letv cloud returned error %d' % play_json['code'], expected=True)
|
||||||
|
else:
|
||||||
|
raise ExtractorError('Letv cloud returned an unknwon error')
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
for media in play_json['data']['video_info']['media'].values():
|
for media in play_json['data']['video_info']['media'].values():
|
||||||
play_url = media['play_url']
|
play_url = media['play_url']
|
||||||
|
Loading…
Reference in New Issue
Block a user