Questions tagged [android-tts]

7 questions
1
vote
1 answer

Why is Android 11 mandating INTENT_ACTION_TTS_SERVICE?

Android developers reference states that: Apps targeting Android 11 that use text-to-speech should declare TextToSpeech.Engine.INTENT_ACTION_TTS_SERVICE in the queries elements of their manifest: ...
WebViewer
  • 761
  • 7
  • 21
1
vote
0 answers

Android head Unit not able to control volume programmatically

I installed NIPPON NDROID 9PRO 9.1Inch Android 10.1(MCU:T3L) Car Multimedia Player and Alpine external speakers in my vehicle. But not able to control volume programmatically. I used this code to control…
1
vote
0 answers

Android TTS error while synthesizing text in specific voice after latest TTS update

I am using TTS to synthesize text using android TTS in particular voice. It was working fine before I updated the Text-to-speech app. I have used following code to set the voice. I have debugged this and it sets voice correctly. Voice voice =…
karan
  • 8,637
  • 3
  • 41
  • 78
1
vote
0 answers

Whats wrong in this TTS function

In my Android app, I created TTS (Text To Speech) function as below: package hasan.tts_mobile import android.content.Context import android.speech.tts.TextToSpeech import android.speech.tts.UtteranceProgressListener import android.util.Log import…
Hasan A Yousef
  • 22,789
  • 24
  • 132
  • 203
0
votes
0 answers

How to install a missing TTS data and set Google TTS explicitly?

I need to install Polish language if missing, but on Samsung device both Samsung TTS and Google TTS is showing up as intent handler. How can I make it for Google TTS to show up only? Code: tts = TextToSpeech( applicationContext ) {…
Rifat
  • 1,700
  • 3
  • 20
  • 51
0
votes
0 answers

Adding voice responses to my kotlin application

I have been trying to find a way to have my application speak a response instead of just provide a text response. I feel like it should be easy but I cannot find what I need. I have found many examples of taking user input and converting it to…
0
votes
0 answers

Android TextToSpeech Get Speech Rate From System

I have an Android TV app, running on a Fire TV Stick. I have initialized a TextToSpeech engine and I am calling it via the speak function. My problem is that the speech rate (talk back speed) does not change when I change those in settings. I know…