Voice Recognition means identification of the person talking and is frequently misapplied to mean "Speech Recognition" - identification of what is being said.
Questions tagged [voice-recognition]
1464 questions
-1
votes
1 answer
Error running Pythontranscriber.py
When I try to run pythontranscriber.py, it fails with the following error:
Traceback (most recent call last):
File "PythonTranscriber.py", line 14, in
from edu.cmu.sphinx.decoder import Decoder
ImportError: No module named edu
My…

karensantana
- 1,599
- 4
- 21
- 34
-1
votes
1 answer
How can I perform voice recognition for single words, without an Internet connection, on iOS?
How can I perform voice recognition for single words, without an Internet connection, on iOS?
-2
votes
0 answers
speaker recognition model using python :the model will show the name of the person speaking
using python ,i tried to develop a speaker recognition model then when i tested it only the first recording was readen

Bth IA
- 1
- 2
-2
votes
1 answer
How do i get him to stay awake until I say goodbye?
Building my own voice assistant. After each command is given and response returned, I have to wake him again. I want him to be awake for all queries. stuck, please help. sorry if it seems vague.
WAKE = 'allen'
while True:
text = mic_input()
…

Colin Peek
- 1
- 1
-2
votes
1 answer
python voice signature identification?
I'm working on a system that locks several parts in my computer and opens them ONLY using my voice saying specific
words (in python). I've already made the system that locks parts in my computer until you give it password but I want to change it to…

Eyal B
- 6
- 1
-2
votes
2 answers
Voice recognition gives out Type error NoneType none iterable
I have a password recognition code that goes like this:
from wit import Wit
import pyttsx3, time
def speak(string):
engine = pyttsx3.init()
engine.setProperty('rate', 220)
engine.say(string)
engine.runAndWait()
def Hear():
…

VLCTY Viper
- 11
- 1
-2
votes
1 answer
How do I detect certain things that I said in a speech recognizer script
I am trying to make a voice activated virtual assistant of sorts using python, but I am not sure how to detect and distinguish between the different voice commands. Currently it just repeats back to you, "You Said [whatever i said]" but i want it to…

TheRobynn
- 1
- 2
-2
votes
1 answer
Using Simple Voice Commands in Unity3D (with IBM Watson SDK)
The problem
I'm currently using Speech-To-Text from the IBM Watson SDK for Unity to recognize voice commands like start or quit by just checking if the recognized text contains one of them.
Problem is that it doesn't work very reliable (output is…

BennytheBomb
- 1
- 2
-2
votes
1 answer
Can I classify ivectors with neural networks for language recognition?
I'm doing a language recognizer, I had planned to classify my i-vectors with neural networks, but I've read a lot of papers and they always use other methods like SVM or PLDA, can someone explain to me why? or it's fine to do it with neural…

David Romero
- 37
- 1
- 7
-2
votes
1 answer
windows automation and voice control using wake word
I want to use a "wake word" with my windows 10 computer, instead of a hotkey, to run a custom windows automation command.
How can I setup windows to use a "wake word" and then run a custom command?
(Also how can I easily make a windows automation…

Shrinidhi Hegde
- 454
- 3
- 14
-2
votes
1 answer
Speech recognition for voice control inside my application
I know there is a lot of thread on this but I'm still trying to figure out what is the best option now in 2018.
Is there a kind of built-in method to integration voice control inside my c# WPF application?
What is the best solution (free or paid)…

michelqa
- 137
- 1
- 2
- 14
-2
votes
1 answer
Voice command in Android activity
I have an activity in my app that has a counter for 2 different teams, now, to add a point to this teams I need to click a button.
I want to do this also with a voice command.
The thing is that I need: offline voice recognition, add points but not…

Kilian Sillero
- 1
- 3
-2
votes
1 answer
NullPointerException when i call the write() method of BluetoothConnectionService object which sends my data to arduino via blueooth
package com.example.ayushiagarwal.voice_app;
import android.content.ActivityNotFoundException;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.speech.RecognizerIntent;
import…

ayushi
- 1
- 2
-2
votes
1 answer
Google voice recognition without popup in android studio
Job: I wanna an app like "When I call the method it'll start voice recognizer and gives the result of voice recognition
Problem: Voice recognizer is starting when I call the method but it's not giving the result of voice recognition instantly. It's…

Boray Saygılıer
- 11
- 3
-2
votes
2 answers
How do you make c# ask for a confirmation?
I can't figure out how to make it so that if I ask my C# voice application, "Call Mark" It will ask for a confirmation and only call him if I say "Yes".
case "Call Mark:
speak.SpeakAsync("Are you sure");
break;
I would guess that I…

Scott Gibbard
- 1
- 1