mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-17 13:52:36 +00:00
[gfycat] Catch errors
This commit is contained in:
parent
d7b4d5dd50
commit
267dc07e6b
|
@ -6,6 +6,7 @@
|
||||||
int_or_none,
|
int_or_none,
|
||||||
float_or_none,
|
float_or_none,
|
||||||
qualities,
|
qualities,
|
||||||
|
ExtractorError,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -50,7 +51,10 @@ def _real_extract(self, url):
|
||||||
|
|
||||||
gfy = self._download_json(
|
gfy = self._download_json(
|
||||||
'http://gfycat.com/cajax/get/%s' % video_id,
|
'http://gfycat.com/cajax/get/%s' % video_id,
|
||||||
video_id, 'Downloading video info')['gfyItem']
|
video_id, 'Downloading video info')
|
||||||
|
if 'error' in gfy:
|
||||||
|
raise ExtractorError('Gfycat said: ' + gfy['error'], expected=True)
|
||||||
|
gfy = gfy['gfyItem']
|
||||||
|
|
||||||
title = gfy.get('title') or gfy['gfyName']
|
title = gfy.get('title') or gfy['gfyName']
|
||||||
description = gfy.get('description')
|
description = gfy.get('description')
|
||||||
|
|
Loading…
Reference in a new issue