Search in sources :

Example 21 with TextToSpeechClient

use of com.google.cloud.texttospeech.v1.TextToSpeechClient in project java-texttospeech by googleapis.

the class SynthesizeTextBeta method synthesizeSsml.

// [END tts_synthesize_text_audio_profile_beta]
// [START tts_synthesize_ssml]
/**
 * Demonstrates using the Text to Speech client to synthesize text or ssml.
 *
 * <p>Note: ssml must be well-formed according to: (https://www.w3.org/TR/speech-synthesis/
 * Example: <speak>Hello there.</speak>
 *
 * @param ssml the ssml document to be synthesized. (e.g., "<?xml...")
 * @throws Exception on TextToSpeechClient Errors.
 */
public static void synthesizeSsml(String ssml) throws Exception {
    // Instantiates a client
    try (TextToSpeechClient textToSpeechClient = TextToSpeechClient.create()) {
        // Set the ssml input to be synthesized
        SynthesisInput input = SynthesisInput.newBuilder().setSsml(ssml).build();
        // Build the voice request
        VoiceSelectionParams voice = VoiceSelectionParams.newBuilder().setLanguageCode(// languageCode = "en_us"
        "en-US").setSsmlGender(// ssmlVoiceGender = SsmlVoiceGender.FEMALE
        SsmlVoiceGender.FEMALE).build();
        // Select the type of audio file you want returned
        AudioConfig audioConfig = AudioConfig.newBuilder().setAudioEncoding(// MP3 audio.
        AudioEncoding.MP3).build();
        // Perform the text-to-speech request
        SynthesizeSpeechResponse response = textToSpeechClient.synthesizeSpeech(input, voice, audioConfig);
        // Get the audio contents from the response
        ByteString audioContents = response.getAudioContent();
        // Write the response to the output file.
        try (OutputStream out = new FileOutputStream("output.mp3")) {
            out.write(audioContents.toByteArray());
            System.out.println("Audio content written to file \"output.mp3\"");
        }
    }
}
Also used : ByteString(com.google.protobuf.ByteString) SynthesizeSpeechResponse(com.google.cloud.texttospeech.v1beta1.SynthesizeSpeechResponse) OutputStream(java.io.OutputStream) FileOutputStream(java.io.FileOutputStream) FileOutputStream(java.io.FileOutputStream) AudioConfig(com.google.cloud.texttospeech.v1beta1.AudioConfig) SynthesisInput(com.google.cloud.texttospeech.v1beta1.SynthesisInput) TextToSpeechClient(com.google.cloud.texttospeech.v1beta1.TextToSpeechClient) VoiceSelectionParams(com.google.cloud.texttospeech.v1beta1.VoiceSelectionParams)

Example 22 with TextToSpeechClient

use of com.google.cloud.texttospeech.v1.TextToSpeechClient in project java-texttospeech by googleapis.

the class ITSystemTest method synthesizeSpeechTest.

@Test
public void synthesizeSpeechTest() throws IOException {
    try (TextToSpeechClient textToSpeechClient = TextToSpeechClient.create()) {
        SynthesisInput input = SynthesisInput.newBuilder().setText("Hello, World!").build();
        VoiceSelectionParams voice = VoiceSelectionParams.newBuilder().setLanguageCode("en-US").setSsmlGender(SsmlVoiceGender.NEUTRAL).build();
        AudioConfig audioConfig = AudioConfig.newBuilder().setAudioEncoding(AudioEncoding.MP3).build();
        SynthesizeSpeechResponse response = textToSpeechClient.synthesizeSpeech(input, voice, audioConfig);
        ByteString audioContents = response.getAudioContent();
        assertTrue(!audioContents.isEmpty());
    }
}
Also used : ByteString(com.google.protobuf.ByteString) SynthesizeSpeechResponse(com.google.cloud.texttospeech.v1.SynthesizeSpeechResponse) AudioConfig(com.google.cloud.texttospeech.v1.AudioConfig) SynthesisInput(com.google.cloud.texttospeech.v1.SynthesisInput) TextToSpeechClient(com.google.cloud.texttospeech.v1.TextToSpeechClient) VoiceSelectionParams(com.google.cloud.texttospeech.v1.VoiceSelectionParams) Test(org.junit.Test)

Example 23 with TextToSpeechClient

use of com.google.cloud.texttospeech.v1.TextToSpeechClient in project java-texttospeech by googleapis.

the class ITSystemTest method listVoicesTest.

