3
They are trying to implement a speech recognition server. But this last part has to be implemented through a C C++ Addon. Currently, I am saving the wav file to the server and passing the name to addon:
var obj1 = julius("nomeficheiro.wav","lista|palavras|possiveis");
word = obj1.recog;//resultado
cm = obj1.cm;//confiança no resultado
However my intention is: not to write files on the disk and do everything through memory. The speech recognizer accepts stdin as possible input. It is possible to pipe between C C++ addon and Nodejs?
I believe it is easier to use a socket... Many of the modules that communicate C++ with the Node I know use socket.
– João Marcelo Brito