From 84fbc475fda6d98fe4672a263e536ade22efd610 Mon Sep 17 00:00:00 2001 From: FullGreaM Date: Sun, 9 Nov 2025 14:22:32 +0300 Subject: [PATCH] Fix best video --- src/download.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/download.js b/src/download.js index fdf6cd9..b60cd4a 100644 --- a/src/download.js +++ b/src/download.js @@ -108,9 +108,8 @@ class DownloadVideo { static get qualities () { const q = { webm_best: { exc: "webm", flag: "best", mime: "video/webm", type: "video" }, - //mp4_best: { exc: "mp4", flag: "best[ext=mp4]", mime: "video/mp4" }, mp4_best: { exc: "mp4", flag: [ - "bestvideo[height<=1080]+bestaudio/best", + "best[ext=mp4]", "--merge-output-format", "mp4" ], mime: "video/mp4", type: "video", strictName: "📹 Best video" }, audio_default: { exc: "mp4", flag: "worst", mime: "audio/mpeg", type: "audio", strictName: "🎧 Audio" },