Package cloud.google.com/go/mediatranslation/apiv1beta1

Package mediatranslation is an auto-generated package for the Media Translation API.

NOTE: This package is in beta. It is not stable, and may be subject to changes.

Use of Context

The ctx passed to NewClient is used for authentication requests and for creating the underlying connection, but is not used for subsequent calls. Individual methods on the client use the ctx given to them.

To close the open connection, use the Close() method.

For information about setting deadlines, reusing contexts, and more please visit https://pkg.go.dev/cloud.google.com/go.

Functions

func DefaultAuthScopes

func DefaultAuthScopes() []string

DefaultAuthScopes reports the default set of authentication scopes to use with this package.

SpeechTranslationCallOptions

type SpeechTranslationCallOptions struct {
	StreamingTranslateSpeech []gax.CallOption
}

SpeechTranslationCallOptions contains the retry settings for each method of SpeechTranslationClient.

SpeechTranslationClient

type SpeechTranslationClient struct {

	// The call options for this service.
	CallOptions *SpeechTranslationCallOptions
	// contains filtered or unexported fields
}

SpeechTranslationClient is a client for interacting with Media Translation API. Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.

Provides translation from/to media types.

func NewSpeechTranslationClient

func NewSpeechTranslationClient(ctx context.Context, opts ...option.ClientOption) (*SpeechTranslationClient, error)

NewSpeechTranslationClient creates a new speech translation service client based on gRPC. The returned client must be Closed when it is done being used to clean up its underlying connections.

Provides translation from/to media types.

Example

package main

import (
	mediatranslation "cloud.google.com/go/mediatranslation/apiv1beta1"
	"context"
)

func main() {
	ctx := context.Background()
	c, err := mediatranslation.NewSpeechTranslationClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	// TODO: Use client.
	_ = c
}

func (*SpeechTranslationClient) Close

func (c *SpeechTranslationClient) Close() error

Close closes the connection to the API service. The user should invoke this when the client is no longer required.

func (*SpeechTranslationClient) Connection

func (c *SpeechTranslationClient) Connection() *grpc.ClientConn

Connection returns a connection to the API service.

Deprecated.

func (*SpeechTranslationClient) StreamingTranslateSpeech

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

Example

package main

import (
	mediatranslation "cloud.google.com/go/mediatranslation/apiv1beta1"
	"context"
	mediatranslationpb "google.golang.org/genproto/googleapis/cloud/mediatranslation/v1beta1"
	"io"
)

func main() {
	ctx := context.Background()
	c, err := mediatranslation.NewSpeechTranslationClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()
	stream, err := c.StreamingTranslateSpeech(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	go func() {
		reqs := []*mediatranslationpb.StreamingTranslateSpeechRequest{
			// TODO: Create requests.
		}
		for _, req := range reqs {
			if err := stream.Send(req); err != nil {
				// TODO: Handle error.
			}
		}
		stream.CloseSend()
	}()
	for {
		resp, err := stream.Recv()
		if err == io.EOF {
			break
		}
		if err != nil {
			// TODO: handle error.
		}
		// TODO: Use resp.
		_ = resp
	}
}