Questions tagged [voice-recognition]

Voice Recognition means identification of the person talking and is frequently misapplied to mean "Speech Recognition" - identification of what is being said.

1464 questions
6
votes
0 answers

Bluetooth headset voice recognize not working

I am working on an application in which I have to recognize bluetooth headset voice. I have troubled a lot but still not get any solution. I am following this link: Using the Android RecognizerIntent with a bluetooth headset And every time I m…
Sandeep Patidar
  • 287
  • 1
  • 2
  • 6
6
votes
1 answer

ALIZE platform installation and execution the examples

I recently program using the speaker recognition lib - ALIZE. But I got some questions about how to install and execute the demo. Could somebody help me to see what's wrong with my order of installation and execution. I use Mac OS system: 1,…
cindywmiao
  • 937
  • 2
  • 11
  • 26
6
votes
3 answers

Continues Speech Recognition beep sound after Google Search update

I have an app that keeps on listening to voice and converting it to commands using Google Voice API. I have been using setStreamMute(AudioManager.STREAM_SYSTEM, true) to mute the beep and it worked until a couple of days ago before "Google Search"…
duduhayo
  • 95
  • 1
  • 1
  • 9
6
votes
4 answers

Speech to Phoneme in .Net

The problem is that I want to get phonemes of a audio speech in C# language. say you have an audio file like "x.wav" that says "hello dear Shamim". i want to extract all the phonemes of the speech and their relative timings. something like the…
Shamim
  • 434
  • 4
  • 11
6
votes
3 answers

Is there an API (or any hacks) to access Enhanced Dictation in Mac OS X Mavericks?

I am trying to find an easy way to transcribe an audio file to text (CMU Sphinx, Julius, etc. are difficult for someone not knowledgable about voice recognition, configuring language models, acoustic models, etc.). I wondered if there was a way to…
6
votes
1 answer

Start Android keyboard in voice recognition mode

I would like to open the keyboard programmatically and have it start doing voice recognition instantly without the user pressing the mic button. I know how to implement SpeechRecognizer - that is not what I'm looking for. I want to start the…
Patrick Jackson
  • 18,766
  • 22
  • 81
  • 141
6
votes
2 answers

Voice coding in Emacs on Mac OS X

I would like to be able to write code by voice recognition and him currently using Aquamacs 2.4 and Dragon Dictate 2 on Mac OS X 10.6.8. Does anybody know if this is possible and if so how? I've seen shorttalk, emacs listen, and voice code but they…
6
votes
1 answer

CMU Sphinx for Voice/Speaker Recognition

I'm looking for a way to match a known data set, let's say a list of MP3s or wav files, each which is a sample of someone speaking. At this point I know file ABC is of Person X speaking. I would then like to take another sample, and do some voice…
6
votes
1 answer

Android: Voice recognition

[possibly duplicate] But I didn't find answers to my questions below. I've been doing some research on voice recognition for the past two days and I didn't get answers to my questions: Is it possible to run voice recognition as a service? I would…
Ramesh Sangili
  • 1,633
  • 3
  • 17
  • 31
6
votes
1 answer

Android: Is it possible to reposition the voice recognition popup window?

I'm just finishing up my voice recognition app and it works well. The user is given a question and answers via voice. One nagging thing is that the voice recognition window pops up quite near the top of the phone screen and it would be nice if it…
6
votes
3 answers

Human face, emotion and voice recognition

I am looking for a good face, emotion and voice recognition method in C#. For face recognition I was early using Emgu CV which is not accurate and performance is very low in low light conditions. Also I need to find user's emotion. Whether sad or…
Matt
  • 1,953
  • 1
  • 19
  • 42
5
votes
2 answers

how to show up the google voice recognition settings in my app?

I am working on an android application in which i have implemented voice recognition and TTS. So i was thinking to launch settings screen for both google voice recognition and TTS to allow user to change settings from within the application. I have…
Pargat
  • 769
  • 9
  • 23
5
votes
6 answers

Error 263 for command: open Welcome.mp3 The specified device is not open or is not recognized by MCI

import speech_recognition as sr import requests from gtts import gTTS from playsound import playsound import os import subprocess bot_message = "" message = "" myobj = gTTS(text="Hello I am Shilpa Sheety Speak Anything I am Listening", lang='en',…
5
votes
1 answer

Is it possible to use Chrome Live Caption programmatically?

Chrome 89 has a Live Caption feature, which can transcribe English text from an audio/video as it plays. It even works offline, so it's not contacting Google's servers. Is there any way to use this feature programmatically, e.g. to give it an audio…
JW.
  • 50,691
  • 36
  • 115
  • 143
5
votes
4 answers

Expo Voice Recognition

I've been trying to implement Voice recognition on my Expo app, I've tried using a speech-to-text library called react-native-voice but it does not support Expo. Does anyone know any other library that I can use. I have read some articles on using…