youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 5faf9fed7e1c7922578467cfd48db5867ef9b91b
parent 13a9b69b093532fe085e498c4fed2c56ced6cc92
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 28 Nov 2015 18:50:21 +0600

[youtube] Clarify rationale for yt:stretch validation

Diffstat:
Myoutube_dl/extractor/youtube.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py @@ -1514,6 +1514,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor): if stretched_m: w = float(stretched_m.group('w')) h = float(stretched_m.group('h')) + # yt:stretch may hold invalid ratio data (e.g. for Q39EVAstoRM ratio is 17:0). + # We will only process correct ratios. if w > 0 and h > 0: ratio = w / h for f in formats: