mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 02:32:44 +01:00
[vevo] Add friendly error output (#2874)
This commit is contained in:
parent
342f630dbf
commit
e97e53eeed
@ -134,7 +134,13 @@ def _real_extract(self, url):
|
||||
video_id = mobj.group('id')
|
||||
|
||||
json_url = 'http://videoplayer.vevo.com/VideoService/AuthenticateVideo?isrc=%s' % video_id
|
||||
video_info = self._download_json(json_url, video_id)['video']
|
||||
response = self._download_json(json_url, video_id)
|
||||
video_info = response['video']
|
||||
|
||||
if not video_info:
|
||||
if 'statusMessage' in response:
|
||||
raise ExtractorError('%s said: %s' % (self.IE_NAME, response['statusMessage']), expected=True)
|
||||
raise ExtractorError('Unable to extract videos')
|
||||
|
||||
formats = self._formats_from_json(video_info)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user