5.1 version
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
5.1 version
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].
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].
- Dutchman
- Posts: 851
- Joined: Mon May 06, 2013 9:21 am
- My devices: iMac, iPad Air, iPhone
- Location: Netherlands
- Flag:
Re: 5.1 version
Will there be a speech synthesizer? Great idea
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: 5.1 version
Yes, speech synth will be implemented in version 5.1.Dutchman wrote:Will there be a speech synthesizer? Great idea
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: 5.1 version
New command will be added:
SAY TEXT t$
says text [t$] with voice. Requires iOS 7 and newer.
SAY TEXT t$
says text [t$] with voice. Requires iOS 7 and newer.
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: 5.1 version
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.
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.
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: 5.1 version
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.
SAY VOLUME x
sets volume for command SAY TEXT to the value [x]. Valid values are from 0 to 1. By default 1.
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: 5.1 version
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.
SAY PITCH x
sets voice pitch for command SAY TEXT to the value [x]. Valid values are from 0 to 2. By default 1.
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: 5.1 version
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.
SAY RATE x
sets speech rate for command SAY TEXT to the value [x]. Valid values are from 0 to 2. By default 1.
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: 5.1 version
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
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: 5.1 version
New function will be added:
SAYING ()
returns 1 if speech is currently pronounced by SAY TEXT command, otherwise returns 0.
SAYING ()
returns 1 if speech is currently pronounced by SAY TEXT command, otherwise returns 0.