1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-04 23:21:17 +02:00

[youtube] Use the existing w and h variables

This commit is contained in:
Lukáš Lalinský 2015-11-28 08:16:46 +01:00
parent 313dfc45f5
commit 41f24c321d

View File

@ -1515,7 +1515,7 @@ def _map_to_format_list(urlmap):
w = float(stretched_m.group('w'))
h = float(stretched_m.group('h'))
if w > 0 and h > 0:
ratio = float(stretched_m.group('w')) / float(stretched_m.group('h'))
ratio = w / h
for f in formats:
if f.get('vcodec') != 'none':
f['stretched_ratio'] = ratio