use of com.ibm.watson.text_to_speech.v1.model.GetWordOptions in project java-sdk by watson-developer-cloud.
the class TextToSpeech method getWord.
/**
* Get a custom word.
*
* <p>Gets the translation for a single word from the specified custom model. The output shows the
* translation as it is defined in the model. You must use credentials for the instance of the
* service that owns a model to list its words.
*
* <p>**See also:** [Querying a single word from a custom
* model](https://cloud.ibm.com/docs/text-to-speech?topic=text-to-speech-customWords#cuWordQueryModel).
*
* @param getWordOptions the {@link GetWordOptions} containing the options for the call
* @return a {@link ServiceCall} with a result of type {@link Translation}
*/
public ServiceCall<Translation> getWord(GetWordOptions getWordOptions) {
com.ibm.cloud.sdk.core.util.Validator.notNull(getWordOptions, "getWordOptions cannot be null");
Map<String, String> pathParamsMap = new HashMap<String, String>();
pathParamsMap.put("customization_id", getWordOptions.customizationId());
pathParamsMap.put("word", getWordOptions.word());
RequestBuilder builder = RequestBuilder.get(RequestBuilder.resolveRequestUrl(getServiceUrl(), "/v1/customizations/{customization_id}/words/{word}", pathParamsMap));
Map<String, String> sdkHeaders = SdkCommon.getSdkHeaders("text_to_speech", "v1", "getWord");
for (Entry<String, String> header : sdkHeaders.entrySet()) {
builder.header(header.getKey(), header.getValue());
}
builder.header("Accept", "application/json");
ResponseConverter<Translation> responseConverter = ResponseConverterUtils.getValue(new com.google.gson.reflect.TypeToken<Translation>() {
}.getType());
return createServiceCall(builder.build(), responseConverter);
}
use of com.ibm.watson.text_to_speech.v1.model.GetWordOptions in project java-sdk by watson-developer-cloud.
the class CustomizationExample method main.
public static void main(String[] args) throws IOException {
TextToSpeech service = new TextToSpeech("<username>", "<password>");
// create custom voice model.
CreateVoiceModelOptions createOptions = new CreateVoiceModelOptions.Builder().name("my model").language("en-US").description("the model for testing").build();
VoiceModel customVoiceModel = service.createVoiceModel(createOptions).execute();
System.out.println(customVoiceModel);
// list custom voice models for US English.
ListVoiceModelsOptions listOptions = new ListVoiceModelsOptions.Builder().language("en-US").build();
VoiceModels customVoiceModels = service.listVoiceModels(listOptions);
System.out.println(customVoiceModels);
// update custom voice model.
UpdateVoiceModelOptions updateOptions = new UpdateVoiceModelOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).name(newName).description("the updated model for testing").build();
service.updateVoiceModel(updateOptions).execute();
// list custom voice models regardless of language.
customVoiceModels = service.listVoiceModels().execute();
System.out.println(customVoiceModels);
// create multiple custom word translations
Word word1 = new Word();
word1.setWord("hodor");
word1.setTranslation("hold the door");
Word word2 = new Word();
word2.setWord("plz");
word2.setTranslation("please");
List<Word> words = Arrays.asList(word1, word2);
AddWordsOptions addOptions = new AddWordsOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).words(words).build();
service.addWords(addOptions).execute();
// create a single custom word translation
AddWordOptions addOptions = new AddWordOptions.Builder().word("nat").translation("and that").customizationId(customVoiceModel.getCustomizationId()).build();
service.addWord(addOptions).execute();
// get custom word translations
ListWordsOptions listOptions = new ListWordsOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).build();
Words words = service.listWords(listOptions).execute();
System.out.println(words);
// get custom word translation
GetWordOptions getOptions = new GetWordOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).word("hodor").build();
Translation translation = service.getWord(getOptions).execute();
System.out.println(translation);
// synthesize with custom voice model
String text = "plz hodor";
SynthesizeOptions synthesizeOptions = new SynthesizeOptions.Builder().text(text).voice(SynthesizeOptions.Voice.EN_US_MICHAELVOICE).accept(SynthesizeOptions.Accept.AUDIO_WAV).customizationId(customVoiceModel.getCustomizationId()).build();
InputStream in = service.synthesize(synthesizeOptions).execute();
writeToFile(WaveUtils.reWriteWaveHeader(in), new File("output.wav"));
// delete custom words with object and string
DeleteWordOptions deleteOptions1 = new DeleteWordOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).word(word1.getWord()).build();
service.deleteWord(deleteOptions1).execute();
DeleteWordOptions deleteOptions2 = new DeleteWordOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).word(word2.getWord()).build();
service.deleteWord(deleteOptions2).execute();
// delete custom voice model
DeleteVoiceModelOptions deleteOptions = new DeleteVoiceModelOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).build();
service.deleteVoiceModel(deleteOptions).execute();
// list custom voice models regardless of language.
customVoiceModels = service.listVoiceModels().execute();
System.out.println(customVoiceModels);
}
use of com.ibm.watson.text_to_speech.v1.model.GetWordOptions in project java-sdk by watson-developer-cloud.
the class CustomizationsIT method testGetWordJapanese.
/**
* Test get word for Japanese.
*/
@Test
public void testGetWordJapanese() {
model = createVoiceModelJapanese();
final List<Word> expected = instantiateWordsJapanese();
AddWordsOptions addOptions = new AddWordsOptions.Builder().customizationId(model.getCustomizationId()).words(expected).build();
service.addWords(addOptions).execute();
GetWordOptions getOptions = new GetWordOptions.Builder().customizationId(model.getCustomizationId()).word(expected.get(0).getWord()).build();
final Translation translation = service.getWord(getOptions).execute();
assertEquals(expected.get(0).getTranslation(), translation.getTranslation());
assertEquals(expected.get(0).getPartOfSpeech(), translation.getPartOfSpeech());
}
use of com.ibm.watson.text_to_speech.v1.model.GetWordOptions in project java-sdk by watson-developer-cloud.
the class CustomizationsTest method testGetWord.
/**
* Test get word.
*
* @throws InterruptedException the interrupted exception
*/
@Test
public void testGetWord() throws InterruptedException {
final Word expected = instantiateWords().get(0);
server.enqueue(jsonResponse(ImmutableMap.of(TRANSLATION, expected.getTranslation())));
GetWordOptions getOptions = new GetWordOptions.Builder().customizationId(CUSTOMIZATION_ID).word(expected.getWord()).build();
final Translation result = service.getWord(getOptions).execute();
final RecordedRequest request = server.takeRequest();
assertEquals(String.format(WORDS_PATH, CUSTOMIZATION_ID) + "/" + expected.getWord(), request.getPath());
assertEquals("GET", request.getMethod());
assertEquals(expected.getTranslation(), result.getTranslation());
}
use of com.ibm.watson.text_to_speech.v1.model.GetWordOptions in project java-sdk by watson-developer-cloud.
the class SpeechToTextIT method testGetWord.
/**
* Test get word.
*/
public void testGetWord() {
GetWordOptions getOptions = new GetWordOptions.Builder().customizationId(customizationId).wordName("string").build();
Word result = service.getWord(getOptions).execute().getResult();
assertNotNull(result);
}
Aggregations