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
0
votes
3 answers

Where is Gradle Project so I can import it? (Android Studio)

I'm 99% positive this is a total nub question but I downloaded the pocketsphinx demo project: https://github.com/cmusphinx/pocketsphinx-android-demo and was told in the tutorial to just import the project into Android Studio and then all the…
Jpaji Rajnish
  • 1,491
  • 4
  • 17
  • 35
0
votes
1 answer

Python pocketsphinx 'module' object has no attribute 'Decoder'

I try to run simple example of using pocketsphinx. I have installed all libraries, plugins that was needed... Python 2.7.6. But still get an error: pocketsphinx 'module' object has no attribute 'Decoder' import sys,os import pocketsphinx as ps…
Arti
  • 7,356
  • 12
  • 57
  • 122
0
votes
1 answer

pocketsphinx simple example works in basic c test but not when included in c++ project

i am trying to build a project with pocketsphinx. I am at early state and i first tried a simple example from the docs in a single main.c which reads a file and detects words: works. Now i have tried to include this to my c++ SDL project reading…
Hellagot
  • 235
  • 2
  • 13
0
votes
1 answer

Android studio does not generate .md5 file at pocketsphinx demo project

When I build pocketsphinx demo project by eclipse, IDE generates md5 files of some assest files. Hovewer If I do the same thing on Android Studio, It does not generate md5 files. In this case, the aplication that I compile with Android Studio gives…
user3079364
  • 171
  • 1
  • 19
0
votes
1 answer

Jasper - Rasbery PI speech recognition free form dictation

I am planning on using the Jasper API for creating a voice recognition program in Python for the raspberry pi. However I have been looking at the Jasper documentation and it all appears to work around keyword detection and searching predefined…
0
votes
2 answers

Sphinxbase make/install failing

I'm trying to install sphinxbase and pocketsphinx on Debian Jessie as detailed in this tutorial but running make check during the installation of sphinxbase is failing; I think this is leading to my inability to install pocketsphinx later. When I…
Kienan Knight-Boehm
  • 165
  • 1
  • 2
  • 10
0
votes
1 answer

How to add phonemes recognition with pocketsphinx on Android

I'm working on a project about Cued Speech (it's a visual system of communication used with and among deaf or hard-of-hearing people). It is a phonemic-based system which makes traditionally spoken languages accessible by using a small number of…
0
votes
0 answers

pocketsphinx fails with french

I'm using the following code to setup recognizer (should give you an idea of the sequence of init actions and model used): File modelsDir = new File(assetsDir, "models"); recognizer = defaultSetup() .setAcousticModel(new File(modelsDir,…
-1
votes
1 answer

Pocketsphinx over zigbee

How can I send the output of the following command line " pocketsphinx_continuous -inmic yes -lm 8521.lm -dict 8521.dic" to XCTU console in order to control some devices attached to arduino board.
TB1234
  • 21
  • 3
-1
votes
1 answer

How to use pocketsphinx on speech recognition through a microphone in code

please tell me ..How should I write in C++,I know that the command line can use a microphone.But I don't know how to write it out through the code.I can't find any related api in pocketsphinx。
-1
votes
2 answers

Live speech to a string variable

Well the question is simple I want to get the text from a livespeech() object after recognition. Can anyone help me do that? please.
Learner
  • 1
  • 2
-1
votes
1 answer

PocketSphinx runtime error in log file

I am working on PocketSphinx. While running it, it shows some error in a log file. I can't understand them; what do they mean? Here are the errors: { ERROR: "forward.c", line 594: All 2 active states, 36 37, zero at time 1 ERROR:…
-1
votes
1 answer

Error opening audio device (null) for capture: Connection refused - Pocketsphinx on Windows

I'm quite new regarding Linux and I'm currently trying to implement the CMUSphinx tutorial adapted to french language (http://depado.markdownblog.com/2015-05-13-tutorial-on-pocketsphinx-with-python-3-4). The specificity is that I'm working on bash…
Alexandre
  • 1,259
  • 2
  • 15
  • 25
-1
votes
1 answer

whl file installation using command prompt

I'm using IDLE(3.6.0) 32 bit and I've tried installing some packages using pip install pocketsphinx-0.1.3-cp35-cp35m-win32.whl but i keep on getting an error saying: pocketsphinx-0.1.3-cp35-cp35m-win32.whl is not a supported wheel on this…
JNAZ
  • 1
  • 2
-1
votes
1 answer

Acoustic model definition is not specified neither with -mdef option nor with -hmm

I have a .wav sound file I want to convert it's content to text file when I search I found this link that use this command line to make the conversion pocketsphinx_continuous -infile file.wav 2> pocketsphinx.log > file.txt after use it on my .wav…
user7179690
  • 1,051
  • 3
  • 17
  • 40
1 2 3
30
31