[dailymotion] Convert width and height fields from strings to integers
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Tue, 4 Mar 2014 21:24:38 +0000 (22:24 +0100)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Tue, 4 Mar 2014 21:24:38 +0000 (22:24 +0100)
youtube_dl/extractor/dailymotion.py

index 6685c94a3d6b283e0b7f2240ebfcf35ce462edc2..10b97d8cac732c0902aa67cb738122fbf80c3d83 100644 (file)
@@ -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({