import java.util.*;
import java.util.zip.*;
import java.util.List;
import java.util.regex.*;
import java.util.concurrent.*;
import java.util.concurrent.atomic.*;
import java.util.concurrent.locks.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.text.*;
import javax.swing.table.*;
import java.io.*;
import java.net.*;
import java.lang.reflect.*;
import java.lang.ref.*;
import java.lang.management.*;
import java.security.*;
import java.security.spec.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import javax.imageio.*;
import java.math.*;
import com.sun.speech.freetts.Voice;
import com.sun.speech.freetts.VoiceManager;
class main {
public static void main(final String[] args) throws Exception {
//System.setProperty("freetts.voices", "de.dfki.lt.freetts.en.us.MbrolaVoiceDirectory");
// Most important part!
System.setProperty("mbrola.base", f2s(userDir("dev/mbrola")));
VoiceManager freettsVM = VoiceManager.getInstance();
for (String voice : ll("us1", "us2", "us3")) {
print("Trying voice " + voice);
String words = "Hello there! Now M BROLA and Free T T S work together!";
Voice freettsVoice;
// Simply change to MBROLA voice
freettsVoice = freettsVM.getVoice("mbrola_" + voice);
// Allocate your chosen voice
freettsVoice.allocate();
// Make her speak!
freettsVoice.speak(words);
freettsVoice.deallocate();
}
}
static String f2s(File f) {
return f == null ? null : f.getAbsolutePath();
}
static String f2s(java.nio.file.Path p) {
return p == null ? null : f2s(p.toFile());
}
static File userDir() {
return new File(userHome());
}
static File userDir(String path) {
return new File(userHome(), path);
}
static List ll(A... a) {
ArrayList l = new ArrayList(a.length);
for (A x : a) l.add(x);
return l;
}
static volatile StringBuffer local_log = new StringBuffer(); // not redirected
static volatile Appendable print_log = local_log; // might be redirected, e.g. to main bot
// in bytes - will cut to half that
static volatile int print_log_max = 1024*1024;
static volatile int local_log_max = 100*1024;
//static int print_maxLineLength = 0; // 0 = unset
static boolean print_silent; // total mute if set
static Object print_byThread_lock = new Object();
static volatile ThreadLocal