Re: Text to speech

2022-09-03 Thread Mark Wieder via use-livecode
On 9/3/22 16:31, J. Landman Gay via use-livecode wrote: Oh sure, that's what you will have said last time too. :P Bob... you gonna have some 'splainin to do... -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode mailing list

Re: Text to speech

2022-09-03 Thread J. Landman Gay via use-livecode
Oh sure, that's what you will have said last time too. :P On 9/3/22 4:47 PM, Bob Sneidar via use-livecode wrote: I swear I didn’t give him the time warp stack 3 years from now. Sent from my iPhone On Sep 3, 2022, at 13:30, J. Landman Gay via use-livecode wrote: I just watched the video

Re: Text to speech

2022-09-03 Thread Bob Sneidar via use-livecode
I swear I didn’t give him the time warp stack 3 years from now. Sent from my iPhone > On Sep 3, 2022, at 13:30, J. Landman Gay via use-livecode > wrote: > > I just watched the video and this is exactly what I was looking for. I didn't > know until a couple of days ago that I would need to

Re: Text to speech

2022-09-03 Thread Peter Bogdanoff via use-livecode
rote: >> Hi, where might the August Problem Solving session be found? >> >> Peter Bogdanoff >> ArtsInteractive >> >>> On Sep 2, 2022, at 1:24 AM, panagiotis m via use-livecode >>> wrote: >>> >>> Hello all, >>> >&g

Re: Text to speech

2022-09-03 Thread Mark Smith via use-livecode
ode > wrote: > > On Sep 2, 2022, at 1:24 AM, panagiotis wrote: >> Yes, we discussed this topic in August's Problem Solving session. The stack >> presented supports text-to-speech in all platforms (including Linux and >> Web). > > I just watched the video and this

Re: Text to speech

2022-09-03 Thread J. Landman Gay via use-livecode
On Sep 2, 2022, at 1:24 AM, panagiotis wrote: Yes, we discussed this topic in August's Problem Solving session. The stack presented supports text-to-speech in all platforms (including Linux and Web). I just watched the video and this is exactly what I was looking for. I didn't know until

Re: Text to speech

2022-09-03 Thread Paul Dupuis via use-livecode
, Yes, we discussed this topic in August's Problem Solving session. The stack presented supports text-to-speech in all platforms (including Linux and Web). Kind regards, Panos -- On Fri, 2 Sept 2022 at 00:36, Paul Dupuis via use-livecode < use-livecode@lists.runrev.com> wrote: I think

Re: Text to speech

2022-09-03 Thread Peter Bogdanoff via use-livecode
Hi, where might the August Problem Solving session be found? Peter Bogdanoff ArtsInteractive > On Sep 2, 2022, at 1:24 AM, panagiotis m via use-livecode > wrote: > > Hello all, > > Yes, we discussed this topic in August's Problem Solving session. The stack > presented su

Re: Text to speech

2022-09-02 Thread J. Landman Gay via use-livecode
Problem Solving session. The stack presented supports text-to-speech in all platforms (including Linux and Web). Kind regards, Panos -- On Fri, 2 Sept 2022 at 00:36, Paul Dupuis via use-livecode < use-livecode@lists.runrev.com> wrote: I think it was the July Problem solving session, but it coul

Re: Text to speech

2022-09-02 Thread panagiotis m via use-livecode
Hello all, Yes, we discussed this topic in August's Problem Solving session. The stack presented supports text-to-speech in all platforms (including Linux and Web). Kind regards, Panos -- On Fri, 2 Sept 2022 at 00:36, Paul Dupuis via use-livecode < use-livecode@lists.runrev.com> wrote

Re: Text to speech

2022-09-01 Thread Paul Dupuis via use-livecode
/commands do you use for text to speech? I see that revSpeak works on Windows and Mac, and the speech library ("speech*") works on android, iOS, and Mac. What do you use if you want to support all four platforms? Do you just branch to revSpeak for Windows? I think Panos just shows how to buil

Re: Text to speech

2022-09-01 Thread J. Landman Gay via use-livecode
PM Paul Dupuis via use-livecode wrote: On 9/1/2022 4:33 PM, J. Landman Gay via use-livecode wrote: What library/commands do you use for text to speech? I see that revSpeak works on Windows and Mac, and the speech library ("speech*") works on android, iOS, and Mac. What do you use i

Re: Text to speech

