Package marytts

Examples of marytts.LocalMaryInterface


  private static MaryInterface marytts;
  private Voice defaultVoice;

  public void activate() {
    try {
      marytts = new LocalMaryInterface();
      Locale systemLocale = Locale.getDefault();
      if (marytts.getAvailableLocales().contains(systemLocale)) {
        defaultVoice = Voice.getDefaultVoice(systemLocale);
      }
      if (defaultVoice==null) {
View Full Code Here

TOP

Related Classes of marytts.LocalMaryInterface

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.