679 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
17
views
Sphinxtrain: Unable to lookup word that exists in the dictionary
I'm adapting a sphinx model for Brazilian portuguese with my own data by following their tutorial and got stuck on the bw command in the "Accumulating observation counts" section. I made ...
1
vote
0
answers
48
views
UnicodeDecodeError when Transcribing Live Audio using Sphinx in Python
I am trying to transcribe a live playing audio, but I am getting the following error when decoding,
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte
import ...
0
votes
0
answers
70
views
Impossible to pip install pysphinx
I am trying to use Pysphynx to run the following speech-to-text transcription code. It seems that there is just no way to install pysphinx, I get the standard error message:
ERROR: Could not find a ...
0
votes
2
answers
102
views
Python return statement never reached but prints immediately before it
I am trying to call a take_command() function from main.py.
The system prints the value right before the return call, but doesn't actually return the value to main.py. The take_command() function was ...
1
vote
2
answers
4k
views
Cannot install libpulse-dev in Ubuntu
I like to use PocketSphinx speech recognition engine. For that, libpulse-dev is one of the dependencies. However, I cannot install libpulse-dev in my system.
I used the following command to install ...
0
votes
1
answer
536
views
How to run wake word detection with pocket sphinx on iOS?
I try to run the wake word detection from pocket sphinx on iOS. As base I used TLSphinx and the speech to text works (not good STT, but it recognizes words).
I extended the decoder.swift by a new ...
0
votes
1
answer
57
views
How could I change the time before the speech result is closed CMUSphinx4
I want to change the time before the speechresult is closed.
For example,
If I say "Hello", and then wait a second before saying "Hi", they will be 2 separate speech results. If I ...
0
votes
0
answers
1k
views
Failing to open audio device (/dev/dsp)
I am using pocketsphinx to adapt my acoustic model which i have trained.
So to use the model in pocketsphinx, i ran the following command:
pocketsphinx_continuous -inmic yes -lm "/home/ridwan/...
1
vote
0
answers
61
views
Getting Warnings when doing Batch Build on a solution on Visual Studio
I have a solution with 30 project inside.
I have rebuild the solution with the 30 projects successfully.
However, when I click on Batch Build... and by selecting all to build, I get 360 Warnings.
Here ...
1
vote
1
answer
82
views
"sphinx_fe.c", line 133: Number of channels 2 does not match configured value
i am trying to create speech recognizer for my native speaking language(Serbian) i followed steps described in this documentation https://cmusphinx.github.io/wiki/tutorialam/ and when running command
...
1
vote
1
answer
601
views
Getting started with Speech Recognition and Sphinx
Sphinx seems to be only real option for Java speech recognition. Documentation is sparse and it requires a high-level of domain knowledge. I used their example of a starting program and it works ...
0
votes
0
answers
1k
views
How to fix java.lang.module.findexception and java.lang.IllegalArgumentException
I've been trying to make a speech recognition program with CMU sphinx- and sphinx-5 real alpha. I am doing this following a tutorial on youtube https://www.youtube.com/watch?v=R8vsXKFTee0&t=216s.
...
0
votes
0
answers
62
views
Android / PocketSphinx: listener goes in standby a while after screen goes off
I made a simple app that responds to vocal commands using PocketSphinx to understand commands and standard Google's library to speak, in a sort of conversation.
It's working well but I have a problem ...
1
vote
0
answers
314
views
CMUSphinx simplest keyword "wake word" example?
New to the whole sphinx4 world. Trying to get a "wake word" hello world app running off a raspberry pi 3 / Kotlin.
I think this means pocketsphinx is out because it is only android...
The ...
1
vote
1
answer
999
views
use your trained language model in recognize_sphinx() using python with pocketsphinx
I've trained my langue model with cmu sphinx and now I want to use it in speech recognition using python script. How to change the default language model or how to use the trained model in ...