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