[sohu] Fix numeric fields
authorSergey M․ <dstftw@gmail.com>
Thu, 8 Jun 2017 17:16:42 +0000 (00:16 +0700)
committerSergey M․ <dstftw@gmail.com>
Thu, 8 Jun 2017 17:16:42 +0000 (00:16 +0700)
youtube_dl/extractor/sohu.py

index 7da12cef8fe1c06a064ee82da3e08ed39a39991d..a62ed84f1e34b75a721914d68a101ad2a0bb8983 100644 (file)
@@ -8,7 +8,11 @@ from ..compat import (
     compat_str,
     compat_urllib_parse_urlencode,
 )
-from ..utils import ExtractorError
+from ..utils import (
+    ExtractorError,
+    int_or_none,
+    try_get,
+)
 
 
 class SohuIE(InfoExtractor):
@@ -169,10 +173,11 @@ class SohuIE(InfoExtractor):
                 formats.append({
                     'url': video_url,
                     'format_id': format_id,
-                    'filesize': data['clipsBytes'][i],
-                    'width': data['width'],
-                    'height': data['height'],
-                    'fps': data['fps'],
+                    'filesize': int_or_none(
+                        try_get(data, lambda x: x['clipsBytes'][i])),
+                    'width': int_or_none(data.get('width')),
+                    'height': int_or_none(data.get('height')),
+                    'fps': int_or_none(data.get('fps')),
                 })
             self._sort_formats(formats)