Browse Source

[letv] fix height

remitamine 10 years ago
parent
commit
593ddd851b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      youtube_dl/extractor/letv.py

+ 2 - 1
youtube_dl/extractor/letv.py

@@ -15,6 +15,7 @@ from ..utils import (
     determine_ext,
     ExtractorError,
     parse_iso8601,
+    int_or_none,
 )
 
 
@@ -134,7 +135,7 @@ class LetvIE(InfoExtractor):
                 }
 
                 if format_id[-1:] == 'p':
-                    url_info_dict['height'] = format_id[:-1]
+                    url_info_dict['height'] = int_or_none(format_id[:-1])
 
                 urls.append(url_info_dict)