Browse Source

[googledrive] Fix height extraction (closes #13603)

Sergey M․ 8 years ago
parent
commit
8b347a389e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/googledrive.py

+ 1 - 1
youtube_dl/extractor/googledrive.py

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