소스 검색

[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)