浏览代码

[googledrive] Fix height extraction (closes #13603)

Sergey M․ 8 年之前
父节点
当前提交
8b347a389e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      youtube_dl/extractor/googledrive.py

+ 1 - 1
youtube_dl/extractor/googledrive.py

@@ -92,7 +92,7 @@ class GoogleDriveIE(InfoExtractor):
             if resolution:
                 f.update({
                     'width': resolution[0],
-                    'height': resolution[0],
+                    'height': resolution[1],
                 })
             formats.append(f)
         self._sort_formats(formats)