[krasview] Fix extraction (Closes #5228)
authorSergey M․ <dstftw@gmail.com>
Wed, 18 Mar 2015 14:28:00 +0000 (20:28 +0600)
committerSergey M․ <dstftw@gmail.com>
Wed, 18 Mar 2015 14:28:00 +0000 (20:28 +0600)
youtube_dl/extractor/krasview.py

index e46954b47449b11be795c17478e168a6a57af0fd..96f95979a22429d2a19af3575ad1ca25c463b13e 100644 (file)
@@ -40,8 +40,10 @@ class KrasViewIE(InfoExtractor):
         description = self._og_search_description(webpage, default=None)
         thumbnail = flashvars.get('image') or self._og_search_thumbnail(webpage)
         duration = int_or_none(flashvars.get('duration'))
-        width = int_or_none(self._og_search_property('video:width', webpage, 'video width'))
-        height = int_or_none(self._og_search_property('video:height', webpage, 'video height'))
+        width = int_or_none(self._og_search_property(
+            'video:width', webpage, 'video width', default=None))
+        height = int_or_none(self._og_search_property(
+            'video:height', webpage, 'video height', default=None))
 
         return {
             'id': video_id,