2022-09-01 Thread Paul Dupuis via use-livecode
On 9/1/2022 4:33 PM, J. Landman Gay via use-livecode wrote: What library/commands do you use for text to speech? I see that revSpeak works on Windows and Mac, and the speech library ("speech*") works on android, iOS, and Mac. What do you use if you want to support all four platfor

Text to speech

2022-09-01 Thread J. Landman Gay via use-livecode
What library/commands do you use for text to speech? I see that revSpeak works on Windows and Mac, and the speech library ("speech*") works on android, iOS, and Mac. What do you use if you want to support all four platforms? Do you just branch to revSpeak for Windows? -- Jacqueline L

Text to Speech libraries

2021-03-15 Thread J. Landman Gay via use-livecode
I see there are two libraries for text-to-speech, the older revSpeech library that works with Mac and Windows, and a newer speech library that works on Mac, Android, and iOS. For those who are using speech in their apps, do you branch your code for Windows, or do you use the rev library

Re: text to speech android

2020-07-22 Thread matthias rebbe via use-livecode
Monte, i noticed here on my German Mac OS, that i definitely need to use the names that are used in the identifiers. e.g. com.apple.speech.synthesis.voice.joana. Using the value of the ["name"] element does not work, as the names are all uppercase, while the names in the identifiers are

Re: text to speech android

2020-07-19 Thread JeeJeeStudio via use-livecode
At least on Mac you know what voice you get. I wonder how other devs handle this on Android when selecting a voice, because you never know exactly what you choose. Op ma 20 jul. 2020 06:07 schreef Monte Goulding via use-livecode < use-livecode@lists.runrev.com>: > Hi Scott > > The identifiers

Re: text to speech android

2020-07-19 Thread Monte Goulding via use-livecode
Hi Scott The identifiers and names all come from the macOS NSSpeechSynthesizer API and yes Victoria does appear to be the only voice with an uppercase character in the identifier `com.apple.speech.synthesis.voice.Victoria`, Cheers Monte > On 20 Jul 2020, at 12:57 pm, scott--- via

Re: text to speech android

2020-07-19 Thread scott--- via use-livecode
Ack! with the exception of “Victoria” which seems to require an Uppercase first letter. (utter chaos) > On Jul 19, 2020, at 7:44 PM, scott--- via use-livecode > wrote: > > I notice that although speechGetVoices() provides names that begin with an > uppercase letter > speechSetVoice()

Re: text to speech android

2020-07-19 Thread scott--- via use-livecode
I notice that although speechGetVoices() provides names that begin with an uppercase letter speechSetVoice() appears to require the name be lowercase for it to work reliably. LC 9.6.0 Mac Mojave — Scott Morrow > On Jul 19, 2020, at 9:00 AM, matthias rebbe via use-livecode > wrote: > >

Re: text to speech android

2020-07-19 Thread Klaus major-k via use-livecode
Hi Matthias, thank you very much! > Am 19.07.2020 um 18:00 schrieb matthias rebbe via use-livecode > : > > Hi Klaus, > > just did a quick successful test on Mac OS 10.14.6 with this script > > on mouseup > speechInitializeLibrary ## Ah, was not sure if this is a handler or function. ## The

Re: text to speech android

2020-07-19 Thread matthias rebbe via use-livecode
Hi Klaus, just did a quick successful test on Mac OS 10.14.6 with this script on mouseup speechInitializeLibrary end mouseup on speechLibraryInitialized pSuccess if pSuccess then speechSpeakUtterance "Hallo Klaus" get speechfinalizeLibrary() end if end

Re: text to speech android

2020-07-19 Thread Klaus major-k via use-livecode
Hi Klaus, > Am 18.07.2020 um 12:30 schrieb Klaus major-k via use-livecode > : > > Hi all, > > in 9.6 we have a new speech library for Mac, iOs and Android. > In the dictionary "revspeak" is still listed as Mac and Windows only. > > Am I correct to presume that the syntax-> revspeak "what to

text to speech android

2020-07-18 Thread Klaus major-k via use-livecode
Hi all, in 9.6 we have a new speech library for Mac, iOs and Android. In the dictionary "revspeak" is still listed as Mac and Windows only. Am I correct to presume that the syntax-> revspeak "what to speak" is still the same for this new speech library on Android? Thanks in advance! Best

Android Text-To-Speech?

