DarkmatterVale on master
Add dependency installer for li… Add pocketsphinx to dependency … Begin working on database update and 1 more (compare)
DarkmatterVale on master
Convert to using a system of fl… Added should_process method Fix bug in file runner and 1 more (compare)
DarkmatterVale on master
Include module customization do… (compare)
DarkmatterVale on master
Remove example run program Update file runner, remove extr… Merge pull request #4 from Dark… (compare)
DarkmatterVale on master
Numerous fixes and better speec… Add support for modules Merge pull request #3 from Dark… (compare)
public static void main(String args[]) {
try {
// Create a synthesizer for English
Synthesizer synth = Central.createSynthesizer(
new SynthesizerModeDesc(Locale.ENGLISH));
// Get it ready to speak
synth.allocate();
synth.resume();
// Speak the "Hello world" string
synth.speakPlainText("Hello, world!", null);
// Wait till speaking is done
synth.waitEngineState(Synthesizer.QUEUE_EMPTY);
// Clean up
synth.deallocate();
} catch (Exception e) {
e.printStackTrace();
}
}
synth.allocate();