Examples of VoiceManager


Examples of com.sun.speech.freetts.VoiceManager

    System.out.println();
    System.out.println("使用声音: " + voiceName);

    /* The VoiceManager manages all the voices for FreeTTS.
     */
    VoiceManager voiceManager = VoiceManager.getInstance();
    Voice helloVoice = voiceManager.getVoice(voiceName);

    if (helloVoice == null) {
      System.err.println( "找不到你所指定的声音. "  + voiceName + "请选择另一种.");
      System.exit(1);
    }
View Full Code Here

Examples of com.sun.speech.freetts.VoiceManager

     * Example of how to list all the known voices.
     */
    public static void listAllVoices() {
        System.out.println();
        System.out.println("All voices available:");
        VoiceManager voiceManager = VoiceManager.getInstance();
        Voice[] voices = voiceManager.getVoices();
        for (int i = 0; i < voices.length; i++) {
            System.out.println("    " + voices[i].getName()
                    + " (" + voices[i].getDomain() + " domain)");
        }
    }
View Full Code Here

Examples of com.sun.speech.freetts.VoiceManager

        System.out.println();
        System.out.println("Using voice: " + voiceName);

    /* The VoiceManager manages all the voices for FreeTTS.
    */
        VoiceManager voiceManager = VoiceManager.getInstance();
        Voice helloVoice = voiceManager.getVoice(voiceName);

        if (helloVoice == null) {
            System.err.println(
                    "Cannot find a voice named "
                            + voiceName + ".  Please specify a different voice.");
View Full Code Here

Examples of com.sun.speech.freetts.VoiceManager

    private void createVoice()
            throws RippleException {
        String voiceName = "kevin";

        try {
            VoiceManager voiceManager = VoiceManager.getInstance();
            singleVoice = voiceManager.getVoice(voiceName);
        } catch (Throwable t) {
            throw new RippleException(t);
        }

        if (null == singleVoice) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.