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.
- (config) — Configure the Client client.
- config (Client::Configuration)
# 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.
- (config) — Configure the Client client.
- config (Client::Configuration)
#initialize
def initialize() { |config| ... } -> Client
Create a new SpeechTranslationService client object.
- (config) — Configure the SpeechTranslationService client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# 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).
- request (::Gapic::StreamInput, ::Enumerable<::Google::Cloud::MediaTranslation::V1beta1::StreamingTranslateSpeechRequest, ::Hash>) — An enumerable of Google::Cloud::MediaTranslation::V1beta1::StreamingTranslateSpeechRequest instances.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
- (response, operation) — Access the result along with the RPC operation
- response (::Enumerable<::Google::Cloud::MediaTranslation::V1beta1::StreamingTranslateSpeechResponse>)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
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