summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-03-18 20:28:00 +0600
committerSergey M․ <dstftw@gmail.com>2015-03-18 20:28:00 +0600
commit2c2c06e359dc3843a86585a9a4b6419f03af510e (patch)
treec8547bac1d80cf6f87c07f04eaf87a722fd76807
parented9a25dd612fb06d9cf007a6491ac9982535a8f9 (diff)
downloadyoutube-dl-2c2c06e359dc3843a86585a9a4b6419f03af510e.tar.gz
youtube-dl-2c2c06e359dc3843a86585a9a4b6419f03af510e.tar.xz
youtube-dl-2c2c06e359dc3843a86585a9a4b6419f03af510e.zip
[krasview] Fix extraction (Closes #5228)
-rw-r--r--youtube_dl/extractor/krasview.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/youtube_dl/extractor/krasview.py b/youtube_dl/extractor/krasview.py
index e46954b47..96f95979a 100644
--- a/youtube_dl/extractor/krasview.py
+++ b/youtube_dl/extractor/krasview.py
@@ -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,