Skip to main content

All Questions

Filter by
Sorted by
Tagged with
1 vote
0 answers
996 views

Speech Recognition detect specific word using python

I am working on a voice assistant project and using SpeechRecognition library to recognise user's commands. I decided to name my assistant ODI and realised that this is not recognised by the ...
Dev_elop_er_'s user avatar
2 votes
1 answer
333 views

Python Pocketsphinx: Keyword isn't recognised when using Decoder class

I'm trying to detect a keyword from a .wav file using Pocketsphinx, specifically with the decoder class. When I give it this .wav file and print what it detects it isnt even close. Here is the code: ...
Jack Johns's user avatar
0 votes
1 answer
474 views

How to use the results of PocketSphinx voice-recognition code?

I am trying to create a program that will constantly listen for speech, and if I say a certain string, it will call a certain function, example, if (string) then (function). I initially tried using ...
student_programming's user avatar
2 votes
1 answer
432 views

Cross compiling Sphinxbase and Pocketsphinx for ARM

I am trying to make Pocketsphinx work on an ARM based processor for hot-word detection. So I am cross-compiling Sphinxbase and Pocketsphinx for ARM on a Ubuntu PC. I am able to install Sphinxbase and ...
rakesh kandukuri's user avatar
0 votes
1 answer
120 views

PocketSphinx recognize any sound as word from dictionary

I making gift to my friend, magic wand with voice recognition. in dictionary i have some spells like Lumos and Nox, but problem in that PocketSphinx recognize any word and sound as Lumos or Nox. How ...
Yarikkot's user avatar
0 votes
0 answers
106 views

Pocketspinx, russian language and keywordspotting

The goal is: Control smart house via predefined text commands. Without any activation word like okay google, it always listening. What's done: pocketsphinx_continuous -inmic yes -hmm /path/zero_ru....
Meliborn's user avatar
  • 6,635
0 votes
1 answer
772 views

Open an app using voice recognition (PocketSphinx)

I want to create a voice recognition app in android and run it in service so i can use it even without in the app. So i looked for reference and i found in GitHub a demo app. This is the site https://...
Richard Baluyut's user avatar
0 votes
0 answers
143 views

Are there anyway to use google voice recognizer offline?

I am trying to use pocketsphinx but I get about 50% accuracy with it's default continuous.c program. But when I try google voice recognizer, or cortana I get about 100% accuracy! It's strange for me ...
Hasani's user avatar
  • 3,859
0 votes
1 answer
185 views

Pocketsphinx Overflow Error

I've been trying to use pocketsphinx for voice recognition but I keep getting an odd error. My code is as follows #!/usr/bin/env python from os import environ, path import pyaudio from pocketsphinx....
Alexander's user avatar
0 votes
0 answers
165 views

Android PocketSphinx Hijacks microphone

So I installed Pocketsphinx on my app and the keyword function is working great. I followed this tutorial https://cmusphinx.github.io/wiki/tutorialandroid/ for my setup. The problem I have is that it ...
user2101081's user avatar
2 votes
1 answer
1k views

Creating a Project with Pocketsphinx in Visual Studio [closed]

I followed this tutorial: https://cmusphinx.github.io/wiki/tutorialpocketsphinx/#initialization and builded up these 2 Files in VS. Now i want to use the library in my project but I don't know how to ...
Ossi's user avatar
  • 75
0 votes
0 answers
329 views

PocketSphinx on Android recognises words even if they aren't spoken

I am using PocketSphinx for android-23. I want to code an offline assistant for one of my apps. I have successfully used recognizer.addKeyphraseSearch to initialize the assistant. For eg. In this case ...
Omkar Jadhav's user avatar
0 votes
1 answer
332 views

ROS Voice recognition

Short summary of what I tried to do and what it's actually doing. In my project I have two simple nodes: one for listening and publishing, and another for speaking and subscribing. I named them ...
Marco Neves's user avatar
0 votes
0 answers
42 views

How to accurately capture and store a name with pocketsphinx_continuous

I'm working on a voice-recognition project and so far it's able to recognize a set of key-phrases I give it with pretty good accuracy. But what I wanted to do now was have a key-phrase say, "remember ...
Marco Neves's user avatar
1 vote
1 answer
247 views

How to develop pocketsphinx for android to get better quality with arabic recognition from 77 trys get only one word?

the problem was there is no error messages and it didn't recognize any word!! I use the model files from sphinx Arabic version which I tested before with eclipse on desktop and it works well but i don'...
Seif Mostafa's user avatar
1 vote
0 answers
714 views

Android PocketSphinx : How to reset hypothesis.Hypstr()?

