Questions tagged [text-to-speech]

Text-to-speech or speech synthesis is the artificial production of human speech.

Speech synthesis is the artificial production of human speech. A computer system used for this purpose is called a speech synthesizer, and can be implemented in software or hardware. A text-to-speech (TTS) system converts normal language text into speech.

3705 questions
1
vote
0 answers

Java code for Text to speech in female voice

I want java code for text to speech in both male and female voice and after that I want to save that audio to wav file. I tried using this code but its only giving male voice. Please suggest me a way to get female voice without downloading a jar…
Shifali
  • 39
  • 1
  • 9
1
vote
0 answers

Google Speech-to-Text API: missing or poor confidence for speech recognition

I am using the Google API for speech recognition. I am using 2.5 sec audio samples. Below, you can see an example of output where the confidence is omitted: {u'alternative': [{u'transcript': u'if Carol comes tomorrow have a'}, {u'transcript': u'if…
Phys
  • 508
  • 3
  • 11
  • 22
1
vote
1 answer

UtteranceProgressListener does not return error message

I have a piece of code to synthesize speech. There is currently an error and I want to find out which. I have attached an UtteranceProgressListener to my TextToSpeech object. When textToSpeech.speak is called the function onError(String utteranceId)…
El_Loco
  • 1,716
  • 4
  • 20
  • 35
1
vote
0 answers

How to use Text-to-speech Festival java API?

I am trying to convert text to speech in java. I used FreeTTS but it doesnot provide recording feature or changing male voice to female voice using just maven. I came across festival.exe. It is giving me all the features I require. But the issue is…
Savreen
  • 49
  • 11
1
vote
0 answers

Why Text to speech(TTS) object becomes null even after being initialized?

I'm having trouble with ttsvariable . It becomes null, even if the Text to speech object has been initialized. Inside ShowLabel() function, I want to use tts for texts of firstObject variable. ShowLabel() function receives a List<> of…
1
vote
2 answers

speak text as Type

Javafx:How can text-to speech is done on animated text; I have applied a typewriter effect on text to make animated text, and now i want that it will speak word by word as typed. P.S. for Text-to-Speech iam using the "FreeTTS is a speech synthesis…
Itian
  • 123
  • 8
1
vote
0 answers

ResponsiveVoice.js sometimes speak on Indonesian Female voice when i use Indonesian male voice

Hello i successfully implementing 'Indonesian Male' Text-To-Speech using ResponsiveVoice.js but sometimes it's returning 'Female Voice', why that happen ? here is my code var paramSpeak = { onstart: onStartSpeak, onend: onEndSpeak, …
1
vote
1 answer

Is asynchronous text-to-speech voicing with SAPI 5.4 possible?

I have a form and I want to allow the user to receive asynchronous (possibly overlapping) text-to-speech output based on the context of a text box whenever a button is pressed. I'm trying to do this via SAPI 5.4 (Interop.SpeechLib.dll). I recognize…
Exergist
  • 157
  • 12
1
vote
0 answers

Is there any way to convert audio to text (speech recognition) in python without using any API(Google, google cloud, IBM,...etc)

I have to create a python project to convert audio to text using python , but i don't want to use any available API(Google,IBM..etc). Is there any functions or methods available in python to do that.
1
vote
3 answers

Azure Text to Speech API - Limited to 10 Minutes of Audio?

Is there a limit to the amount of text which can be submitted to the TTS (neural) Speech Service endpoints? All of the requests I'm making from an Azure Function are successful but have a cutoff at 10 minutes exactly.
1
vote
0 answers

How to close the .mp3 file in Text to Speech as show in the details?

In the above code I am able to convert the text 'Hello world' in the speech but how to close the .mp3 that is created. os.remove will not work until that .mp3 file is closed. Please suggest. I am trying text to speech functionality import os from…
Imran Khan
  • 49
  • 1
  • 1
  • 4
1
vote
0 answers

How can I support Arabic Language in Text to speech ? Android app

I need to use text to speech in Arabic language also speech to text in Arabic.
1
vote
0 answers

How to Start Speech-recognizer when text to speech is running?

I'm trying to set text-to-speech and speech-recognizer in my app,now i'm try when tts is running (not finish or stop) if speech-recognizer get voice/speech from user tts will stop and speech-recognizer will start, how can i solve this. …
1
vote
0 answers

Multiple dex files define Lcom/google/protobuf/AbstractMessageLite$Builder$LimitedInputStream;

I downloaded this sample speech-to-text project: https://github.com/GoogleCloudPlatform/android-docs-samples/tree/master/speech The project is working fine. However, I want to add the text-to-speech functionality. Whenever I try to compile…
1
vote
1 answer

Are any language bindings available for NSSpeechSynthesizer Cocoa class?

I know that i can use PyObjC to access Cocoa objects in Python. Can i do this with C++? What other languages can i use?
1 2 3
99
100