Media Translation V1beta1 API - Class Google::Cloud::MediaTranslation::V1beta1::SpeechTranslationService::Client (v0.4.5)

Reference documentation and code samples for the Media Translation V1beta1 API class Google::Cloud::MediaTranslation::V1beta1::SpeechTranslationService::Client.

Client for the SpeechTranslationService service.

Provides translation from/to media types.

Inherits

  • Object

Methods

.configure

def self.configure() { |config| ... } -> Client::Configuration

Configure the SpeechTranslationService Client class.

See Configuration for a description of the configuration fields.

Yields
  • (config) — Configure the Client client.
Yield Parameter
Example
# Modify the configuration for all SpeechTranslationService clients
::Google::Cloud::MediaTranslation::V1beta1::SpeechTranslationService::Client.configure do |config|
  config.timeout = 10.0
end

#configure

def configure() { |config| ... } -> Client::Configuration

Configure the SpeechTranslationService Client instance.

The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure.

See Configuration for a description of the configuration fields.

Yields
  • (config) — Configure the Client client.
Yield Parameter

#initialize

def initialize() { |config| ... } -> Client

Create a new SpeechTranslationService client object.

Yields
  • (config) — Configure the SpeechTranslationService client.
Yield Parameter
Returns
  • (Client) — a new instance of Client
Example
# Create a client using the default configuration
client = ::Google::Cloud::MediaTranslation::V1beta1::SpeechTranslationService::Client.new

# Create a client using a custom configuration
client = ::Google::Cloud::MediaTranslation::V1beta1::SpeechTranslationService::Client.new do |config|
  config.timeout = 10.0
end

#streaming_translate_speech

def streaming_translate_speech(request, options = nil) { |response, operation| ... } -> ::Enumerable<::Google::Cloud::MediaTranslation::V1beta1::StreamingTranslateSpeechResponse>

Performs bidirectional streaming speech translation: receive results while sending audio. This method is only available via the gRPC API (not REST).

Parameters
Yields
  • (response, operation) — Access the result along with the RPC operation
Yield Parameters
Raises
  • (::Google::Cloud::Error) — if the RPC is aborted.
Example

Basic example

require "google/cloud/media_translation/v1beta1"

# Create a client object. The client can be reused for multiple calls.
client = Google::Cloud::MediaTranslation::V1beta1::SpeechTranslationService::Client.new

# Create an input stream
input = Gapic::StreamInput.new

# Call the streaming_translate_speech method to start streaming.
output = client.streaming_translate_speech input

# Send requests on the stream. For each request, pass in keyword
# arguments to set fields. Be sure to close the stream when done.
input << Google::Cloud::MediaTranslation::V1beta1::StreamingTranslateSpeechRequest.new
input << Google::Cloud::MediaTranslation::V1beta1::StreamingTranslateSpeechRequest.new
input.close

# Handle streamed responses. These may be interleaved with inputs.
# Each response is of type ::Google::Cloud::MediaTranslation::V1beta1::StreamingTranslateSpeechResponse.
output.each do |response|
  p response
end