2018-12-18 Thread Peter Reid via use-livecode
Has anyone got a way of doing text-to-speech for Android? We have revSpeak for desktop/laptop but not for Android deployment. Any solutions please? Peter -- Peter Reid Loughborough, UK ___ use-livecode mailing list use-livecode@lists.runrev.com

Android text-to-Speech?

2018-08-31 Thread Peter Reid via use-livecode
Does anyone have a way of converting text to speech for Android, i.e. the equivalent to revSpeak for Android (& iOS)? I came across a suggestion that involved Google's translation service but this doesn't seem to work now and I'd prefer it if I didn't have to use a Google service. revS

Re: Text to Speech

2018-04-07 Thread Richmond Mathewson via use-livecode
- a Scottish voice, and Moira from Ireland. There are a ton of them out there now. Some are still better than others, but a few are quite convincing! Have fun! Rick On Apr 7, 2018, at 4:03 AM, Richmond Mathewson via use-livecode <use-livecode@lists.runrev.com> wrote: as far as I can work out

Re: Text to Speech

2018-04-07 Thread Rick Harrison via use-livecode
ond Mathewson via use-livecode > <use-livecode@lists.runrev.com> wrote: > > as far as I can work out, > text-to-speech on Macintosh doesn't seem to have improved much since my kids > and I were > fooling around with it in Jeddah, KS

Re: Text to Speech

2018-04-07 Thread Richmond Mathewson via use-livecode
Looking up revSpeak in the 8.1.9 Dictionary I found several things of interest: NOT for Linux. Works just fine (albeit a bit slowly) on my Polycarbonate iMac running Mac OS 10.7.5 on mouseUp revSpeak fld "ff" end mouseUp HOWEVER: this seems to presuppose text-to-speech IS

Re: Text to Speech

2018-04-06 Thread Brian Milby via use-livecode
rked fine there as well. > > > > On Fri, Apr 6, 2018 at 4:45 PM, William Prothero via use-livecode < > > use-livecode@lists.runrev.com> wrote: > > > >> > >> Folks: > >> I’m wondering if there is any text to speech capability in livecod

Re: Text to Speech

2018-04-06 Thread William Prothero via use-livecode
ine there as well. > > On Fri, Apr 6, 2018 at 4:45 PM, William Prothero via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> >> Folks: >> I’m wondering if there is any text to speech capability in livecode. There >> are references

Re: Text to Speech

2018-04-06 Thread Mike Bonner via use-livecode
, but think that last time I tried it on mac, it worked fine there as well. On Fri, Apr 6, 2018 at 4:45 PM, William Prothero via use-livecode < use-livecode@lists.runrev.com> wrote: > > Folks: > I’m wondering if there is any text to speech capability in livecode. There > are referenc

Re: Text to Speech

2018-04-06 Thread Roger Guay via use-livecode
> On Apr 6, 2018, at 3:45 PM, William Prothero via use-livecode > wrote: > > on mouseUp >revSpeak "Hello, How are you?" >end mouseUp Works here! OS 10.13.3, LC 9.0 Roge ___ use-livecode mailing list

Text to Speech

2018-04-06 Thread William Prothero via use-livecode
Folks: I’m wondering if there is any text to speech capability in livecode. There are references to it when I do a Google search, but I don’t get any sound when I do: on mouseUp revSpeak "Hello, How are you?" end mouseUp I don’t get any sound. I would want to use i

Re: Text to speech and create wav file

2015-06-26 Thread Mark Schonewille
connectons so we can do this sort of thing within LC. -- Tom Bodine -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Text-to-speech-and-create-wav-file-tp4693301p4693303.html Sent from the Revolution - User mailing list archive at Nabble.com

Re: Text to speech and create wav file

2015-06-26 Thread Bill Vlahos
.278305.n4.nabble.com/Text-to-speech-and-create-wav-file-tp4693301p4693303.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe

Text to speech and create wav file

2015-06-25 Thread Bill Vlahos
I’ve been playing around with the revSpeech commands to do text to speech. It works pretty well to get the computer to play the sound through the speakers. How can I create a .wav sound file? Thank you, Bill Vlahos _ InfoWallet (http://www.infowallet.com) is about keeping your

Re: Text to speech and create wav file

2015-06-25 Thread tbodine
.278305.n4.nabble.com/Text-to-speech-and-create-wav-file-tp4693301p4693303.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: Text to speech and create wav file

2015-06-25 Thread Mark Schonewille
.278305.n4.nabble.com/Text-to-speech-and-create-wav-file-tp4693301p4693303.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe

Re: Text to speech and create wav file

2015-06-25 Thread Bill Vlahos
) In the near future, perhaps LC builder will provide the OS connectons so we can do this sort of thing within LC. -- Tom Bodine -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Text-to-speech-and-create-wav-file-tp4693301p4693303.html Sent from

