use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.UpdateVoiceModelOptions 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.developer_cloud.text_to_speech.v1.model.UpdateVoiceModelOptions in project java-sdk by watson-developer-cloud.
the class CustomizationsIT method testUpdateVoiceModel.
/**
* Test update voice model with new name and ignored language change.
*/
@Test
public void testUpdateVoiceModel() {
final String newName = "new test";
final String newLanguage = "pt-BR";
model = createVoiceModel();
GetVoiceModelOptions getOptions = new GetVoiceModelOptions.Builder().customizationId(model.getCustomizationId()).build();
model = service.getVoiceModel(getOptions).execute();
UpdateVoiceModelOptions updateOptions = new UpdateVoiceModelOptions.Builder().customizationId(model.getCustomizationId()).name(newName).build();
service.updateVoiceModel(updateOptions).execute();
final VoiceModel model2 = service.getVoiceModel(getOptions).execute();
// comparison at service
assertModelsEqual(model, model2);
// value at service
assertEquals(model2.getLanguage(), MODEL_LANGUAGE);
}
use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.UpdateVoiceModelOptions in project java-sdk by watson-developer-cloud.
the class CustomizationsIT method testUpdateVoiceModelWords.
/**
* Test update voice model with new name and new custom translations.
*/
@Test
public void testUpdateVoiceModelWords() {
final String newName = "new test";
model = createVoiceModel();
GetVoiceModelOptions getOptions = new GetVoiceModelOptions.Builder().customizationId(model.getCustomizationId()).build();
model = service.getVoiceModel(getOptions).execute();
UpdateVoiceModelOptions updateOptions = new UpdateVoiceModelOptions.Builder().customizationId(model.getCustomizationId()).name(newName).words(instantiateWords()).build();
service.updateVoiceModel(updateOptions).execute();
final VoiceModel model2 = service.getVoiceModel(getOptions).execute();
assertModelsEqual(model, model2);
assertNotEquals(model.getWords(), model2.getWords());
}
use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.UpdateVoiceModelOptions in project java-sdk by watson-developer-cloud.
the class CustomizationsTest method testUpdateVoiceModelWords.
/**
* Test update voice model with new words.
*
* @throws InterruptedException the interrupted exception
*/
@Test
public void testUpdateVoiceModelWords() throws InterruptedException {
// Create the custom voice model.
server.enqueue(jsonResponse(voiceModelWords));
CreateVoiceModelOptions createOptions = new CreateVoiceModelOptions.Builder().name(MODEL_NAME).language(MODEL_LANGUAGE).description(MODEL_DESCRIPTION).build();
final VoiceModel result = service.createVoiceModel(createOptions).execute();
final RecordedRequest request = server.takeRequest();
assertEquals(CUSTOMIZATION_ID, result.getCustomizationId());
// Update the custom voice model with new words.
server.enqueue(new MockResponse().setResponseCode(201));
UpdateVoiceModelOptions updateOptions = new UpdateVoiceModelOptions.Builder().customizationId(CUSTOMIZATION_ID).name(MODEL_NAME).description(MODEL_DESCRIPTION).words(instantiateWords()).build();
service.updateVoiceModel(updateOptions).execute();
final RecordedRequest updateRequest = server.takeRequest();
assertEquals(String.format(VOICE_MODEL_PATH, CUSTOMIZATION_ID), updateRequest.getPath());
assertEquals("POST", request.getMethod());
// Compare expected with actual results.
server.enqueue(jsonResponse(voiceModelWords));
GetVoiceModelOptions getOptions = new GetVoiceModelOptions.Builder().customizationId(CUSTOMIZATION_ID).build();
final VoiceModel getResult = service.getVoiceModel(getOptions).execute();
final RecordedRequest getRequest = server.takeRequest();
assertEquals(String.format(VOICE_MODEL_PATH, CUSTOMIZATION_ID), getRequest.getPath());
assertEquals("GET", getRequest.getMethod());
assertEquals(voiceModelWords, getResult);
assertNotNull(voiceModelWords.getWords());
assertEquals(voiceModelWords.getWords(), getResult.getWords());
}
use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.UpdateVoiceModelOptions in project java-sdk by watson-developer-cloud.
the class CustomizationsTest method testUpdateVoiceModel.
/**
* Test update voice model.
*
* @throws InterruptedException the interrupted exception
*/
@Test
public void testUpdateVoiceModel() throws InterruptedException {
// Create the custom voice model.
server.enqueue(jsonResponse(voiceModel));
CreateVoiceModelOptions createOptions = new CreateVoiceModelOptions.Builder().name(MODEL_NAME).language(MODEL_LANGUAGE).description(MODEL_DESCRIPTION).build();
final VoiceModel result = service.createVoiceModel(createOptions).execute();
final RecordedRequest request = server.takeRequest();
assertEquals(CUSTOMIZATION_ID, result.getCustomizationId());
// Update the custom voice model.
server.enqueue(new MockResponse().setResponseCode(201));
UpdateVoiceModelOptions updateOptions = new UpdateVoiceModelOptions.Builder().customizationId(CUSTOMIZATION_ID).name(MODEL_NAME).description(MODEL_DESCRIPTION).build();
service.updateVoiceModel(updateOptions).execute();
final RecordedRequest updateRequest = server.takeRequest();
assertEquals(String.format(VOICE_MODEL_PATH, CUSTOMIZATION_ID), updateRequest.getPath());
assertEquals("POST", request.getMethod());
// Compare expected with actual results.
server.enqueue(jsonResponse(voiceModel));
GetVoiceModelOptions getOptions = new GetVoiceModelOptions.Builder().customizationId(CUSTOMIZATION_ID).build();
final VoiceModel getResult = service.getVoiceModel(getOptions).execute();
final RecordedRequest getRequest = server.takeRequest();
assertEquals(String.format(VOICE_MODEL_PATH, CUSTOMIZATION_ID), getRequest.getPath());
assertEquals("GET", getRequest.getMethod());
assertEquals(voiceModel, getResult);
assertNull(voiceModel.getWords());
assertEquals(voiceModel.getWords(), getResult.getWords());
}
Aggregations