summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-03-04 22:24:38 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-03-04 22:24:38 +0100
commit553f6e46338a601bdf64437ef4aeb1edf6ac67a6 (patch)
tree64291a4daeb2efb502b72008c92d41702039e70a
parent652bee05f0f365c7a6637e6f5ae74a7b310126e9 (diff)
downloadyoutube-dl-553f6e46338a601bdf64437ef4aeb1edf6ac67a6.tar.gz
youtube-dl-553f6e46338a601bdf64437ef4aeb1edf6ac67a6.tar.xz
youtube-dl-553f6e46338a601bdf64437ef4aeb1edf6ac67a6.zip
[dailymotion] Convert width and height fields from strings to integers
-rw-r--r--youtube_dl/extractor/dailymotion.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/dailymotion.py b/youtube_dl/extractor/dailymotion.py
index 6685c94a3..10b97d8ca 100644
--- a/youtube_dl/extractor/dailymotion.py
+++ b/youtube_dl/extractor/dailymotion.py
@@ -12,6 +12,7 @@ from ..utils import (
     get_element_by_id,
     orderedSet,
     str_to_int,
+    int_or_none,
 
     ExtractorError,
 )
@@ -124,7 +125,7 @@ class DailymotionIE(DailymotionBaseInfoExtractor, SubtitlesInfoExtractor):
             if video_url is not None:
                 m_size = re.search(r'H264-(\d+)x(\d+)', video_url)
                 if m_size is not None:
-                    width, height = m_size.group(1), m_size.group(2)
+                    width, height = map(int_or_none, (m_size.group(1), m_size.group(2)))
                 else:
                     width, height = None, None
                 formats.append({