From d013b24e0ab003a04d356f1c0d657515d7f0952f Mon Sep 17 00:00:00 2001 From: G2-Games Date: Wed, 2 Nov 2022 17:40:39 -0500 Subject: [PATCH] Added the sending program --- sendaudio.sh | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 sendaudio.sh diff --git a/sendaudio.sh b/sendaudio.sh new file mode 100755 index 0000000..9bf9d02 --- /dev/null +++ b/sendaudio.sh @@ -0,0 +1,2 @@ +#!/bin/bash +ffmpeg -hide_banner -loglevel error -stats -i "$2" -filter:a "volume=${3:-1}" -f u8 -acodec pcm_u8 -ar 44100 -ac 1 pipe:1 > $1