Search in sources :

Example 1 with ListVoicesResponse

use of com.google.cloud.texttospeech.v1beta1.ListVoicesResponse in project java-docs-samples by GoogleCloudPlatform.

the class ListAllSupportedVoices method listAllSupportedVoices.

// [START tts_list_voices]
/**
 * Demonstrates using the Text to Speech client to list the client's supported voices.
 * @throws Exception on TextToSpeechClient Errors.
 */
public static void listAllSupportedVoices() throws Exception {
    // Instantiates a client
    try (TextToSpeechClient textToSpeechClient = TextToSpeechClient.create()) {
        // Builds the text to speech list voices request
        ListVoicesRequest request = ListVoicesRequest.getDefaultInstance();
        // Performs the list voices request
        ListVoicesResponse response = textToSpeechClient.listVoices(request);
        List<Voice> voices = response.getVoicesList();
        for (Voice voice : voices) {
            // Display the voice's name. Example: tpc-vocoded
            System.out.format("Name: %s\n", voice.getName());
            // Display the supported language codes for this voice. Example: "en-us"
            List<ByteString> languageCodes = voice.getLanguageCodesList().asByteStringList();
            for (ByteString languageCode : languageCodes) {
                System.out.format("Supported Language: %s\n", languageCode.toStringUtf8());
            }
            // Display the SSML Voice Gender
            System.out.format("SSML Voice Gender: %s\n", voice.getSsmlGender());
            // Display the natural sample rate hertz for this voice. Example: 24000
            System.out.format("Natural Sample Rate Hertz: %s\n\n", voice.getNaturalSampleRateHertz());
        }
    }
}
Also used : ListVoicesResponse(com.google.cloud.texttospeech.v1beta1.ListVoicesResponse) ByteString(com.google.protobuf.ByteString) TextToSpeechClient(com.google.cloud.texttospeech.v1beta1.TextToSpeechClient) Voice(com.google.cloud.texttospeech.v1beta1.Voice) ListVoicesRequest(com.google.cloud.texttospeech.v1beta1.ListVoicesRequest)

Aggregations

ListVoicesRequest (com.google.cloud.texttospeech.v1beta1.ListVoicesRequest)1 ListVoicesResponse (com.google.cloud.texttospeech.v1beta1.ListVoicesResponse)1 TextToSpeechClient (com.google.cloud.texttospeech.v1beta1.TextToSpeechClient)1 Voice (com.google.cloud.texttospeech.v1beta1.Voice)1 ByteString (com.google.protobuf.ByteString)1