Search in sources :

Example 1 with CustomModel

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

the class CustomizationExample method main.

public static void main(String[] args) throws IOException {
    Authenticator authenticator = new IamAuthenticator("<iam_api_key>");
    TextToSpeech service = new TextToSpeech(authenticator);
    // create custom voice model.
    CreateCustomModelOptions createOptions = new CreateCustomModelOptions.Builder().name("my model").language("en-US").description("the model for testing").build();
    CustomModel customVoiceModel = service.createCustomModel(createOptions).execute().getResult();
    System.out.println(customVoiceModel);
    // list custom voice models for US English.
    ListCustomModelsOptions listOptions = new ListCustomModelsOptions.Builder().language("en-US").build();
    CustomModels customVoiceModels = service.listCustomModels(listOptions).execute().getResult();
    System.out.println(customVoiceModels);
    // update custom voice model.
    String newName = "my updated model";
    UpdateCustomModelOptions updateOptions = new UpdateCustomModelOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).name(newName).description("the updated model for testing").build();
    service.updateCustomModel(updateOptions).execute();
    // list custom voice models regardless of language.
    customVoiceModels = service.listCustomModels().execute().getResult();
    System.out.println(customVoiceModels);
    // create multiple custom word translations
    Word word1 = new Word.Builder().word("hodor").translation("hold the door").build();
    Word word2 = new Word.Builder().word("plz").translation("please").build();
    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 addWordOptions = new AddWordOptions.Builder().word("nat").translation("and that").customizationId(customVoiceModel.getCustomizationId()).build();
    service.addWord(addWordOptions).execute();
    // get custom word translations
    ListWordsOptions listWordsOptions = new ListWordsOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).build();
    Words customWords = service.listWords(listWordsOptions).execute().getResult();
    System.out.println(customWords);
    // get custom word translation
    GetWordOptions getOptions = new GetWordOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).word("hodor").build();
    Translation translation = service.getWord(getOptions).execute().getResult();
    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(HttpMediaType.AUDIO_WAV).customizationId(customVoiceModel.getCustomizationId()).build();
    InputStream in = service.synthesize(synthesizeOptions).execute().getResult();
    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.word()).build();
    service.deleteWord(deleteOptions1).execute();
    DeleteWordOptions deleteOptions2 = new DeleteWordOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).word(word2.word()).build();
    service.deleteWord(deleteOptions2).execute();
    // delete custom voice model
    DeleteCustomModelOptions deleteOptions = new DeleteCustomModelOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).build();
    service.deleteCustomModel(deleteOptions).execute();
    // list custom voice models regardless of language.
    customVoiceModels = service.listCustomModels().execute().getResult();
    System.out.println(customVoiceModels);
}
Also used : CreateCustomModelOptions(com.ibm.watson.text_to_speech.v1.model.CreateCustomModelOptions) Word(com.ibm.watson.text_to_speech.v1.model.Word) CustomModels(com.ibm.watson.text_to_speech.v1.model.CustomModels) IamAuthenticator(com.ibm.cloud.sdk.core.security.IamAuthenticator) AddWordOptions(com.ibm.watson.text_to_speech.v1.model.AddWordOptions) DeleteWordOptions(com.ibm.watson.text_to_speech.v1.model.DeleteWordOptions) ListCustomModelsOptions(com.ibm.watson.text_to_speech.v1.model.ListCustomModelsOptions) IamAuthenticator(com.ibm.cloud.sdk.core.security.IamAuthenticator) Authenticator(com.ibm.cloud.sdk.core.security.Authenticator) SynthesizeOptions(com.ibm.watson.text_to_speech.v1.model.SynthesizeOptions) Translation(com.ibm.watson.text_to_speech.v1.model.Translation) InputStream(java.io.InputStream) GetWordOptions(com.ibm.watson.text_to_speech.v1.model.GetWordOptions) CustomModel(com.ibm.watson.text_to_speech.v1.model.CustomModel) AddWordsOptions(com.ibm.watson.text_to_speech.v1.model.AddWordsOptions) Words(com.ibm.watson.text_to_speech.v1.model.Words) ListWordsOptions(com.ibm.watson.text_to_speech.v1.model.ListWordsOptions) UpdateCustomModelOptions(com.ibm.watson.text_to_speech.v1.model.UpdateCustomModelOptions) DeleteCustomModelOptions(com.ibm.watson.text_to_speech.v1.model.DeleteCustomModelOptions) File(java.io.File)

Example 2 with CustomModel

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

the class TextToSpeechIT method testListCustomPrompts.

/**
 * Test listCustomPrompts.
 */
