Package com.sun.speech.freetts.en.us.cmu_us_kal

Examples of com.sun.speech.freetts.en.us.cmu_us_kal.KevinVoiceDirectory


  private static final Logger logger = LoggerFactory.getLogger(TTSServiceFreeTTS.class);
 
  private static final Map<String, Voice> voices = new HashMap<String, Voice>();
   
  public void activate() {
    for(Voice voice : new KevinVoiceDirectory().getVoices()) {
      voices.put(voice.getName(), voice);
    }
    for(Voice voice : new AlanVoiceDirectory().getVoices()) {
      voices.put(voice.getName(), voice);
    }
View Full Code Here

TOP

Related Classes of com.sun.speech.freetts.en.us.cmu_us_kal.KevinVoiceDirectory

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.