From 9b7fac5147d4ea8519c78b469a511eb9cdbfa73e Mon Sep 17 00:00:00 2001 From: Zane van Iperen Date: Sat, 20 May 2023 00:49:29 +1000 Subject: [PATCH] Update default transcoding commands (#2325) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes the default transcoding commands to only use the first audio stream, instead of the first arbitrary stream. Co-authored-by: Deluan Quintão --- consts/consts.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/consts/consts.go b/consts/consts.go index f2e19317e..af8d74d3a 100644 --- a/consts/consts.go +++ b/consts/consts.go @@ -94,19 +94,19 @@ var ( "name": "mp3 audio", "targetFormat": "mp3", "defaultBitRate": 192, - "command": "ffmpeg -i %s -map 0:0 -b:a %bk -v 0 -f mp3 -", + "command": "ffmpeg -i %s -map 0:a:0 -b:a %bk -v 0 -f mp3 -", }, { "name": "opus audio", "targetFormat": "opus", "defaultBitRate": 128, - "command": "ffmpeg -i %s -map 0:0 -b:a %bk -v 0 -c:a libopus -f opus -", + "command": "ffmpeg -i %s -map 0:a:0 -b:a %bk -v 0 -c:a libopus -f opus -", }, { "name": "aac audio", "targetFormat": "aac", "defaultBitRate": 256, - "command": "ffmpeg -i %s -map 0:0 -b:a %bk -v 0 -c:a aac -f adts -", + "command": "ffmpeg -i %s -map 0:a:0 -b:a %bk -v 0 -c:a aac -f adts -", }, }