commit: 87f5646937f52643a32f80210adf2647e3bd5d25
parent cc69a3de1b0980d34e21719fd4c264575d620bb4
Author: Sergey M․ <dstftw@gmail.com>
Date: Fri, 9 Jun 2017 00:24:23 +0700
[gfycat] Ensure filesize is int
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/gfycat.py b/youtube_dl/extractor/gfycat.py
@@ -82,7 +82,7 @@ class GfycatIE(InfoExtractor):
video_url = gfy.get('%sUrl' % format_id)
if not video_url:
continue
- filesize = gfy.get('%sSize' % format_id)
+ filesize = int_or_none(gfy.get('%sSize' % format_id))
formats.append({
'url': video_url,
'format_id': format_id,