Skip navigation links

@Generated(value="by gapic-generator-java")

Package com.google.cloud.mediatranslation.v1beta1

The interfaces provided are listed below, along with usage samples.

See: Description

Package com.google.cloud.mediatranslation.v1beta1 Description

The interfaces provided are listed below, along with usage samples.

======================= SpeechTranslationServiceClient =======================

Service Description: Provides translation from/to media types.

Sample for SpeechTranslationServiceClient:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (SpeechTranslationServiceClient speechTranslationServiceClient =
     SpeechTranslationServiceClient.create()) {
   BidiStream<StreamingTranslateSpeechRequest, StreamingTranslateSpeechResponse> bidiStream =
       speechTranslationServiceClient.streamingTranslateSpeechCallable().call();
   StreamingTranslateSpeechRequest request =
       StreamingTranslateSpeechRequest.newBuilder().build();
   bidiStream.send(request);
   for (StreamingTranslateSpeechResponse response : bidiStream) {
     // Do something when a response is received.
   }
 }
 
Skip navigation links

Copyright © 2022 Google LLC. All rights reserved.