From df0865ac4447d6faf0fcc82f907689a01cbe4f62 Mon Sep 17 00:00:00 2001 From: jameswood Date: Wed, 8 Mar 2017 15:21:26 +1100 Subject: [PATCH] rename --- README.md | 6 +++--- Taranis-TTV.sh | 11 ----------- 2 files changed, 3 insertions(+), 14 deletions(-) delete mode 100755 Taranis-TTV.sh diff --git a/README.md b/README.md index d88157b..49a924b 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ A Mac shell script to generate voice files for the Taranis series of RC radio control systems. #Instructions -1. Download Taranis-TTV.sh and EN-Taranis-Daniel.csv -1. Make Taranis-TTV.sh executable with `chmod +x Taranis-TTV.sh` +1. Download Taranis-Voicebot.sh and EN-Taranis-Daniel.csv +1. Make Taranis-Voicebot.sh executable with `chmod +x Taranis-Voicebot.sh` 1. Customise EN-Taranis-Daniel.csv with the phrases you'd like to use. It's best to add yours at the bottom - use the same filenames as the defaults and they will overwrite the originals. -1. Run `./Taranis-TTV.sh EN-Taranis-Daniel.csv` to generate the output folders and all all the sound files. +1. Run `./Taranis-Voicebot.sh EN-Taranis-Daniel.csv` to generate the output folders and all all the sound files. 1. Copy the SOUNDS folder to your Taranis. 1. [This is a great tutorial on setting up Taranis sounds](https://oscarliang.com/taranis-play-sound-track-mp3-files/). diff --git a/Taranis-TTV.sh b/Taranis-TTV.sh deleted file mode 100755 index a8c0a0e..0000000 --- a/Taranis-TTV.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/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