From b055c882fb92dc202cf45fbe01f6116a20febe95 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Wed, 13 Nov 2024 18:50:38 -0700 Subject: [PATCH] Add ffmpeg --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 0ab13dc..8a49ba0 100644 --- a/index.js +++ b/index.js @@ -52,7 +52,7 @@ kuma.status(process.env.STATUSPAGE).then((status) => { } runCommand(process.env.TTS, statusString).then((output) => { - console.log(output) + runCommand(`ffmpeg -y -i /tmp/kuma-status.wav -ar 8000 -ac 1 -c:a pcm_s16le /tmp/kuma-status-final.wav`) }).catch(err => { console.log(err) })