@Test
public void testListCustomPrompts() {
    CreateCustomModelOptions createCustomModelOptions = new CreateCustomModelOptions.Builder().description("testdescription").name("testname").language(CreateCustomModelOptions.Language.EN_US).build();
    CustomModel customModel = service.createCustomModel(createCustomModelOptions).execute().getResult();
    customizationId = customModel.getCustomizationId();
    ListCustomPromptsOptions listCustomPromptsOptions = new ListCustomPromptsOptions.Builder().customizationId(customizationId).build();
    Prompts prompts = service.listCustomPrompts(listCustomPromptsOptions).execute().getResult();
    assertNotNull(prompts.getPrompts());
    DeleteCustomModelOptions deleteCustomModelOptions = new DeleteCustomModelOptions.Builder().customizationId(customizationId).build();
    service.deleteCustomModel(deleteCustomModelOptions).execute().getResult();
}
Also used : ListCustomPromptsOptions(com.ibm.watson.text_to_speech.v1.model.ListCustomPromptsOptions) CreateCustomModelOptions(com.ibm.watson.text_to_speech.v1.model.CreateCustomModelOptions) Prompts(com.ibm.watson.text_to_speech.v1.model.Prompts) DeleteCustomModelOptions(com.ibm.watson.text_to_speech.v1.model.DeleteCustomModelOptions) CustomModel(com.ibm.watson.text_to_speech.v1.model.CustomModel) WatsonServiceTest(com.ibm.watson.common.WatsonServiceTest) Test(org.junit.Test)

Example 3 with CustomModel

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

the class TextToSpeechIT method testGetCustomPrompts.

/**
 * Test getCustomPrompts.
 */
@Test
public void testGetCustomPrompts() {
    try {
        CreateCustomModelOptions createCustomModelOptions = new CreateCustomModelOptions.Builder().description("testdescription").name("testname").language(CreateCustomModelOptions.Language.EN_US).build();
        CustomModel customModel = service.createCustomModel(createCustomModelOptions).execute().getResult();
        customizationId = customModel.getCustomizationId();
        PromptMetadata promptMetadata = new PromptMetadata.Builder().promptText("promptText").build();
        File file = new File(RESOURCE + "numbers.wav");
        AddCustomPromptOptions addCustomPromptOptions = new AddCustomPromptOptions.Builder().customizationId(customizationId).promptId("testId").metadata(promptMetadata).file(file).build();
        Prompt prompt = service.addCustomPrompt(addCustomPromptOptions).execute().getResult();
        assertNotNull(prompt.getStatus());
        GetCustomPromptOptions getCustomPromptOptions = new GetCustomPromptOptions.Builder().customizationId(customizationId).promptId("testId").build();
        Prompt prompt1 = service.getCustomPrompt(getCustomPromptOptions).execute().getResult();
        assertNotNull(prompt1.getStatus());
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        DeleteCustomModelOptions deleteCustomModelOptions = new DeleteCustomModelOptions.Builder().customizationId(customizationId).build();
        service.deleteCustomModel(deleteCustomModelOptions).execute().getResult();
    }
}
Also used : CreateCustomModelOptions(com.ibm.watson.text_to_speech.v1.model.CreateCustomModelOptions) AddCustomPromptOptions(com.ibm.watson.text_to_speech.v1.model.AddCustomPromptOptions) GetCustomPromptOptions(com.ibm.watson.text_to_speech.v1.model.GetCustomPromptOptions) PromptMetadata(com.ibm.watson.text_to_speech.v1.model.PromptMetadata) Prompt(com.ibm.watson.text_to_speech.v1.model.Prompt) DeleteCustomModelOptions(com.ibm.watson.text_to_speech.v1.model.DeleteCustomModelOptions) File(java.io.File) CustomModel(com.ibm.watson.text_to_speech.v1.model.CustomModel) UnsupportedAudioFileException(javax.sound.sampled.UnsupportedAudioFileException) IOException(java.io.IOException) WatsonServiceTest(com.ibm.watson.common.WatsonServiceTest) Test(org.junit.Test)

Example 4 with CustomModel

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

the class TextToSpeech method getCustomModel.

/**
 * Get a custom model.
 *
 * <p>Gets all information about a specified custom model. In addition to metadata such as the
 * name and description of the custom model, the output includes the words and their translations
 * that are defined for the model, as well as any prompts that are defined for the model. To see
 * just the metadata for a model, use the [List custom models](#listcustommodels) method.
 *
 * <p>**See also:** [Querying a custom
 * model](https://cloud.ibm.com/docs/text-to-speech?topic=text-to-speech-customModels#cuModelsQuery).
 *
 * @param getCustomModelOptions the {@link GetCustomModelOptions} containing the options for the
 *     call
 * @return a {@link ServiceCall} with a result of type {@link CustomModel}
 */
