This commit is contained in:
jameswood 2017-03-08 15:21:52 +11:00
parent df0865ac44
commit b11c16e369
1 changed files with 11 additions and 0 deletions

11
Taranis-Voicebot.sh Executable file
View File

@ -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!"