initial commit

This commit is contained in:
2021-01-30 10:25:23 +00:00
parent 62b3012972
commit 05d6bc6eab
6 changed files with 84 additions and 0 deletions

18
simulate.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
. ./sumsel.conf
COUNTER=0
#SIM_EXAMPLE_FILE=./res/test.wav
#SIM_PREFIX=sums
#REC_DIR=./recordings
echo "Press [CTRL+C] to stop.."
while :
do
sleep 1
COUNTER=$[$COUNTER +1]
dst_fn="${REC_DIR}/${SIM_PREFIX}_${COUNTER}.wav"
cp ${SIM_EXAMPLE_FILE} ${dst_fn}
done