@Test
public void listVoicesTest() throws IOException {
    try (TextToSpeechClient textToSpeechClient = TextToSpeechClient.create()) {
        ListVoicesRequest request = ListVoicesRequest.getDefaultInstance();
        ListVoicesResponse response = textToSpeechClient.listVoices(request);
        List<Voice> voices = response.getVoicesList();
        assertTrue(!voices.isEmpty());
    }
}
Also used : ListVoicesResponse(com.google.cloud.texttospeech.v1.ListVoicesResponse) TextToSpeechClient(com.google.cloud.texttospeech.v1.TextToSpeechClient) Voice(com.google.cloud.texttospeech.v1.Voice) ListVoicesRequest(com.google.cloud.texttospeech.v1.ListVoicesRequest) Test(org.junit.Test)

Example 24 with TextToSpeechClient

use of com.google.cloud.texttospeech.v1.TextToSpeechClient in project java-texttospeech by googleapis.

the class ITSystemTest method synthesizeSpeechTest.

@Test
public void synthesizeSpeechTest() throws IOException {
    try (TextToSpeechClient textToSpeechClient = TextToSpeechClient.create()) {
        SynthesisInput input = SynthesisInput.newBuilder().setText("Hello, World!").build();
        VoiceSelectionParams voice = VoiceSelectionParams.newBuilder().setLanguageCode("en-US").setSsmlGender(SsmlVoiceGender.NEUTRAL).build();
        AudioConfig audioConfig = AudioConfig.newBuilder().setAudioEncoding(AudioEncoding.MP3).build();
        SynthesizeSpeechResponse response = textToSpeechClient.synthesizeSpeech(input, voice, audioConfig);
        ByteString audioContents = response.getAudioContent();
        assertTrue(!audioContents.isEmpty());
    }
}
Also used : ByteString(com.google.protobuf.ByteString) SynthesizeSpeechResponse(com.google.cloud.texttospeech.v1beta1.SynthesizeSpeechResponse) AudioConfig(com.google.cloud.texttospeech.v1beta1.AudioConfig) SynthesisInput(com.google.cloud.texttospeech.v1beta1.SynthesisInput) TextToSpeechClient(com.google.cloud.texttospeech.v1beta1.TextToSpeechClient) VoiceSelectionParams(com.google.cloud.texttospeech.v1beta1.VoiceSelectionParams) Test(org.junit.Test)

Example 25 with TextToSpeechClient

use of com.google.cloud.texttospeech.v1.TextToSpeechClient in project java-texttospeech by googleapis.

the class ITSystemTest method listVoicesTest.

@Test
public void listVoicesTest() throws IOException {
    try (TextToSpeechClient textToSpeechClient = TextToSpeechClient.create()) {
        ListVoicesRequest request = ListVoicesRequest.getDefaultInstance();
        ListVoicesResponse response = textToSpeechClient.listVoices(request);
        List<Voice> voices = response.getVoicesList();
        assertTrue(!voices.isEmpty());
    }
}
Also used : ListVoicesResponse(com.google.cloud.texttospeech.v1beta1.ListVoicesResponse) TextToSpeechClient(com.google.cloud.texttospeech.v1beta1.TextToSpeechClient) Voice(com.google.cloud.texttospeech.v1beta1.Voice) ListVoicesRequest(com.google.cloud.texttospeech.v1beta1.ListVoicesRequest) Test(org.junit.Test)

Aggregations

ByteString (com.google.protobuf.ByteString)26 FileOutputStream (java.io.FileOutputStream)20 OutputStream (java.io.OutputStream)20 TextToSpeechClient (com.google.cloud.texttospeech.v1.TextToSpeechClient)18 AudioConfig (com.google.cloud.texttospeech.v1.AudioConfig)15 SynthesisInput (com.google.cloud.texttospeech.v1.SynthesisInput)15 SynthesizeSpeechResponse (com.google.cloud.texttospeech.v1.SynthesizeSpeechResponse)15 VoiceSelectionParams (com.google.cloud.texttospeech.v1.VoiceSelectionParams)15 TextToSpeechClient (com.google.cloud.texttospeech.v1beta1.TextToSpeechClient)10 AudioConfig (com.google.cloud.texttospeech.v1beta1.AudioConfig)8 SynthesisInput (com.google.cloud.texttospeech.v1beta1.SynthesisInput)8 SynthesizeSpeechResponse (com.google.cloud.texttospeech.v1beta1.SynthesizeSpeechResponse)8 VoiceSelectionParams (com.google.cloud.texttospeech.v1beta1.VoiceSelectionParams)8 Test (org.junit.Test)4 ListVoicesRequest (com.google.cloud.texttospeech.v1.ListVoicesRequest)3 ListVoicesResponse (com.google.cloud.texttospeech.v1.ListVoicesResponse)3 Voice (com.google.cloud.texttospeech.v1.Voice)3 ListVoicesRequest (com.google.cloud.texttospeech.v1beta1.ListVoicesRequest)2 ListVoicesResponse (com.google.cloud.texttospeech.v1beta1.ListVoicesResponse)2 Voice (com.google.cloud.texttospeech.v1beta1.Voice)2