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\"");
}
}
}
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());
}
}
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());
}
}
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());
}
}
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());
}
}
Aggregations