Questions tagged [cmusphinx]

An open-source toolkit for speech recognition. Includes speech recognizers Sphinx 2-4, PocketSphinx and a set of tools to supplement the recognizers.

CMU Sphinx is a group of speech recognition systems developed at Carnegie Mellon University.

Links:

682 questions
0
votes
1 answer

How To convert Simple Word to Sphinx4 WSJ like Dictionary Prounounciation?

I Have Just Gone Through to this Sphinx4 Speech Recognition,I had implemented it with the helloworld demo of sphinx4, Now What is Want is To create A dynamic dictionary For the text file given as input, Right now What i need to do is just create a…
BhavikKama
  • 8,566
  • 12
  • 94
  • 164
0
votes
1 answer

How to compile SpeechMe

I am trying to compile the SpeechMe project: http://projects.developer.nokia.com/speechme/wiki so that I can use the voice recognition in another project I want to make. I have followed all the instructions and downloaded the full sources of…
Gerharddc
  • 3,921
  • 8
  • 45
  • 83
0
votes
1 answer

Why am I missing the an4-1-1.match file in this speech recognition code?

I'm having problems in the decoding part of speech recognition. I followed the steps here. When I type: perl scripts_pl/decode/slave.pl, I get these errors: MODULE: DECODE Decoding using models previously trained Decoding 130 segments…
Boy Karton
  • 565
  • 3
  • 9
  • 13
0
votes
1 answer

How to include sphinx 4 in a java swing application

Can anyone tell me how i could include sphinx4 into my java swing project and also i am not able to find how to install gson and json.. I am using netbeans 7.1.2
Sai Sunder
  • 1,001
  • 1
  • 11
  • 16
0
votes
2 answers

Extracting phonemes using pocketsphinx

Is it possible to extract phonemes of the spoken word with the help of pocketsphinx ?
user782400
  • 1,617
  • 7
  • 30
  • 51
0
votes
3 answers

PocketSphinx compiling for android on Windows

I have to build and run the PocketSphinx sample for android My system for android development in Windows 7 + Eclipse I have installed NDK and Cygwin My Cygwin does not have gcc or g++ with it right now. Do you I need these compilers in cygwin ? I…
Ahmed
  • 14,503
  • 22
  • 92
  • 150
0
votes
1 answer

Errors when install pocketsphinx 0.7 on Windows 7 using Cygwin

I tried to install pocketsphinx version 0.7 on my Windows 7 using Cygwin (I have installed sphinxbase 0.7). I face some errors with "make" command. Please help me. Thank you very much !!! Makefile:316: recipe for target pocketsphinx_continuous.exe'…
-1
votes
1 answer

Is there CMU Sphinx local lmtool for java?

I want to convert words to its Arpabet translation. Something like: HELLO HH AH L OW But I want to do it programatically in java, sphinx offers a web tool here http://www.speech.cs.cmu.edu/tools/lmtool.html. I know I can request this tool in Java…
-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

unable to convert mp3 files to text format only support .wav files in java

I have created an application but it is only support .wav files to convert audio to text. It is not showing any answers when giving .mp3 files .. I am using sphinx for to convert audio files to text. My question is that why it is not converting to…
Manu
  • 5
  • 4
-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

Sphinx acoustic model on windows 8

I am creating an acoustic model on windows 8. I have downloaded the sphinxbase pocket shinx and sphinxtrain. Now when i try to execute "python ../sphinxtrain/scripts/sphinxtrain -t an4 setup" command, it says that "failed to find sphinxtrain…
Rania Saeed
  • 25
  • 1
  • 6
-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
votes
1 answer

pocketsphinx: return long utterance as single result

When analyzing a sound file approximately 1 minute long, pocketsphinx breaks the file into multiple results. Is there a way to change the code to return a single utterance? I'm using code based on continuous_test.py. #!/usr/bin/python from os…
Adam_G
  • 7,337
  • 20
  • 86
  • 148
-1
votes
1 answer

What will be the output of TranscriberDemo.java in Sphinx 4?

I am working on Sphinx 4, TranscriberDemo.java program. I have downloaded the alpha version from https://sourceforge.net/projects/cmusphinx/files/sphinx4/5prealpha/ and the following jar…