


Thank youdvogonen wrote:No. OpenTX Speaker is built using the very good synthetic voice component Microsoft introduced in Vista and removed in Windows 8.
As opposed to Companion it is built using C#, which is Microsoft proprietary.
So Windows Vista or Windows7 is required to run it.
Code: Select all
say -o tada.wav [email protected] "Welcome, to Open T X"
Code: Select all
#!/bin/bash
clear
echo -n "Creating SOUNDS folder in "; pwd
mkdir SOUNDS
cd SOUNDS
echo
echo "Creating EN folder"
mkdir en
cd en
echo "Creating EN sound files"
echo
echo "smart.wav"; say -o smart.wav [email protected] "SMART Mode"
echo "agility.wav"; say -o agility.wav [email protected] "AGILITY Mode"
echo
echo "Creating SYSTEM folder"
mkdir SYSTEM
cd SYSTEM
echo "Creating SYSTEM sound files"
echo
echo "tada.wav"; say -o tada.wav [email protected] "Welcome, to Open T X"
echo
echo "HIT 'CMD+Q' to quit"
echo