[ANN] Text to speech for iOS.

2015-06-24 Thread Thierry Douez
Dear iOS LiveCoders, I'm pleased to annouce the first release of sunnYtext2speech, a text to speech external for iOS. http://sunny-tdz.com/sunnytext2speech A trial version with a demo stack is also available. Kind regards, Thierry Thierry

Re: [ANN] Text to speech for iOS.

2015-06-24 Thread René Micout
Great ! Le 24 juin 2015 à 14:36, Thierry Douez th.do...@gmail.com a écrit : Dear iOS LiveCoders, I'm pleased to annouce the first release of sunnYtext2speech, a text to speech external for iOS. http://sunny-tdz.com/sunnytext2speech A trial version with a demo stack is also available

Re: Point at which speaking is stopped? and ANN: Text to Speech

2011-12-27 Thread Bob Sneidar
I get No such card Bob On Dec 26, 2011, at 3:41 PM, Jim Hurley wrote: Roger, It is even better for proofreading. I have put my Text to Speech up on the web. Run this in the message box. go url http://www.jamesphurley.com/TextToSpeech.rev; Jim Hurley Roger Eller wrote: I

Re: Point at which speaking is stopped? and ANN: Text to Speech

2011-12-27 Thread Roger Eller
It is a .livecode file: go url http://www.jamesphurley.com/TextToSpeech.livecode; On Tue, Dec 27, 2011 at 12:37 PM, Bob Sneidar wrote: I get No such card Bob On Dec 26, 2011, at 3:41 PM, Jim Hurley wrote: Roger, It is even better for proofreading. I have put my Text to Speech

Re: Re: Point at which speaking is stopped? and ANN: Text to Speech

2011-12-27 Thread Jim Hurley
To: How to use LiveCode use-livecode@lists.runrev.com Subject: Re: Point at which speaking is stopped? and ANN: Text to Speech Message-ID: CAAT6EXOjqBcFw+xNMOo6GwWO=+8oKJjUXNBJSiE+G=46xsf...@mail.gmail.com Content-Type: text/plain; charset=ISO-8859-1 It is a .livecode file: go

Re: Re: Point at which speaking is stopped? and ANN: Text to Speech

2011-12-27 Thread Roger Eller
On Tue, Dec 27, 2011 at 1:30 PM, Jim Hurley wrote: Roger, Very resourceful of you to discover, not just the typo, but the correction. It is indeed a livecode file so: go url http://www.jamesphurley.com/TextToSpeech.livecode; Jim Hurley I got a good laugh at your proof reading

Re: Point at which speaking is stopped? and ANN: Text to Speech

2011-12-27 Thread Bob Sneidar
Yes, I like that too. In fact, the text to speech is actually better than a lot of audio books I have heard! ;-) Bob On Dec 27, 2011, at 11:11 AM, Roger Eller wrote: On Tue, Dec 27, 2011 at 1:30 PM, Jim Hurley wrote: Roger, Very resourceful of you to discover, not just the typo

Re: Point at which speaking is stopped? and ANN: Text to Speech

2011-12-26 Thread Jim Hurley
Roger, It is even better for proofreading. I have put my Text to Speech up on the web. Run this in the message box. go url http://www.jamesphurley.com/TextToSpeech.rev; Jim Hurley Roger Eller wrote: I like it! I used your post as the text to read aloud via your script. With a little

Text-to-speech

2011-10-26 Thread paolo mazza
Dear livecoders, I have few questions about iOS app. how can I integrate  text-to-speech/Siri in an iOS application ? Can i use different languages as other apps do? Then , can I set the international keyboard from an iOS LC app? Thanks a lot All the best. Paolo Mazza

Re: Text-to-speech

2011-10-26 Thread Thomas McGrath III
: Dear livecoders, I have few questions about iOS app. how can I integrate text-to-speech/Siri in an iOS application ? Can i use different languages as other apps do? Then , can I set the international keyboard from an iOS LC app? Thanks a lot All the best. Paolo Mazza