Search in sources :

Example 1 with Translation

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

the class CustomizationsIT method testGetWord.

/**
 * Test get word.
 */
@Test
public void testGetWord() {
    model = createVoiceModel();
    final List<Word> expected = instantiateWords();
    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());
}
Also used : Translation(com.ibm.watson.developer_cloud.text_to_speech.v1.model.Translation) Word(com.ibm.watson.developer_cloud.text_to_speech.v1.model.Word) AddWordsOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.AddWordsOptions) GetWordOptions(com.ibm.watson.developer_cloud.text_to_speech.v1.model.GetWordOptions) WatsonServiceTest(com.ibm.watson.developer_cloud.WatsonServiceTest) Test(org.junit.Test)

Example 2 with Translation

use of com.ibm.watson.text_to_speech.v1.model.Translation 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 3 with Translation

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

the class TextToSpeechTest method testGetVoiceWOptions.

// Test the getVoice operation with a valid options model parameter
@Test
public void testGetVoiceWOptions() throws Throwable {
    // Register a mock response
    String mockResponseBody = "{\"url\": \"url\", \"gender\": \"gender\", \"name\": \"name\", \"language\": \"language\", \"description\": \"description\", \"customizable\": true, \"supported_features\": {\"custom_pronunciation\": false, \"voice_transformation\": false}, \"customization\": {\"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 getVoicePath = "/v1/voices/ar-AR_OmarVoice";
    server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
    // Construct an instance of the GetVoiceOptions model
    GetVoiceOptions getVoiceOptionsModel = new GetVoiceOptions.Builder().voice("ar-AR_OmarVoice").customizationId("testString").build();
    // Invoke getVoice() with a valid options model and verify the result
    Response<Voice> response = textToSpeechService.getVoice(getVoiceOptionsModel).execute();
    assertNotNull(response);
    Voice 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, getVoicePath);
    // Verify query params
    Map<String, String> query = TestUtilities.parseQueryString(request);
    assertNotNull(query);
    assertEquals(query.get("customization_id"), "testString");
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) MockResponse(okhttp3.mockwebserver.MockResponse) Voice(com.ibm.watson.text_to_speech.v1.model.Voice) GetVoiceOptions(com.ibm.watson.text_to_speech.v1.model.GetVoiceOptions) Test(org.testng.annotations.Test)

Example 4 with Translation

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

the class TextToSpeechTest method testAddWordWOptions.

// Test the addWord operation with a valid options model parameter
@Test
public void testAddWordWOptions() throws Throwable {
    // Register a mock response
    String mockResponseBody = "";
    String addWordPath = "/v1/customizations/testString/words/testString";
    server.enqueue(new MockResponse().setResponseCode(200).setBody(mockResponseBody));
    // Construct an instance of the AddWordOptions model
    AddWordOptions addWordOptionsModel = new AddWordOptions.Builder().customizationId("testString").word("testString").translation("testString").partOfSpeech("Dosi").build();
    // Invoke addWord() with a valid options model and verify the result
    Response<Void> response = textToSpeechService.addWord(addWordOptionsModel).execute();
    assertNotNull(response);
    Void responseObj = response.getResult();
    assertNull(responseObj);
    // Verify the contents of the request sent to the mock server
    RecordedRequest request = server.takeRequest();
    assertNotNull(request);
    assertEquals(request.getMethod(), "PUT");
    // Verify request path
    String parsedPath = TestUtilities.parseReqPath(request);
    assertEquals(parsedPath, addWordPath);
    // 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) AddWordOptions(com.ibm.watson.text_to_speech.v1.model.AddWordOptions) Test(org.testng.annotations.Test)

Example 5 with Translation

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

the class TextToSpeechTest method testAddWordsWOptions.

// Test the addWords operation with a valid options model parameter
@Test
public void testAddWordsWOptions() throws Throwable {
    // Register a mock response
    String mockResponseBody = "";
    String addWordsPath = "/v1/customizations/testString/words";
    server.enqueue(new MockResponse().setResponseCode(200).setBody(mockResponseBody));
    // Construct an instance of the Word model
    Word wordModel = new Word.Builder().word("testString").translation("testString").partOfSpeech("Dosi").build();
    // Construct an instance of the AddWordsOptions model
    AddWordsOptions addWordsOptionsModel = new AddWordsOptions.Builder().customizationId("testString").words(new java.util.ArrayList<Word>(java.util.Arrays.asList(wordModel))).build();
    // Invoke addWords() with a valid options model and verify the result
    Response<Void> response = textToSpeechService.addWords(addWordsOptionsModel).execute();
    assertNotNull(response);
    Void responseObj = response.getResult();
    assertNull(responseObj);
    // Verify the contents of the request sent to the mock server
    RecordedRequest request = server.takeRequest();
    assertNotNull(request);
    assertEquals(request.getMethod(), "POST");
    // Verify request path
    String parsedPath = TestUtilities.parseReqPath(request);
    assertEquals(parsedPath, addWordsPath);
    // 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) Word(com.ibm.watson.text_to_speech.v1.model.Word) AddWordsOptions(com.ibm.watson.text_to_speech.v1.model.AddWordsOptions) Test(org.testng.annotations.Test)

Aggregations

RecordedRequest (okhttp3.mockwebserver.RecordedRequest)11 MockResponse (okhttp3.mockwebserver.MockResponse)10 Test (org.testng.annotations.Test)10 Translation (com.ibm.watson.developer_cloud.text_to_speech.v1.model.Translation)5 GetWordOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.GetWordOptions)4 Word (com.ibm.watson.developer_cloud.text_to_speech.v1.model.Word)4 AddWordsOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.AddWordsOptions)3 CustomModel (com.ibm.watson.text_to_speech.v1.model.CustomModel)3 Translation (com.ibm.watson.text_to_speech.v1.model.Translation)3 Word (com.ibm.watson.text_to_speech.v1.model.Word)3 File (java.io.File)3 InputStream (java.io.InputStream)3 Test (org.junit.Test)3 RequestBuilder (com.ibm.cloud.sdk.core.http.RequestBuilder)2 Authenticator (com.ibm.cloud.sdk.core.security.Authenticator)2 IamAuthenticator (com.ibm.cloud.sdk.core.security.IamAuthenticator)2 WatsonServiceTest (com.ibm.watson.developer_cloud.WatsonServiceTest)2 AddWordOptions (com.ibm.watson.text_to_speech.v1.model.AddWordOptions)2 AddWordsOptions (com.ibm.watson.text_to_speech.v1.model.AddWordsOptions)2 CreateCustomModelOptions (com.ibm.watson.text_to_speech.v1.model.CreateCustomModelOptions)2