text-to-speech

Text to Speech on iOS

浪尽此生 提交于 2019-12-04 08:25:11
问题 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? 回答1: 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

Text to speech in Vista

冷暖自知 提交于 2019-12-04 07:46:12
I did it by creating OLE object with Delphi in 2000/NT/XP as following: Voice := CreateOLEObject('SAPI.SpVoice'); Voice.speak(...) But this does not work in Vista, how can I make my program simply speak some text in Vista? François I just tried (D2009 on Vista Home Premium) with the following code and it works! unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ComObj; type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var

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

二次信任 提交于 2019-12-04 07:23:12
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . 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.

Android TTS (Text-To-Speech) doesn't pronounce single letter correctly

ぐ巨炮叔叔 提交于 2019-12-04 07:04:14
I am trying to implement text to speech technology of Android in my Activity. It is a simple word game and I want the TTS engine to spell a single letter when the user presses some button. For example when the user presses the A button I want to hear "A". The problem is the the .speak method only takes a String as input. So, when I tell the TTS engine that I just want a single letter string, the sound is not the pronunciationof the letter. Is there any way that I can make it pronounce correctly the single letter strings? The solution so far, was to use as string input, words that sound like

Android TTS Male Female Voice Change

China☆狼群 提交于 2019-12-04 06:22:21
I am working with TTS. But i need to change the voice of the tts from female to male and vice versa. I know i can do it by eSpeak. But problem is that. In the setting page when i select the eSpeak TTS the voice changes to male and when i choose the Pico TTS the voice turns to female. But when after changing the engine in the setting page when i try to change the voice and try to use that changed voice in my app it only speaks in male voice. I download the third party app from http://eyes-free.googlecode.com/svn/trunk/tts/ Then in my app's MainActivity i do the below, editText = (EditText)

Synchronization Problem for SAPI or (text to speech ) … C#

空扰寡人 提交于 2019-12-04 06:10:25
问题 I'm working on a project which will speak the content of browsed web page.Browser is made by me using WebControl. I'm using SAPI for speech engine. I wanted to highlight the line in web page while reading that trough SpVoice.speak. But the problem is that if I use this speak method in Asynchronous way,then only last line of the web page getting highlighted,because the loop doesn't wait for the voice to complete. Thus it happens so fast that only last line is shown as highlighted.Highlight

How to use gTTS in python?

本秂侑毒 提交于 2019-12-04 06:02:14
问题 When executing the below code from gtts import gTTS tts = gTTS('hello') tts.save('hello.mp3') I am getting "AttributeError: 'NoneType' object has no attribute 'group'". Traceback (most recent call last): File "C:\Users\HP\Desktop\Desktop\programming\Python_code\New Text Document - Copy (8) - Copy.py", line 3, in <module> tts.save('hello.mp3') File "C:\Users\HP\AppData\Local\Programs\Python\Python36\lib\site-packages\gtts\tts.py", line 247, in save self.write_to_fp(f) File "C:\Users\HP\AppData

add my TTS Engine to Android TTS Serivce like SAPI

删除回忆录丶 提交于 2019-12-04 05:17:59
I have developed my own TTS apps in Android. Is there any way to deploy my TTS engine into the OS instead on running the TTS apps, so that other apps can call my TTS? Something like SAPI in MS Window. SVOX can package the engine as apk and after installed, it adds new engines into the Andorid OS, not sure how can I do that same. For your text-to-speech engine to show up in the list of available services, you'll need to add the appropriate activities and manifest entries. For API 14 and above, you need to extend TextToSpeechService and you need to add the following to your manifest: <service

How to control speech output on Bixby

杀马特。学长 韩版系。学妹 提交于 2019-12-04 05:03:14
问题 I'm using Bixby Developer studio and I have my UI output created and it works. How do I create or control speech output? 回答1: Bixby will automatically read the text in the UI - if that is sufficient, you are set. (Be careful here - In good VUX design, UI text and speech text are typically different. UI text is often longer, speech text often shorter and more expressive). To have speech different from the UI text, you should set the speech key of a template in a dialog. You can use all of the

AVSpeechUtterance maximum volume really quiet and rate really fast

落花浮王杯 提交于 2019-12-04 04:32:11
I was toying with adding speech cues to my app and was testing out AVSpeechUtterance in iOS 7, but the default speech rate is REALLY fast. The minimum speech rate is much more understandable. But the maximum volume value of 1 is soooo quiet! I tested it on my iPhone 4 with the volume turned all the way up. Something must be wrong or else how would this be usuable at all. AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer alloc]init]; NSString *mystring = [NSString stringWithFormat:@"Talk String Here %@",myObject.name]; AVSpeechUtterance *utterance = [AVSpeechUtterance