Questions tagged [speech-to-text]

The translation of spoken words into text. Possible synonyms include automatic speech recognition, ASR, computer speech recognition, speech to text, STT.

2372 questions
0
votes
0 answers

No speech detected in SwiftUI iOS

I am trying to implement a speech-to-text feature in my app but I am facing this error: Recognition error: Error Domain=kAFAssistantErrorDomain Code=1110 "No speech detected" I am testing it on a real device Relevant code: @State private var…
Nathace
  • 454
  • 3
  • 10
0
votes
0 answers

Is it possible to programmatically trigger the microphone button on a mobile keyboard?

My problem is that I need to implement speech recognition with continuous listening. Hence, the Speech Recognition API is not an option because continuous listening with it on a mobile device is is generally not supported as the microphone…
Semion Vino
  • 121
  • 1
  • 9
0
votes
0 answers

Speech recognizer not working: PCM WAV, AIFF/AIFF-C, or Native FLAC error

I have the following audio file It says the word 'down' I am trying to turn the audio to text: import speech_recognition r = sr.Recognizer() with sr.AudioFile("example.wav") as source: audio = r.record(source) audio_data =…
Sharhad
  • 63
  • 8
0
votes
0 answers

How to use Android&IOS OS built-in voice input function in Flutter App

I want to use Android OS built-in voice Function in the keyboard in my app. enter image description here I want using this function like when I navigate next page, show up the keyboard like above image. I am using dart language in Flutter but I will…
JIYE
  • 1
0
votes
1 answer

how can I found flutter text to speech and speech to text amharic language accenet

how can I set the assistant accent to native amharic speaker in flutter text-to-speech and speech to text? Future _Speak() async { await _flutterTts.setLanguage('en-US'); await _flutterTts.setVoice({"name": "Karen", "locale": "en-US"}); …
Markos
  • 1
0
votes
0 answers

Setting a fallback tier (enhanced vs base) for different languages using Deepgram speech-to-text

I would like to use Deepgram's enhanced tier in all cases where the enhanced tier is available, but in the event that the enhanced tier is not supported (as is the case with several languages), I would like to fallback to using the base tier. The…
Nicole Hemenway
  • 563
  • 5
  • 13
0
votes
0 answers

Android Speech Recognition Does not identify short words when using extra language

The speech recognizer intent was working fine till recently; it suddenly stopped accepting short words i.e "yes", "no" etc. The issue seems to get fixed if you stick to English-only input, but I want to accept both English and Swedish input. My…
0
votes
0 answers

"android.speech.RecognitionService" - suddenly stopped detecting words "one" to "ten". Detecting "eleven" onwards

Android Speech Recognition Service not detecting (when someone speaks) the numbers one~ten (gives an error: Error:7 - "No-match") but detecting numbers eleven onwards. This was working fine & don't think this is an update issue at our end. Also, I…
0
votes
0 answers

How to make SpeechRecognizer run on main thread in Kotlin

When a notification comes, it outputs it as a voice through TTS, and when the voice output ends, it implements a function that receives a voice input from the user and sends it as a message. So, I wrote the code to perform STT in the onDone function…
0
votes
1 answer

Is it possible to train the offline Google speech to text engine with own phrases?

I have an Android app which uses the offline Google Speech To Text engine. I want it to recognize addresses, but it tries to convert them to common words. I need some boost for a list of addresses. It's not a duplicate of Train google speech to text…
0
votes
0 answers

iOS Speech Request Limit

I'm implementing STT (Speech-to-Text) with iOS Speech framework. Apple's official document says. Be prepared to handle failures caused by speech recognition limits. Because speech recognition is a network-based service, limits are enforced so that…
Cobugi
  • 1
  • 2
0
votes
0 answers

@react-native-voice/voice not working when targetSdkVersion=31 but works when targetSdkVersion=29

I am trying to use @react-native-voice/voice which seems to be the most-used speech-to-text library in ReactNative. I was able to use the function normally when targetSdkVersion=29 but as it is now compulsory to upgrade targetSdkVersion to 31 , I…
AhChing11
  • 125
  • 1
  • 3
  • 15
0
votes
0 answers

React Native: @react-native-voice/voice not working, not showing any response or results

Does anyone know what could be the issue? Previously, I was using @react-native-community/voice and it was working. But as I continue developing the application and come back to test the function, it is not working anymore. When I click on the…
AhChing11
  • 125
  • 1
  • 3
  • 15
0
votes
0 answers

speech recognization problem while making a call on speakerphone

I'm using vosk freeswitch plugin to do speech recognization, and playAndGetDigits function to play an audio to user while doing speech recognization. There is a problem that while user is using speakerphone to make the call and is keeping quiet, the…
Allan
  • 191
  • 1
  • 10
0
votes
1 answer

MS Azure Speech-to-text Python start_continuous_recognition does not stop at end of stream

I'm using the MS Azure Speech-to-text service with Python. My data input is a byte string, only a few seconds of audio. My expectation would be that the cloud service stops to process the audio when the end of the stream is finished and returns the…
k_o_
  • 5,143
  • 1
  • 34
  • 43