Search in sources :

Example 1 with VoiceModels

use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModels in project java-sdk by watson-developer-cloud.

the class TextToSpeech method listVoiceModels.

/**
 * Lists all available custom voice models for a language or for all languages.
 *
 * Lists metadata such as the name and description for the custom voice models that you own. Use the `language` query
 * parameter to list the voice models that you own for the specified language only. Omit the parameter to see all
 * voice models that you own for all languages. To see the words in addition to the metadata for a specific voice
 * model, use the `GET /v1/customizations/{customization_id}` method. You must use credentials for the instance of the
 * service that owns a model to list information about it. **Note:** This method is currently a beta release.
 *
 * @param listVoiceModelsOptions the {@link ListVoiceModelsOptions} containing the options for the call
 * @return a {@link ServiceCall} with a response type of {@link VoiceModels}
 */
public ServiceCall<VoiceModels> listVoiceModels(ListVoiceModelsOptions listVoiceModelsOptions) {
    String[] pathSegments = { "v1/customizations" };
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.constructHttpUrl(getEndPoint(), pathSegments));
    if (listVoiceModelsOptions != null) {
        if (listVoiceModelsOptions.language() != null) {
            builder.query("language", listVoiceModelsOptions.language());
        }
    }
    return createServiceCall(builder.build(), ResponseConverterUtils.getObject(VoiceModels.class));
}
Also used : RequestBuilder(com.ibm.watson.developer_cloud.http.RequestBuilder) VoiceModels(com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModels)

Example 2 with VoiceModels

use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModels in project java-sdk by watson-developer-cloud.

the class CustomizationsIT method testListModelsAfterCreate.

/**
 * Test list models after create.
 */
@Test
public void testListModelsAfterCreate() {
    model = createVoiceModel();
    ListVoiceModelsOptions listOptions = new ListVoiceModelsOptions.Builder().language(model.getLanguage()).build();
    final VoiceModels models = service.listVoiceModels(listOptions).execute();
    VoiceModel model2 = null;
    for (VoiceModel m : models.getCustomizations()) {
        if (m.getCustomizationId().equals(model.getCustomizationId())) {
            model2 = m;
            break;
        }
    }
    assertNotNull(model2);
    assertModelsEqual(model, model2);
}
Also used : VoiceModel(com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModel) ListVoiceModelsOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.ListVoiceModelsOptions) VoiceModels(com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModels) WatsonServiceTest(com.ibm.watson.developer_cloud.WatsonServiceTest) Test(org.junit.Test)

Example 3 with VoiceModels

use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModels 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);
}
Also used : Word(com.ibm.watson.developer_cloud.text_to_speech.v1.model.Word) UpdateVoiceModelOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.UpdateVoiceModelOptions) CreateVoiceModelOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.CreateVoiceModelOptions) VoiceModels(com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModels) AddWordOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.AddWordOptions) ListVoiceModelsOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.ListVoiceModelsOptions) DeleteWordOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.DeleteWordOptions) SynthesizeOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.SynthesizeOptions) Translation(com.ibm.watson.developer_cloud.text_to_speech.v1.model.Translation) DeleteVoiceModelOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.DeleteVoiceModelOptions) InputStream(java.io.InputStream) GetWordOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.GetWordOptions) VoiceModel(com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModel) AddWordsOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.AddWordsOptions) Words(com.ibm.watson.developer_cloud.text_to_speech.v1.model.Words) ListWordsOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.ListWordsOptions) File(java.io.File)

Example 4 with VoiceModels

use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModels in project java-sdk by watson-developer-cloud.

the class CustomizationsTest method testListVoiceModelsNull.

/**
 * Test list voice models for null language.
 *
 * @throws InterruptedException the interrupted exception
 */
@Test
public void testListVoiceModelsNull() throws InterruptedException {
    server.enqueue(jsonResponse(voiceModels));
    final VoiceModels result = service.listVoiceModels().execute();
    final RecordedRequest request = server.takeRequest();
    assertEquals(VOICE_MODELS_PATH, request.getPath());
    assertEquals("GET", request.getMethod());
    assertFalse(voiceModels.getCustomizations().isEmpty());
    assertEquals(voiceModels, result);
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) VoiceModels(com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModels) WatsonServiceUnitTest(com.ibm.watson.developer_cloud.WatsonServiceUnitTest) Test(org.junit.Test)

Example 5 with VoiceModels

use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModels in project java-sdk by watson-developer-cloud.

the class CustomizationsTest method testListVoiceModelsLanguage.

/**
 * Test list voice models for a language.
 *
 * @throws InterruptedException the interrupted exception
 */
@Test
public void testListVoiceModelsLanguage() throws InterruptedException {
    server.enqueue(jsonResponse(voiceModels));
    ListVoiceModelsOptions listOptions = new ListVoiceModelsOptions.Builder().language(MODEL_LANGUAGE).build();
    final VoiceModels result = service.listVoiceModels(listOptions).execute();
    final RecordedRequest request = server.takeRequest();
    assertEquals(VOICE_MODELS_PATH + "?language=" + MODEL_LANGUAGE, request.getPath());
    assertEquals("GET", request.getMethod());
    assertFalse(result.getCustomizations().isEmpty());
    assertEquals(voiceModels, result);
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) ListVoiceModelsOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.ListVoiceModelsOptions) VoiceModels(com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModels) WatsonServiceUnitTest(com.ibm.watson.developer_cloud.WatsonServiceUnitTest) Test(org.junit.Test)

Aggregations

VoiceModels (com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModels)5 ListVoiceModelsOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.ListVoiceModelsOptions)3 Test (org.junit.Test)3 WatsonServiceUnitTest (com.ibm.watson.developer_cloud.WatsonServiceUnitTest)2 VoiceModel (com.ibm.watson.developer_cloud.text_to_speech.v1.model.VoiceModel)2 RecordedRequest (okhttp3.mockwebserver.RecordedRequest)2 WatsonServiceTest (com.ibm.watson.developer_cloud.WatsonServiceTest)1 RequestBuilder (com.ibm.watson.developer_cloud.http.RequestBuilder)1 AddWordOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.AddWordOptions)1 AddWordsOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.AddWordsOptions)1 CreateVoiceModelOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.CreateVoiceModelOptions)1 DeleteVoiceModelOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.DeleteVoiceModelOptions)1 DeleteWordOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.DeleteWordOptions)1 GetWordOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.GetWordOptions)1 ListWordsOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.ListWordsOptions)1 SynthesizeOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.SynthesizeOptions)1 Translation (com.ibm.watson.developer_cloud.text_to_speech.v1.model.Translation)1 UpdateVoiceModelOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.UpdateVoiceModelOptions)1 Word (com.ibm.watson.developer_cloud.text_to_speech.v1.model.Word)1 Words (com.ibm.watson.developer_cloud.text_to_speech.v1.model.Words)1