Questions tagged [pocketsphinx]

PocketSphinx is a lightweight version of the CMU Sphinx open source cross-platform speech recognition system, optimized for mobile and handheld devices.

459 questions
2
votes
0 answers

Sphinx pocket android for Sinhala accent(English Language)

I m trying to develop speech recognition application using Sphinx pocket android for Sinhala accent (English Language). But I don't know the procedure. Can someone help me?
2
votes
1 answer

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 I make sure that Sphinx can understand both my…
yeeeeee
  • 21
  • 3
2
votes
1 answer

CMU Sphinx 5prealpha (Voice recognition system) installation

I wanted to try sphinx's latest version, but didn't figure out how to install it. With the 4th version it was quite simple, I used the demo, like Hello World and attached the libraries (jsapi, sphinx4,TDIFITS, WSJ) to the project, as shown in this…
Aidos
  • 729
  • 7
  • 20
2
votes
1 answer

pocketsphinx-android getting 0 for getBestScore() and getProb() methods

I'm using pocketsphinx android for development of an application. Using keyphrase search for activation. Activation works not so good with many false positives and not always recognizing what I say. so I decided to use getProb method to see the…
noosxe
  • 67
  • 5
2
votes
0 answers

Setting up PocketSphinx library in my own Android App

I am trying to implement Speech Recognition with the help of Pocket Sphinx Library. What my approach was, I just downloaded their demo project for Android. Imported it in Eclipse, did clean-build and run it on device. It ran successfully. After this…
user995009
2
votes
1 answer

How do I turn off info logs in pocketsphinx-python

For example, running the example.py script of the cmusphinx/pocketsphinx-python package outputs a whole bunch of info to the terminal. How do I switch it off?
Roman
  • 8,826
  • 10
  • 63
  • 103
2
votes
1 answer

Using Android wear API and PocketSphinx

After having developed a voice recognition system on my handled device using the PocketSphinx library, I am trying to integrate voice recognition on my android wear device by recording an audio file on the watch and have it sent to my phone for…
charbelfa
  • 171
  • 1
  • 1
  • 8
2
votes
2 answers

Python doesn't recognize the Decoder from pocketsphinx

I have installed the latest versions of pocketsphinx and sphinxbase (0.8). I try to import pocketsphinx into python code (version 3.4.2 of Python) and to use the "Decoder" like this: try: import sphinxbase import pocketsphinx as ps except: …
2
votes
1 answer

Pocketsphinx with gstreamer on mac osx. AudioUnitRender returned -10863

I am trying to run livedemo.py from the pocketsphinx source after installing it and stumble upon pocketsphinx problem. Narrowing it down, the problem is in pocketsphinx gsteamer plugin. Simply running this: gst-launch-0.10 autoaudiosrc !…
dvitonis
  • 263
  • 3
  • 9
1
vote
0 answers

Pocketsphinx produces poor results

I am trying to use Pocketsphinx (for Python) with the code below: from pocketsphinx import AudioFile, get_model_path for phrase in AudioFile("test.wav", hmm=get_model_path("en-us/en-us"), …
Kent Tong
  • 87
  • 4
1
vote
0 answers

Cannot install pocketsphinx

Every time I try to install pocketsphinx by using: pip install pocketsphinx It gives me the following error, saying that it could not build the wheel: Building wheels for collected packages: pocketsphinx Building wheel for pocketsphinx…
Mimiky
  • 11
  • 1
1
vote
0 answers

PocketSphinx is not listening

I would like to implement the library PocketSphinx in my Android project but I fail with it since nothing happens. It doesn't work and I don't get any errors. This is how I tried it: Added pocketsphinx-android-5prealpha-release.aar to…
xRay
  • 543
  • 1
  • 5
  • 29
1
vote
0 answers

How to use pocketsphinx in QT for Android Application

I want to use Pocketsphinx in Qt for Android application. Should I use the library from c++ side or through java as another QT Activity?
1
vote
1 answer

Sound file to text file-speech recognition for ubuntu, specifically pocketsphinx usage

As made clear here: https://unix.stackexchange.com/questions/256138/is-there-any-decent-speech-recognition-software-for-linux Finding speech recognition software that turns sound file into text is dificult to do on linux. I trying to use…
Barny
  • 89
  • 1
  • 1
  • 8
1
vote
0 answers

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 SpeechRecognition library. "ODI" keyword is being…