From 2fe6f6aece4345809382d89a1c231f0267dd0877 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Wed, 21 Aug 2024 19:31:26 +0200 Subject: [PATCH] correctly copy all the streams --- src/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.ts b/src/main.ts index 90e4d75..7f44fe1 100644 --- a/src/main.ts +++ b/src/main.ts @@ -124,6 +124,7 @@ app.whenReady().then(() => { // Do a copy await execute(`"${ffmpegPath}" -y \ -i "${file}" \ + -map 0 \ -codec copy \ ${extraArgs} \ "${outFile}"`).catch((e) => registerError(win, e));