From c196cfc53e61b5f06996878df7a9d7124c5e87ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Farka=C5=A1?= Date: Sat, 30 Aug 2025 19:23:53 +0200 Subject: [PATCH] lowered tef audio boost --- server/stream/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/stream/index.js b/server/stream/index.js index 40a878a..d8bc45f 100644 --- a/server/stream/index.js +++ b/server/stream/index.js @@ -154,7 +154,7 @@ checkFFmpeg().then((ffmpegPath) => { // Apply audio boost if enabled if (serverConfig.audio.audioBoost) { - ffmpegArgs.splice(ffmpegArgs.indexOf('pipe:1'), 0, '-af', 'volume=3.5'); + ffmpegArgs.splice(ffmpegArgs.indexOf('pipe:1'), 0, '-af', 'volume=2.5'); } logDebug(`${consoleLogTitle} Launching FFmpeg with args: ${ffmpegArgs.join(' ')}`); @@ -234,7 +234,7 @@ checkFFmpeg().then((ffmpegPath) => { // Apply audio boost if enabled and FFmpeg is used if (serverConfig.audio.audioBoost && serverConfig.audio.ffmpeg) { - commandDef.args.splice(commandDef.recArgs.indexOf('pipe:1'), 0, '-af', 'volume=3.5'); + commandDef.args.splice(commandDef.recArgs.indexOf('pipe:1'), 0, '-af', 'volume=2.5'); } function startRec() { @@ -314,7 +314,7 @@ checkFFmpeg().then((ffmpegPath) => { // Apply audio boost if enabled and FFmpeg is used if (serverConfig.audio.audioBoost && serverConfig.audio.ffmpeg) { - commandDef.args.splice(commandDef.args.indexOf('pipe:1'), 0, '-af', 'volume=3.5'); + commandDef.args.splice(commandDef.args.indexOf('pipe:1'), 0, '-af', 'volume=2.5'); } function startArecord() {