From 1554be25d2169f979957beb5da76d3129dc583f9 Mon Sep 17 00:00:00 2001 From: Julian Freeman Date: Tue, 30 Dec 2025 09:23:28 -0400 Subject: [PATCH] fix ig ratio --- src-tauri/src/downloader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/downloader.rs b/src-tauri/src/downloader.rs index b74c816..7b2ee7a 100644 --- a/src-tauri/src/downloader.rs +++ b/src-tauri/src/downloader.rs @@ -204,7 +204,7 @@ pub async fn download_video( let format_arg = if options.quality == "best" { "bestvideo+bestaudio/best".to_string() } else { - format!("bestvideo[height<={}]+bestaudio/best[height<={}]", options.quality, options.quality) + format!("bestvideo[height<={}]+bestaudio/best[height<={}]/best", options.quality, options.quality) }; args.push("-f".to_string()); args.push(format_arg);