From cb9b6dadbd1c3e268e87cd8eac9097760b3526ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Mon, 2 Aug 2021 18:27:27 -0500 Subject: fix check max_resolution in TOR mode --- youtube/watch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube/watch.py b/youtube/watch.py index 38d08f7..80aa3b7 100644 --- a/youtube/watch.py +++ b/youtube/watch.py @@ -33,7 +33,7 @@ def get_video_sources(info, tor_bypass=False): for fmt in info['formats']: if not all(fmt[attr] for attr in ('quality', 'width', 'ext', 'url')): continue - if fmt['acodec'] and fmt['vcodec'] and fmt['height'] <= max_resolution: + if fmt['acodec'] and fmt['vcodec'] and fmt['width'] <= max_resolution: video_sources.append({ 'src': fmt['url'], 'type': 'video/' + fmt['ext'], -- cgit v1.2.3