diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e73a72a --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +play.conf +md380-emu +digestplay +*.o +*.d diff --git a/play.conf b/play.conf deleted file mode 100644 index 5a3f9b3..0000000 --- a/play.conf +++ /dev/null @@ -1,3 +0,0 @@ -CLIENT=250901 -PASSWORD=fvyYWXBo -SERVER=master-test.dstar.su diff --git a/play.sample.conf b/play.sample.conf new file mode 100644 index 0000000..0a5c9a4 --- /dev/null +++ b/play.sample.conf @@ -0,0 +1,5 @@ +CONVERTER="/usr/bin/qemu-arm ./md380-emu" +PLAYER="./digestplay" +CLIENT=2049999 +PASSWORD=fvyYWXBo +SERVER=213.222.29.197 diff --git a/play.sh b/play.sh old mode 100644 new mode 100755 index ee5807a..4dcae89 --- a/play.sh +++ b/play.sh @@ -3,11 +3,9 @@ DIRECTORY=$(dirname $0) . $DIRECTORY/play.conf -CONVERTER="/usr/bin/qemu-arm /opt/MD380Tools/md380-emu" -PLAYER="/opt/Tools/digestplay" -FILE=$(mktmp) +FILE=$(mktemp) -sox $1 -c1 -r8000 -b16 --encoding signed-integer -L $FILE.raw +sox $1 -c1 -r8000 -b16 --encoding signed-integer -L --norm=-25 $FILE.raw $CONVERTER -e -i $FILE.raw -o /dev/stdout | \ $PLAYER \ --server-address $SERVER \