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

Vosk offline speech recognition accuracy issue on android

Here is the full config i'm using for android, Version: 0.3.32 Model : vosk-model-small-en-us-zamia-0.5 Gradle: 7.3.3-bin.zip Android studio: Chipmunk (2021.2.1 Patch 1) Scenario: I've build an offline voice recognition service which generally wake…
Rezwan
  • 61
  • 2
0
votes
0 answers

Speech Recognition API bug or am I missing something?

So, i was exploring Speech Recognition. Am new to this topic so I relied on a YouTube tutorial where guy made calculator using voice. Played with code and everything worked except for multiplying. Thought I made an error - so I looked up video and…
user15979146
0
votes
0 answers

gRPC with nodejs and speech to text google console

New to gRPC, iam trying to transcript a live stream using google speech to text i have followed this link https://medium.com/@rushikeshsp25/generating-transcripts-for-an-m3u8-video-stream-using-google-cloud-speech-to-text-f59254b9674 this helps alot…
0
votes
0 answers

Searching for a voice command with an argument in Python or Node.js

I have a list of commands like: 1: "Open an employee card *" 2: "Open site *" I want there to be a function that I can pass "Open Fred Harvard" into and it would return for example: {"cmd": 1, "arguments": ["Fred Harvard"]}. There was a library…
Doumor
  • 447
  • 3
  • 11
0
votes
1 answer

How to convert voice to text?

I am trying to converting my wav file to text file using sphinx4. Is it possible to recognize the word which is not include in grammar file?
RAAAAM
  • 3,378
  • 19
  • 59
  • 108
0
votes
1 answer

azure speech to text with audio url

Hi I have tried speech to text with audio files using azure speech to text and everything is working correctly. Can some one guide me how to do the speech to text in azure using audio url. I'm using the REST API.
0
votes
0 answers

Transitioning to speech recognition option for web application

I understand how it is possible to use speech to record data into a backend database. However, I am unsure about how I may allow this to be done from a web application. As I am not dealing with text, how do I offload the speech activation options…
0
votes
0 answers

RecognizerIntent.EXTRA_SPEECH_INPUT_MINIMUM_LENGTH_MILLIS makes OnResult callback doesn't work on android 12

I already read 2 other analogue questions on Stack Overflow, but none of them with a solution which include this line of code (they just said to delete this line and everything works fine). But in my project is kinda mandatory. Premise: don't know…
0
votes
1 answer

Flutter/Dart: speech to text (offline)

Is there any package that I can use to create an app that can process speech to text? It should include the following features: offline speech to text
0
votes
0 answers

Is any cloud Speech-to-text service is a solution to an AI assistant as a product for speech recognition?

I am creating an AI assistant similar to Alexa. I was a bit confused about which speech-to-text service should I use. So I tried Google speech-to-text and after using I noticed that the timeout session for GCP STT was 350 sec. But I required…
0
votes
0 answers

Azure Speech-to-Text; unable to establish secure websocket connection to speech services

Application is deployed on EC2, using NGINX as a reverse proxy line 113 in SDK's WebsockerMessageAdapter.ts this.privWebsocketClient = new WebSocket(this.privUri); Application was previously hosted on Netlify, this issue has not appeared before.…
0
votes
0 answers

Why Azure speech to text don't trigger the function recognized/recognizing after written audio buffer?

I'm building a sample speech-to-text using microsoft-cognitiveservices-speech-sdk package. I received output text from recognizing or recognized only if I execute my sample on Cloud shell, Codesandbox or my home PC but I can't get output text if…
Duy Hoang Nguyen
  • 85
  • 1
  • 1
  • 6
0
votes
0 answers

add medical term dictionary in Microsoft azure

I have make a speech to text application with Microsoft azure cognitive services in C# Window Form. but when I speak medical term like "Pneumoultramicroscopicsilicovolcanoconiosis" it recognize wrong. Can I add a medical term dictionary in Microsoft…
Babar Ali
  • 133
  • 10
0
votes
0 answers

Flutter Speech_to_text is not listening continuously

I use the speech_to_text package in my flutter application but after 2-3 seconds it stops listening. Is there any way to fix it?
yalda mohasseli
  • 228
  • 1
  • 3
  • 10
0
votes
0 answers

Continuous Speech Translation using Javascript

As you know the repository includes a STT quick sample code (JS Browser) : here However, I am specifically looking for continous speech translation quickstart sample code. I could not find it anywhere else. Normally, I am supposed to bind…