text-to-speech

Text to Speech on iOS

最后都变了- 提交于 2019-12-02 21:27:48
I'd like to add text to speech on the iOS, but noticed that NSSpeechSynthesizer seems to be missing from Cocoa-Touch. Are there any third party, commercial or FOSS, libraries that you would recommend? Will Apple reject an app that contains a third party library? I've heard that OpenEars is good, but I don't really know too much about it. As for Apple accepting an app with third-party libraries, it all depends on whether or not the third-party library uses private frameworks or not. I'm sure that information is available on the OpenEars website. Onato How to programmatically use iOS voice

How to install VOCE for C++?

时光总嘲笑我的痴心妄想 提交于 2019-12-02 20:31:40
问题 I am trying to install the VOCE api, which is a voice recognition API built for both C++ and Java. This is the second time I am working with external C++ libs, and first time working with Java + C++ api. Voce link - http://voce.sourceforge.net/ In this API there is really no .lib files, but only .jar files! I read the whole "read me" file but no good clue at how to set this up for C++. I am using QT, the latest version which works with Visual Studio 2010 compiler. How can I set this up?

SAPI Symbol Usage for Speech Dictionary Input

风格不统一 提交于 2019-12-02 18:58:14
问题 I've been doing some work to add words and pronunciations to the Windows speech dictionary via the SpLexicon Interface of SAPI 5.4 (which I think is the only way to do it) via the AddPronunciation function, or in my case: // Initialize SpLexicon instance SpLexicon lex = new SpLexicon(); // Specify the word to add to the speech dictionary string myWord = "father"; // Set the language ID (US English) int langid = new System.Globalization.CultureInfo("en-US").LCID; // Specify the word's part of

I need help creating a lexicon for SpeechSynthesizer. A template of some kind so i can know how to create one

烈酒焚心 提交于 2019-12-02 18:20:54
问题 More or less what the title says. I wish to create a lexicon of greek text to speech so I can make my language for SpeechSynthesizer. Where can I find a template of some kind?? Or some guidelines???? Or anything you can possibly offer is acceptable as there is no greek suppport in SpeechSynthesizer. But i need it to be my own creation. Not some third party app. SDKs, header files, libraries, apis all accepted. Just no ready apps that have greek text to speech 回答1: Here is a sample with only 1

Is it possible to embed TTS in Android?

◇◆丶佛笑我妖孽 提交于 2019-12-02 18:11:32
问题 Unhapilly my language doesn't have support for TTS in stock Android. So, my users have to download a third party TTS voice engine. This is QUITE annoying since it requires extra steps to get my software working. Is there ANY way to EMBED any third party TTS engine (with its corresponding language pack) in an Android app? Any help is appreciatted! 回答1: No ,It is not possible. You have to download third party TTS from android market then install it Or you can keep third party TTS .apk into

SpeechSynthesis API onend callback not working

こ雲淡風輕ζ 提交于 2019-12-02 16:16:57
I'm using the Speech Synthesis API on Google Chrome v34.0.1847.131. The API is implemented in Chrome starting in v33. The text-to-speech works for the most part, except when assigning a callback to onend . For instance, the following code: var message = window.SpeechSynthesisUtterance("Hello world!"); message.onend = function(event) { console.log('Finished in ' + event.elapsedTime + ' seconds.'); }; window.speechSynthesis.speak(message); will sometimes call onend and sometimes not call it. The timing appears to be completely off. When it does get called, the printed elapsedTime is always some

How can I add my own voice in Text to Speech?

坚强是说给别人听的谎言 提交于 2019-12-02 14:58:18
问题 I am creating an application which will read text in the user's voice. I am using pyttsx for text to speech conversion. I want to know if there is any way by which the voice of the speech can be changed to the user's voice. 来源: https://stackoverflow.com/questions/56627622/how-can-i-add-my-own-voice-in-text-to-speech

luis bot not speaking

旧街凉风 提交于 2019-12-02 14:44:53
问题 I'm using the LUIS bot in NodeJS and I am using session.say() to get the bot the speak but there is not audio output. I am trying to say a list of movies from a list like this session.say('hi', list.shift()) I know it works because 'hi' prints in the chat but no audio, I even put it in SSML format session.say('hi','<speak version="1.0" xmlns="http://www.w3.org/2001/10/synthesis" xml:lang="en-US">hey</speak>'); Any ideas why my bot isn't saying anything, but still printing stuff in the chat?

High-Quality Text-To-Speech engine for personal use [closed]

做~自己de王妃 提交于 2019-12-02 13:53:56
I'm looking for a high-quality TTS engine that I can afford (let's say less than 1000$). So far, I've tried flite and festival with default voices. However, while the results are certainly understandable, technical texts are hard to follow. Commercial TTS solutions from Loquendo and Readspeaker sound way better . However, these companies don't seem to be willing to sell their product to mere mortals - I can't find a price on either's homepage. So, what are good TTS solutions for personal use? Purchase it from NextUp.com site: NextUp.com sells the best , most natural-sounding Text to Speech

TTS - CHECK_VOICE_DATA_FAIL - Check engine availlable

前提是你 提交于 2019-12-02 12:28:55
问题 Im having a odd Problem with the TTS engine and I cant figure out why / where is my mistake. Is searched for hours for a solution but without any mentionable result. When I am using this API Demo code everything is working well and I can hear for all installed languages the voice. But when I am checking by this method I am getting CHECK_VOICE_DATA_FAIL as a return code for custom TTS engines (which I need for all necessay languages, Standard google is not enough). What am I missing here? How