speech-recognition Questions

4

Hey I am looking to build a code in python which will recognise what i speak through the micrphone and convert to speech, can you please give me few effcient speech processing libraries for achiev...
Brought asked 2/2, 2011 at 11:37

3

Solved

Working on Flutter speech to text conversion and using speech to text library, added below code for listening: speech.listen( onResult: resultListener, listenFor: Duration(minutes: 10), localeI...
Eran asked 12/5, 2020 at 9:1

5

Solved

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 continuous listening(10-30 minutes) recogn...
Beutler asked 23/9, 2019 at 10:56

0

My experimental code below (compileSdk 34, minSdk 33), works well as far as text-to-speech and speech-recognition are considered separately: package com.example.speechandspeak; import android.Mani...

2

Last month, a user called @jojek told me in a comment the following advice: I can bet that given enough data, CNN on Mel energies will outperform MFCCs. You should try it. It makes more sense to...

2

Solved

I was able to run SpeechRecognition in TypeScript by creating interface as below, and it is working fine: namespace CORE{ export interface IWindow extends Window{ webkitSpeechRecognition: any; ...
Absenteeism asked 19/1, 2017 at 11:29

5

Solved

I used SpeechRecognizer on android to recognize the User's voice. It worked well until uninstall the Google App. (https://play.google.com/store/apps/details?id=com.google.android.googlequicksearch...
Luminesce asked 1/9, 2017 at 2:5

1

I am building an android app and I'm using speech recognition but while the app work just fine with Android 11 and any versions below, I've encountered a roadblock with anything beyond Android 12. ...

2

I am building a search that supports voice recognition and transforms speech to text so I am using SFSpeechRecognizer. But the problem is that I need to support multiple languages at the same time ...

2

Solved

So I have an Electron app that uses the web speech API (SpeechRecognition) to take the user's voice, however, it's not working. The code: if ("webkitSpeechRecognition" in window) { let S...

2

Solved

I am trying to implement speech recognition into my next.js website. I downloaded and am trying to use the same code from this link, but I get this error: ReferenceError: regeneratorRuntime is not ...
Boracic asked 8/9, 2022 at 2:6

4

Solved

I use OpenAI's Whisper python lib for speech recognition. How can I get word-level timestamps? To transcribe with OpenAI's Whisper (tested on Ubuntu 20.04 x64 LTS with an Nvidia GeForce RTX 3090):...
Electrostatics asked 23/9, 2022 at 2:15

3

Solved

My first try on audio to text. import speech_recognition as sr r = sr.Recognizer() with sr.AudioFile("/path/to/.mp3") as source: audio = r.record(source) When I execute the above code, the fol...
Stromberg asked 30/8, 2016 at 15:56

2

Solved

I'm using for the first time the GCS Speech API for a project to convert a series of audio files to text. Each file has around 60 minutes and is a person talking continuously during the whole time....
Donnetta asked 30/7, 2018 at 20:17

2

Speech Recognition with the following code just not working at all with sr.Microphone() as source: # read the audio data from the default microphone audio = r.record(source, duration=4) print(&quot...
Stanislaus asked 3/7, 2020 at 16:33

2

I've built a voice-driven android app that uses the android speech recognition API. I'm currently trying to convert the app to a wear-os version. I've included the speech recognition permission in ...
Houseyhousey asked 20/5, 2023 at 0:5

6

Solved

I have been on a rough ride trying to do something using the Speech recognition on an android emulator. Having finally installed the market place and the Google Voice Search app - I am so close to...
Bayadere asked 7/5, 2011 at 21:44

1

I am developing a cross platform application in flutter and cannot find any sources for converting speech to text in desktop(windows). I tried using packages like speech_to_text I even tried google...
Estranged asked 25/3, 2022 at 8:16

2

Solved

From where do I have to accept the speech recognition policy? Here is the code public async void display() { SpeechRecognizer rec = new SpeechRecognizer(); await rec.CompileConstraintsAsync(); ...
Resound asked 22/2, 2017 at 12:28

5

Solved

I am working on a product that need to take inputs from user and do certain actions based on it. We have implemented it with a chat box via typing and it is serving our purpose. For the future rele...

2

I'm trying to use whisper AI on my computer. I have a NVIDIA GPU RTX 2060, installed CUDA and FFMPEG. I'm running this code : import whisper model = whisper.load_model("medium") result =...

16

I am running the following code in Python 2.7 with pyAudio installed. import speech_recognition as sr r = sr.Recognizer() with sr.Microphone() as source: # use the default microphone as the audio s...
Jetliner asked 14/8, 2015 at 8:13

2

I have been trying to install pyaudio on a Mac M1 Big Sur but was not able to do so and was stuck on the 'portaudio.h' file not found error. I managed to install it using a different pip command: p...
Obolus asked 31/8, 2021 at 3:49

2

Currently, the HTML5 web speech api works great on google chrome for all devices except mobile iOS. Text-to-speech works, but speech-to-text is not supported. webkitSpeechRecognition is not support...
Singleaction asked 18/2, 2015 at 19:26

2

I need to do voice activity detection as a step to classify audio files. Basically, I need to know with certainty if a given audio has spoken language. I am using py-webrtcvad, which I found in g...

© 2022 - 2025 — McMap. All rights reserved.