Как я могу хранить выходной голос к аудиофайлу в Freetts

StackOverflow https://stackoverflow.com/questions/4027853

  •  26-09-2019
  •  | 
  •  

Вопрос

Я пытаюсь использовать Freetts для простого приложения Java, но я сталкиваюсь с проблемой, может кто-нибудь сказать мне, как я могу сохранить выходной голос, который преобразуется из текста в речь в волновой файл в моей программе. Я хочу сделать это через код.

Это образец приложения HelloWorld, которое дано с образцом

/**
 * Copyright 2003 Sun Microsystems, Inc.
 * 
 * See the file "license.terms" for information on usage and
 * redistribution of this file, and for a DISCLAIMER OF ALL 
 * WARRANTIES.
 */
import com.sun.speech.freetts.FreeTTS;
import com.sun.speech.freetts.Voice;
import com.sun.speech.freetts.VoiceManager;
import com.sun.speech.freetts.audio.JavaClipAudioPlayer;

/**
 * Simple program to demonstrate the use of the FreeTTS speech
 * synthesizer.  This simple program shows how to use FreeTTS
 * without requiring the Java Speech API (JSAPI).
 */
public class FreeTTSHelloWorld {

    /**
     * Example of how to list all the known voices.
     */


    public static void main(String[] args) {

       // listAllVoices();

        FreeTTS freetts;

        String voiceName = "kevin16";

        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.");
            System.exit(1);
        }

        /* Allocates the resources for the voice.
         */
        helloVoice.allocate();

        /* Synthesize speech.
         */


        helloVoice.speak("Thank you for giving me a voice. "
                         + "I'm so glad to say hello to this world.");


        /* Clean up and leave.
         */
        helloVoice.deallocate();
        System.exit(0);
    }
}

Этот код работает нормально, я хочу сохранить вывод как аудиофайл на моем диске.

Спасибо Pranay

Это было полезно?

Решение

Я понял, как сделать это, вы должны просто использовать SingleFileAudioPlayer Передайте имя файла и тип файла, который вы хотите, чтобы пример объявления будет похоже:

audioPlayer = new SingleFileAudioPlayer("output",Type.WAVE);

Теперь вам нужно прикрепить SinglefileAudioplayer объект к вашему VoiceManager Объект: например,

helloVoice.setAudioPlayer(audioPlayer);

Теперь используйте:

hellovoice.speak("zyxss"); 

Это сохранит файл с тем, что там говорится. Не забудьте закрыть аудиоплазер, в противном случае файл не будет сохранен. Помещать audioPlayer.close(); до выхода.

Вот полный рабочий код, который будет давить файл в вашей каталоге C

    /**
     * Copyright 2003 Sun Microsystems, Inc.
     * 
     * See the file "license.terms" for information on usage and
     * redistribution of this file, and for a DISCLAIMER OF ALL 
     * WARRANTIES.
     */
    import com.sun.speech.freetts.FreeTTS;
    import com.sun.speech.freetts.Voice;
    import com.sun.speech.freetts.VoiceManager;
    import com.sun.speech.freetts.audio.AudioPlayer;
    import com.sun.speech.freetts.audio.SingleFileAudioPlayer;
    import javax.sound.sampled.AudioFileFormat.Type;

    /**
     * Simple program to demonstrate the use of the FreeTTS speech
     * synthesizer.  This simple program shows how to use FreeTTS
     * without requiring the Java Speech API (JSAPI).
     */
    public class FreeTTSHelloWorld {

        /**
         * Example of how to list all the known voices.
         */


        public static void main(String[] args) {

           // listAllVoices();

            FreeTTS freetts;
       AudioPlayer audioPlayer = null;
            String voiceName = "kevin16";

            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.");
                System.exit(1);
            }

            /* Allocates the resources for the voice.
             */
            helloVoice.allocate();

            /* Synthesize speech.
             */
//create a audioplayer to dump the output file
           audioPlayer = new SingleFileAudioPlayer("C://output",Type.WAVE);
    //attach the audioplayer 
           helloVoice.setAudioPlayer(audioPlayer);



            helloVoice.speak("Thank you for giving me a voice. "
                             + "I'm so glad to say hello to this world.");



            /* Clean up and leave.
             */
            helloVoice.deallocate();
//don't forget to close the audioplayer otherwise file will not be saved
            audioPlayer.close();
            System.exit(0);
        }
    }

Другие советы

Я никогда не использовал Freetts, но быстро раскрывает быстрое сканирование Javadocs Voice.setwavedumpfile (строка). Отказ Делает ли это то, что требуется?

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top