5.1 version

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

5.1 version

Post 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].

User avatar
Dutchman
Posts: 851
Joined: Mon May 06, 2013 9:21 am
My devices: iMac, iPad Air, iPhone
Location: Netherlands
Flag: Netherlands

Re: 5.1 version

Post by Dutchman »

Will there be a speech synthesizer? Great idea :o

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 5.1 version

Post by Mr. Kibernetik »

Dutchman wrote:Will there be a speech synthesizer? Great idea :o
Yes, speech synth will be implemented in version 5.1.

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 5.1 version

Post by Mr. Kibernetik »

New command will be added:

SAY TEXT t$
says text [t$] with voice. Requires iOS 7 and newer.

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 5.1 version

Post 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.

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 5.1 version

Post 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.

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 5.1 version

Post 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.

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 5.1 version

Post 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.

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 5.1 version

Post 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

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 5.1 version

Post by Mr. Kibernetik »

New function will be added:

SAYING ()
returns 1 if speech is currently pronounced by SAY TEXT command, otherwise returns 0.

Post Reply