From 3dad025bb6e93095ac3853f245a66ca85d3b56bb Mon Sep 17 00:00:00 2001 From: supositware Date: Thu, 16 Jun 2022 14:28:49 +0200 Subject: [PATCH] Show video and audio codec --- commands/download.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/download.js b/commands/download.js index 45eaeac..c005198 100644 --- a/commands/download.js +++ b/commands/download.js @@ -40,7 +40,7 @@ module.exports = { qualitys.formats.forEach(f => { options.push({ label: f.resolution, - description: f.format, + description: `${f.format} V: ${f.vcodec} A: ${f.acodec}`, value: f.format_id, }); });