public ServiceCall<CustomModel> getCustomModel(GetCustomModelOptions getCustomModelOptions) {
    com.ibm.cloud.sdk.core.util.Validator.notNull(getCustomModelOptions, "getCustomModelOptions cannot be null");
    Map<String, String> pathParamsMap = new HashMap<String, String>();
    pathParamsMap.put("customization_id", getCustomModelOptions.customizationId());
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.resolveRequestUrl(getServiceUrl(), "/v1/customizations/{customization_id}", pathParamsMap));
    Map<String, String> sdkHeaders = SdkCommon.getSdkHeaders("text_to_speech", "v1", "getCustomModel");
    for (Entry<String, String> header : sdkHeaders.entrySet()) {
        builder.header(header.getKey(), header.getValue());
    }
    builder.header("Accept", "application/json");
    ResponseConverter<CustomModel> responseConverter = ResponseConverterUtils.getValue(new com.google.gson.reflect.TypeToken<CustomModel>() {
    }.getType());
    return createServiceCall(builder.build(), responseConverter);
}
Also used : RequestBuilder(com.ibm.cloud.sdk.core.http.RequestBuilder) HashMap(java.util.HashMap) CustomModel(com.ibm.watson.text_to_speech.v1.model.CustomModel)

Example 5 with CustomModel

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

the class TextToSpeechTest method testGetCustomModelWOptions.

// Test the getCustomModel operation with a valid options model parameter
@Test
public void testGetCustomModelWOptions() throws Throwable {
    // Register a mock response
    String mockResponseBody = "{\"customization_id\": \"customizationId\", \"name\": \"name\", \"language\": \"language\", \"owner\": \"owner\", \"created\": \"created\", \"last_modified\": \"lastModified\", \"description\": \"description\", \"words\": [{\"word\": \"word\", \"translation\": \"translation\", \"part_of_speech\": \"Dosi\"}], \"prompts\": [{\"prompt\": \"prompt\", \"prompt_id\": \"promptId\", \"status\": \"status\", \"error\": \"error\", \"speaker_id\": \"speakerId\"}]}";
    String getCustomModelPath = "/v1/customizations/testString";
    server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
    // Construct an instance of the GetCustomModelOptions model
    GetCustomModelOptions getCustomModelOptionsModel = new GetCustomModelOptions.Builder().customizationId("testString").build();
    // Invoke getCustomModel() with a valid options model and verify the result
    Response<CustomModel> response = textToSpeechService.getCustomModel(getCustomModelOptionsModel).execute();
    assertNotNull(response);
    CustomModel responseObj = response.getResult();
    assertNotNull(responseObj);
    // Verify the contents of the request sent to the mock server
    RecordedRequest request = server.takeRequest();
    assertNotNull(request);
    assertEquals(request.getMethod(), "GET");
    // Verify request path
    String parsedPath = TestUtilities.parseReqPath(request);
    assertEquals(parsedPath, getCustomModelPath);
    // Verify that there is no query string
    Map<String, String> query = TestUtilities.parseQueryString(request);
    assertNull(query);
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) MockResponse(okhttp3.mockwebserver.MockResponse) GetCustomModelOptions(com.ibm.watson.text_to_speech.v1.model.GetCustomModelOptions) CustomModel(com.ibm.watson.text_to_speech.v1.model.CustomModel) Test(org.testng.annotations.Test)

Aggregations

CustomModel (com.ibm.watson.text_to_speech.v1.model.CustomModel)9 CreateCustomModelOptions (com.ibm.watson.text_to_speech.v1.model.CreateCustomModelOptions)6 DeleteCustomModelOptions (com.ibm.watson.text_to_speech.v1.model.DeleteCustomModelOptions)5 WatsonServiceTest (com.ibm.watson.common.WatsonServiceTest)4 File (java.io.File)4 Test (org.junit.Test)4 AddCustomPromptOptions (com.ibm.watson.text_to_speech.v1.model.AddCustomPromptOptions)3 Prompt (com.ibm.watson.text_to_speech.v1.model.Prompt)3 PromptMetadata (com.ibm.watson.text_to_speech.v1.model.PromptMetadata)3 IOException (java.io.IOException)3 UnsupportedAudioFileException (javax.sound.sampled.UnsupportedAudioFileException)3 RequestBuilder (com.ibm.cloud.sdk.core.http.RequestBuilder)2 MockResponse (okhttp3.mockwebserver.MockResponse)2 RecordedRequest (okhttp3.mockwebserver.RecordedRequest)2 Test (org.testng.annotations.Test)2 JsonObject (com.google.gson.JsonObject)1 Authenticator (com.ibm.cloud.sdk.core.security.Authenticator)1 IamAuthenticator (com.ibm.cloud.sdk.core.security.IamAuthenticator)1 AddWordOptions (com.ibm.watson.text_to_speech.v1.model.AddWordOptions)1 AddWordsOptions (com.ibm.watson.text_to_speech.v1.model.AddWordsOptions)1