Class SpeechSynthesisService
Inheritance
SpeechSynthesisService
Assembly: Glitch9.AIDevKit.Provider.AmazonAws.dll
Syntax
public sealed class SpeechSynthesisService : CrudServiceBase<AwsClient>, ICrudService
Constructors
|
Edit this page
View Source
SpeechSynthesisService(AwsClient)
Declaration
public SpeechSynthesisService(AwsClient client)
Parameters
Methods
|
Edit this page
View Source
GetTaskAsync(string, RequestOptions)
Declaration
public UniTask<SynthesisTaskWrapper> GetTaskAsync(string taskId, RequestOptions options = null)
Parameters
Returns
|
Edit this page
View Source
ListTasksAsync(SynthesisTaskQuery, RequestOptions)
Declaration
public UniTask<SynthesisTaskList> ListTasksAsync(SynthesisTaskQuery query = null, RequestOptions options = null)
Parameters
Returns
|
Edit this page
View Source
StartTaskAsync(StartSynthesisTaskRequest, RequestOptions)
Allows the creation of an asynchronous synthesis task,
by starting a new SpeechSynthesisTask.
This operation requires all the standard information needed for speech synthesis,
plus the name of an Amazon S3 bucket for the service to store the output of the synthesis task and
two optional parameters (OutputS3KeyPrefix and SnsTopicArn). Once the synthesis task is created,
this operation will return a SpeechSynthesisTask object, which will include an identifier of this task as well as the current status.
The SpeechSynthesisTask object is available for 72 hours after starting the asynchronous synthesis task.
Declaration
public UniTask<SynthesisTaskWrapper> StartTaskAsync(StartSynthesisTaskRequest request, RequestOptions options = null)
Parameters
Returns
|
Edit this page
View Source
SynthesizeAsync(SynthesizeSpeechRequest, RequestOptions)
Declaration
public UniTask<RESTResponse> SynthesizeAsync(SynthesizeSpeechRequest request, RequestOptions options = null)
Parameters
Returns
Implements
Extension Methods