Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/java-speech-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-05Using UTF-8 for Google requestsHEADmasterAlexey 'Cluster' Avdyukhin
2013-10-06Bug-fix for volume collection.Skylion007
2013-09-26Updated package structure to conform to Java naming conventions.Skylion007
2013-09-19BugFixSkylion007
2013-09-19BugfixSkylion007
2013-09-15General Code Cleanup and bin size fix for getPitch() method.v1.10Skylion007
2013-09-15Re-implemented volume detection. Added fundamental frequency detection.Skylion007
Continued re-branding to J.A.R.V.I.S. Built framework for Voice Activity Detection algorithm. Created Microphone Analyzer class. Updated microphone class.
2013-09-14Fixed Formatting and GrammarSkylion007
2013-09-14Deprecated Old Constructors. Fixed FormatingSkylion007
Prepared the Recognizer class for the final transition from String Language Codes to Language enumerations.
2013-09-14Updated to J.A.R.V.I.S. release readmeSkylion007
Grammar Fix
2013-09-14Prepared Readme for Project Rebranding!Skylion007
WELCOME TO J.A.R.V.I.S.
2013-09-05Updated volume methods for ease of use and added getNumOfBytes method toSkylion007
microphone. Also added auto-detect "language" to recognizer.
2013-09-02Added getAllPossibleResponses methodSkylion007
2013-09-02Added volume calculation methods that are useful in Ambient ListeningSkylion007
algorithms and such.
2013-09-02Added files required for Eclipse compatibility. Skylion007
2013-09-02Fixed backwards compatability.Skylion007
2013-09-02Added commentsSkylion007
To whom it may concern.
2013-09-02Merge pull request #17 from Skylion007/patch-1Luke Kuza
Added region autodetection
2013-09-02Merge pull request #18 from Skylion007/patch-2Luke Kuza
Language support detection
2013-09-02Merge pull request #19 from Skylion007/patch-4Luke Kuza
Added All Supported Languages for Recognizer
2013-09-02Removed legacy codeSkylion007
2013-09-02Added All Supported Languages for RecognizerSkylion007
Modified how languages are dealt with within the recognizer class.
2013-09-02Language support detectionSkylion007
Ensures that odd languages such as Maori are not passed on to (and rejected by) Google's TTS.
2013-09-02Added region autodetectionSkylion007
Allows other attributes to be detected such accents & dialects. Eg. "Ye old store" would return English(old).
2013-09-01Merge pull request #16 from Skylion007/patch-1Luke Kuza
New constructor and getter methods for recognizer.
2013-09-01Merge pull request #14 from Skylion007/masterLuke Kuza
Added support for strings greater than 100 characters and multiple languages and accents from synthesiser. Fix #13 Language autodetection now added as well.
2013-08-31Fix for autodetection of languages without spaces such as Japanese.Skylion007
2013-08-31Parsing BugfixSkylion007
Fixed exceedingly rare parsing error which caused a Stack Overflow Exception if the only space or punctuation was located at index 0.
2013-08-26New constructor and getter methods for recognizer.Skylion007
Added additional constructors and getter methods.
2013-08-26Stability and parsing improvements Skylion007
Improved the parsing algorithm upon further experimentation with Google's formatting. Will update with accepted languages to remove fictions and untranslatable languages such as Wolof.
2013-08-25Significant Code Optimization!Skylion007
x2 or more speed improvement due to removal of unnecessary auto-detections while still allowing for someone to auto detect multiple language with a List<String>!
2013-08-25Code OptimizationSkylion007
2013-08-25Removed System.out.println() statement left over from testing + code cleanupSkylion007
2013-08-25Update Synthesiser.javaSkylion007
Bug-fix
2013-08-25Update CHANGELOG.markdownSkylion007
2013-08-25Code cleanup, language auto-detection (for text) and additional comments.Skylion007
Language auto-detection implemented. Changed constructor default to "auto" and allowed language to be set to "null" for continuity between the synthesiser and recognizer classes.
2013-08-15Merge pull request #15 from Skylion007/patch-1Luke Kuza
Code Cleanup
2013-08-12Code CleanupSkylion007
Removed unnecessary System.out.println from the method parseResponse().
2013-08-03Update Synthesiser.javaSkylion007
Updated comments for clarity
2013-08-01Merge pull request #12 from walane/masterLuke Kuza
Cleaning code.
2013-08-01Code cleanupSkylion007
Fixed compiler error caused during earlier decomposition clean up.
2013-08-01Update CHANGELOG.markdownSkylion007
2013-08-01Code CleanupSkylion007
Shifted long if statement into boolean. Removed a non-unicode character from isEndingPunctuation method. Who is going to use this program for Sanskrit anyway?
2013-08-01Added support for multiple languages and accents to the Synthesiser.Skylion007
Added for multiple languages, accent support plus corresponding methods and constructors.
2013-07-28Update CHANGELOG.markdownSkylion007
2013-07-28Added methods to allow for strings of lengths 100 and greater.Skylion007
Also added an option to send strings in the form of lists to Google and get a single response.
2013-07-28Added methods to allow for strings of lengths 100 and greater.Skylion007
Added separates a large string into smaller chunks so that Google will issue a response, sends those string fragments, and then combines the responses into one coherent input stream. Also added support to send List<String> to the synthesiser.
2013-07-27Update CHANGELOG.markdownSkylion007
2013-07-27Update CHANGELOG.markdownSkylion007
2013-07-27Added Methods to automatically parse strings to an acceptable length.Skylion007
Google does not respond to requests longer than 99 characters. Added methods to automatically parse into smaller parse, send them individually, and return a single input stream.