I want my device to continuously listen for a keyword. I am using PocketSphinx for this purpose.I found a demo project on github which makes PocketSphinx to continuously listen using Service. Here is ...
Mayur Kharche's user avatar
2 votes
1 answer
447 views

use android pocketsphinx while recording audio

i want to use pocketsphinx in my app while recording audio in the background (unrelated to the speech recognition - as part of a video recording). while trying to do so i constantly get the exception:...
user2928842's user avatar
1 vote
1 answer
1k views

Failed to initialize pocketsphinx keyword spotting on Windows

I am attempting to get a speech recognition engine running in python using keyword detection by PocketSphinx. I installed it through pip and managed to find some code for keyword detection in an ...
Chris's user avatar
  • 368
0 votes
0 answers
207 views

Programmatically stop a vertical scroll?

I am developing a voice-controlled Android app and can successfully scroll up and down vertically using voice commands. I now wish to stop a vertical scroll at any moment, is there a way to do that ?
Erz's user avatar
  • 21
1 vote
1 answer
1k views

Pocketsphinx Android demo error: "Failed to init recognizer java.io.IOException: Failed to initialize recorder. Microphone might already be in use."

I have been using Pocketsphinx Android demo and get the error: "Failed to init recognizer java.io.IOException: Failed to initialize recorder. Microphone might already be in use." What does the error ...
Erz's user avatar
  • 21
3 votes
1 answer
4k views

Pocketsphinx - perfecting hot-word detection

I've revisited CMU Sphinx recently and attempted to set up a basic hot-word detector for Android, starting from the tutorial and adapting the sample application. I'm having various issues, which I'...
brandall's user avatar
  • 6,134
0 votes
0 answers
152 views

Implement pocketsphinx on android for word translator

I am currently developing a word translator with speech-to-text function. I studied pocketsphinx but I can only let it search the dictionary by declaring a default keyword. Is there a way that you ...
Junmar Calimbas Jose's user avatar
0 votes
0 answers
589 views

Pocketsphinx performance difference Java/Python

I'm trying to implement a simple voice recognition using pocketsphinx. My aim is to listen continuously and react in case a certain keyword get transcribed from pocketsphinx. So far this works like a ...
Attix's user avatar
  • 115
-1 votes
1 answer
1k views

doing actions after sound recognization in android

please give me suggestion about this condition. is it possible in android that the device waits for special sound, and after it recognizes it, some actions happens. please tell me about your ideas....
user avatar
0 votes
1 answer
913 views

Digits recognition with CMU Sphinx

Hi Recognition Experts, I have a lot of mp3-files (original audio stream samplerate was 11.025 kHz) containing digits (0 - 9). Different speakers (male/female) say for example "One", "Seven", "...
Sinotix's user avatar
0 votes
1 answer
785 views

Pocket sphnix does not recognize any word

I downloaded CMU SphinxBase (sphinxbase-5prealpha.tar.gz) and Pocket Sphinx (pocketsphinx-5prealpha.tar.gz)and installed all required packages (sudo apt-get libtool bison python-dev autotools swig) ...
SC-SL's user avatar
  • 377
2 votes
1 answer
447 views

CMU Sphinx: how to add keywords in addition to existing vocabulary?

CMU Sphinx comes with a large vocabulary of English words. that is fine however I want to emphasize certain words which I will be using as commands. some of these words are not English words. how can ...
yeeeeee's user avatar
  • 21
0 votes
1 answer
552 views

Cannot find sphinxbase.lib when compiling pocketsphinx

I checked out the latest version of CMUSphinx from github.I compiled sphinxbase successfully and while trying to compile pocketsphinx,I faced an error saying: P.S: I used Visual Studio 2013 Express ...
Kaushik Ramachandran's user avatar
0 votes
1 answer
801 views

Problems loading language model in DMP format in CMU Sphinx

I tried compiling CMU Sphinx from source and tried to recognize voice commands using mic . My command looks like this: pocketsphinx_continuous.exe -inmic yes -hmm model/en-us/en-us -lm model/en-us/...
Kaushik Ramachandran's user avatar
1 vote
1 answer
109 views

issue on creating language model for sinhala usin SRILM

I'm trying to create a sinhala voice recognition system using pocketsphinx. I use SRILM tool to create language model. My source files to create the laguage model are Here . Im using cygwin on windows ...
dab1984's user avatar
  • 47
5 votes
1 answer
7k views

How can we convert .wav file to text by using pocketsphinx?

I installed pocketsphinx in my Linux machine correctly, and now I want to convert an audio file (.wave) to text by using pocketsphinx,how can i do that? is there any clear command and short command to ...
Ali's user avatar
  • 632