Broken AI server Part 1

its 5:30 in the morning
This commit is contained in:
2026-03-19 05:34:25 +02:00
parent 5c706a13b4
commit ba50c0fc08
43 changed files with 6726 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,28 @@
#!/bin/sh
CONVERT="jibo-audio-convert -f planar -F interleaved -w"
if [ -z "$1" ]; then
LOC="/tmp"
else
LOC="$1"
fi
if [ -s $LOC/sin.raw ]; then
$CONVERT --infile $LOC/sin.raw --outfile $LOC/sin.wav -c 6 -r 16000
fi
if [ -s $LOC/sout.raw ]; then
$CONVERT --infile $LOC/sout.raw --outfile $LOC/sout.wav -c 2 -r 16000
fi
if [ -s $LOC/ref.raw ]; then
$CONVERT --infile $LOC/ref.raw --outfile $LOC/ref.wav -c 2 -r 16000
fi
if [ -s $LOC/rin.raw ]; then
$CONVERT --infile $LOC/rin.raw --outfile $LOC/rin.wav -c 1 -r 48000
fi
if [ -s $LOC/rout.raw ]; then
$CONVERT --infile $LOC/rout.raw --outfile $LOC/rout.wav -c 1 -r 48000
fi
if [ -s $LOC/hotphrase.raw ]; then
$CONVERT --infile $LOC/hotphrase.raw --outfile $LOC/hotphrase.wav -c 2 -r 16000
fi

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.