Could you be a little more specific about this configuration problem?
I am hitting the same error and don't know how to fix it.
I changed the following lines because the files were not being found.
vk = [[VKController alloc] initWithType:VKDecoderTypePocketSphinx
configFile:[[NSBundle mainBundle]
pathForResource:@"pocketsphinx"
ofType:@"conf"]];
// inDirectory:@"model"]];
[vk setConfigString:[[NSBundle mainBundle] pathForResource:@"cmu07a"
ofType:@"dic"]
// inDirectory:@"model/lm/en_US"]
forKey:@"-dict"];
[vk setConfigString:[[NSBundle mainBundle] pathForResource:@"wsj0vp.
5000"
ofType:@"DMP"]
// inDirectory:@"model/lm/en_US"]
forKey:@"-lm"];
This helped get me past initialization and to a point where I could
try
to recognize spoken input, but I crashed with the following error:
INFO: feat.c(848): Initializing feature stream to type: '1s_c_d_dd',
ceplen=13, CMN='current', VARNORM='no', AGC='none'
INFO: cmn.c(142): mean[0]= 12.00, mean[1..12]= 0.0
ERROR: "acmod.c", line 83: Must specify -mdef or -hmm
Program received signal: “EXC_BAD_ACCESS”.
Xcode could not locate source file: pocketsphinx.c (line: 508)
Thanks for the help!
Larry