Hi.
I have a pocketSphinx set up, started listening with…
[self.pocketsphinxController startListeningWithLanguageModelAtPath:self.languageModel.languageModelPath
dictionaryAtPath:self.languageModel.dictionaryPath
languageModelIsJSGF:NO];
…without any problem,
Then I suspend listening with…
[self.pocketsphinxController suspendRecognition];
Then I change the model file (it works well, as the OpenEarsEventsObserverDelegate callback method gets called) with…
[self.pocketsphinxController changeLanguageModelToFile:self.languageModel.languageModelPath
withDictionary:self.languageModel.dictionaryPath];
…and after that at a certain point I resume listening with…
[self.pocketsphinxController resumeRecognition];
…but no any recognition takes place anymore.
What am I doing wrong? Should this be working in a way like this?