Package com.sun.speech.freetts.cart

Examples of com.sun.speech.freetts.cart.Phraser


  PronounceableFSM suffixFSM = new SuffixFSM
      (getResource("suffix_fsm.txt"));
       
  processors.add(new TokenToWords(numbersCart, prefixFSM, suffixFSM));
  processors.add(new PartOfSpeechTagger());
  processors.add(new Phraser(phrasingCart));
  processors.add(new Segmenter());
  processors.add(new PauseGenerator());
  processors.add(new Intonator(accentCart, toneCart));
  processors.add(getPostLexicalAnalyzer());
  processors.add(new Durator(durzCart, 150.0f, phoneDurations));
View Full Code Here

TOP

Related Classes of com.sun.speech.freetts.cart.Phraser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.