From: Lukáš Lalinský Date: Sat, 28 Nov 2015 07:16:46 +0000 (+0100) Subject: [youtube] Use the existing `w` and `h` variables X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=41f24c321d04108a32f457d5d5445f2cfce705a8;p=youtube-dl [youtube] Use the existing `w` and `h` variables --- diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 726b5ba0a..9da8d4bc5 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -1515,7 +1515,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor): 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