diff options
author | Simon Sawicki <contact@grub4k.xyz> | 2025-03-22 00:41:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-21 23:41:56 +0000 |
commit | f36e4b6e65cb8403791aae2f520697115cb88dec (patch) | |
tree | c161d5f0a52648e0abca699a02cb9d6897deff45 /yt_dlp/extractor/medaltv.py | |
parent | 983095485c731240aae27c950cb8c24a50827b56 (diff) |
[cleanup] Misc (#12526)
Authored by: Grub4K, seproDev, gamer191, dirkf
Co-authored-by: sepro <sepro@sepr0.com>
Diffstat (limited to 'yt_dlp/extractor/medaltv.py')
-rw-r--r-- | yt_dlp/extractor/medaltv.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/yt_dlp/extractor/medaltv.py b/yt_dlp/extractor/medaltv.py index d64dbfe63..94c51ed0e 100644 --- a/yt_dlp/extractor/medaltv.py +++ b/yt_dlp/extractor/medaltv.py @@ -102,11 +102,10 @@ class MedalTVIE(InfoExtractor): item_id = item_id or '%dp' % height if item_id not in item_url: return - width = int(round(aspect_ratio * height)) container.append({ 'url': item_url, id_key: item_id, - 'width': width, + 'width': round(aspect_ratio * height), 'height': height, }) |