The J.A.R.V.I.S. Speech API is designed to be simple and efficient, using the speech engines created by Google to provide functionality for parts of the API. Essentially, it is an API written in Java, including a recognizer, synthesizer, and a microphone capture utility. The project uses Google services for the synthesizer and recognizer. While this requires an Internet connection, it provides a complete, modern, and fully functional speech API in Java.
I'm working on creating a basic Jarvis program for my CIS class and I have downloaded all of the Java Speech API src code into Eclipse under appropriate file names and the only thing I have changed in this code is the name of the packages. I'm getting a bunch or error messages within the recogniser package under the following folders:
FlacEncoder
error in the word 'net' , Says net cannot be resolved
errors in "StreamConfiguration" "FLACEncoder" and "FLACFileOutputStream" Eclipse is prompting me to either create a class/create an interface/change the file, among other suggestions
GSpeechDuplex
errors in "net" saying to remove unused import, "FLACFileWriter" create class/interface, "onResponse" prompting to add method
Recogniser
says to remove org.json because it's an unused import
says to create classes/interfaces for JSONObject and JSONArray
RecogniserChunked
also having issues with onResponse, prompting to create a method
packages: microphone, synthesizer, translator, and util are all in eclipse without any syntax error. Wondering if there is something missing that I did not download, or what I can do to fix these problems.
Thank you!
Hi,
I'm working on creating a basic Jarvis program for my CIS class and I have downloaded all of the Java Speech API src code into Eclipse under appropriate file names and the only thing I have changed in this code is the name of the packages. I'm getting a bunch or error messages within the recogniser package under the following folders:
FlacEncoder
GSpeechDuplex
Recogniser
RecogniserChunked
packages: microphone, synthesizer, translator, and util are all in eclipse without any syntax error. Wondering if there is something missing that I did not download, or what I can do to fix these problems. Thank you!