pocketsphinx-python icon indicating copy to clipboard operation
pocketsphinx-python copied to clipboard

Python interface to CMU Sphinxbase and Pocketsphinx libraries

Results 39 pocketsphinx-python issues
Sort by recently updated
recently updated
newest added

Hello, The testsuite seems to be failing on i386: https://buildd.debian.org/status/fetch.php?pkg=pocketsphinx-python&arch=i386&ver=1%3A0.1.15-1&stamp=1584846130&raw=0 Samuel

You need: "apt-get install libasound2-dev" before "pip install pocketsphinx". Other wise you will get "fatal error: alsa/asoundlib.h: No such file or directory". This should be in the installation instructions or...

`from pocketsphinx import *` This is how I import sphinx in my project. Normally it works fine but when I package it with pyinstaller it always gives this error: `ImportError:...

Hello. I use pocketsphinx with speech_recognizer. I'm calling the sphinx method and I have this error every time. TypeError: recognize_sphinx() got an unexpected keyword argument 'grammar' My call is with...

Sort input file list so that pocketsphinx-python's `_pocketsphinx.so` builds in a reproducible way in spite of indeterministic filesystem readdir order and http://bugs.python.org/issue30461 See https://reproducible-builds.org/ for why this is good.

Hello, i want to build a simple offline hotword detection and tried your example script: ``` from pocketsphinx import LiveSpeech speech = LiveSpeech(lm=False, keyphrase='forward', kws_threshold=1e+20) for phrase in speech: print(phrase.segments(detailed=True))...

There is a bug getting utterances. [Related stackoverflow Question](https://stackoverflow.com/questions/53024632/pocketsphinx-python-does-not-return-last-utterance-while-iterating-over-audio) I want to get the time coordinates of each word in my 'audio.wav' using python pocketsphinx 0.1.15. I reproduce the official...

Error opening audio device (null) for capture: Connection refused Traceback (most recent call last): File "1test.py", line 3, in speech = LiveSpeech() File "/usr/local/lib/python2.7/dist-packages/pocketsphinx/__init__.py", line 206, in __init__ self.ad =...

**I am try to running the example code bellow and getting error** ``` INFO: feat.c(715): Initializing feature stream to type: '1s_c_d_dd', ceplen=13, CMN='live', VARNORM='no', AGC='none' ERROR: "acmod.c", line 79: Folder...

This is the code I see on the internet and I've modified a few things to really listen to the word heat very badly and lit You can help me...