Page 1 of 5
5.1 version
Posted: Tue Dec 01, 2015 6:28 pm
by Mr. Kibernetik
New command will be added:
LIST VOICES TO a$,n
saves list of voices for SAY command to string array [a$] and size of returned array to numeric variable [n].
Re: 5.1 version
Posted: Wed Dec 02, 2015 9:30 am
by Dutchman
Will there be a speech synthesizer? Great idea

Re: 5.1 version
Posted: Wed Dec 02, 2015 9:31 am
by Mr. Kibernetik
Dutchman wrote:Will there be a speech synthesizer? Great idea

Yes, speech synth will be implemented in version 5.1.
Re: 5.1 version
Posted: Wed Dec 02, 2015 10:31 am
by Mr. Kibernetik
New command will be added:
SAY TEXT t$
says text [t$] with voice. Requires iOS 7 and newer.
Re: 5.1 version
Posted: Wed Dec 02, 2015 11:17 am
by Mr. Kibernetik
New command will be added:
SAY VOICE v$
sets voice for SAY TEXT command. List of available voices you can get with LIST VOICES command. Empty string "" sets native voice.
Re: 5.1 version
Posted: Wed Dec 02, 2015 2:14 pm
by Mr. Kibernetik
New command will be added:
SAY VOLUME x
sets volume for command SAY TEXT to the value [x]. Valid values are from 0 to 1. By default 1.
Re: 5.1 version
Posted: Wed Dec 02, 2015 2:19 pm
by Mr. Kibernetik
New command will be added:
SAY PITCH x
sets voice pitch for command SAY TEXT to the value [x]. Valid values are from 0 to 2. By default 1.
Re: 5.1 version
Posted: Wed Dec 02, 2015 2:24 pm
by Mr. Kibernetik
New command will be added:
SAY RATE x
sets speech rate for command SAY TEXT to the value [x]. Valid values are from 0 to 2. By default 1.
Re: 5.1 version
Posted: Wed Dec 02, 2015 2:57 pm
by Mr. Kibernetik
New sample program "Interactive Interface/speech.txt" will be added.
Code: Select all
FOR i=1 TO 4
SAY TEXT i
NEXT i
PAUSE 4
Re: 5.1 version
Posted: Wed Dec 02, 2015 5:24 pm
by Mr. Kibernetik
New function will be added:
SAYING ()
returns 1 if speech is currently pronounced by SAY TEXT command, otherwise returns 0.