Skip to content

Latest commit

 

History

History
 
 

text-to-speech

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Text to Speech

Installation

Maven
<dependency>
	<groupId>com.ibm.watson.developer_cloud</groupId>
	<artifactId>text-to-speech</artifactId>
	<version>4.0.0</version>
</dependency>
Gradle
'com.ibm.watson.developer_cloud:text-to-speech:4.0.0'

Usage

Use the Text to Speech service to get the available voices to synthesize.

TextToSpeech service = new TextToSpeech();
service.setUsernameAndPassword("<username>", "<password>");

List<Voice> voices = service.getVoices().execute();
System.out.println(voices);