From b11c16e369c6e4ecb498ff53458a54c686930fe4 Mon Sep 17 00:00:00 2001 From: jameswood Date: Wed, 8 Mar 2017 15:21:52 +1100 Subject: [PATCH] rename --- Taranis-Voicebot.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 Taranis-Voicebot.sh diff --git a/Taranis-Voicebot.sh b/Taranis-Voicebot.sh new file mode 100755 index 0000000..a8c0a0e --- /dev/null +++ b/Taranis-Voicebot.sh @@ -0,0 +1,11 @@ +#!/bin/bash +echo "Creating folders..." +mkdir -p SOUNDS/en/SYSTEM +echo "Done!" +echo "Generating sounds..." +while IFS=';' read location filename words +do + say --file-format=WAVE --data-format=LEI16@32000 --channels=1 -v Daniel -o "$location/$filename" "$words" + echo "Generating $location/$filename..." +done < $1 +echo "Done!" \ No newline at end of file