NAME
Paws::Polly::SynthesizeSpeech - Arguments for method SynthesizeSpeech on Paws::Polly
DESCRIPTION
This class represents the parameters used for calling the method SynthesizeSpeech on the Amazon Polly service. Use the attributes of this class as arguments to method SynthesizeSpeech.
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to SynthesizeSpeech.
SYNOPSIS
my $polly = Paws->service('Polly');
# To synthesize speech
# Synthesizes plain text or SSML into a file of human-like speech.
my $SynthesizeSpeechOutput = $polly->SynthesizeSpeech(
'LexiconNames' => ['example'],
'OutputFormat' => 'mp3',
'SampleRate' => 8000,
'Text' => 'All Gaul is divided into three parts',
'TextType' => 'text',
'VoiceId' => 'Joanna'
);
# Results:
my $AudioStream = $SynthesizeSpeechOutput->AudioStream;
my $ContentType = $SynthesizeSpeechOutput->ContentType;
my $RequestCharacters = $SynthesizeSpeechOutput->RequestCharacters;
# Returns a L<Paws::Polly::SynthesizeSpeechOutput> object.
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/polly/SynthesizeSpeech
ATTRIBUTES
Engine => Str
Specifies the engine (standard
or neural
) for Amazon Polly to use when processing input text for speech synthesis. For information on Amazon Polly voices and which voices are available in standard-only, NTTS-only, and both standard and NTTS formats, see Available Voices (https://docs.aws.amazon.com/polly/latest/dg/voicelist.html).
NTTS-only voices
When using NTTS-only voices such as Kevin (en-US), this parameter is required and must be set to neural
. If the engine is not specified, or is set to standard
, this will result in an error.
Type: String
Valid Values: standard
| neural
Required: Yes
Standard voices
For standard voices, this is not required; the engine parameter defaults to standard
. If the engine is not specified, or is set to standard
and an NTTS-only voice is selected, this will result in an error.
Valid values are: "standard"
, "neural"
LanguageCode => Str
Optional language code for the Synthesize Speech request. This is only necessary if using a bilingual voice, such as Aditi, which can be used for either Indian English (en-IN) or Hindi (hi-IN).
If a bilingual voice is used and no language code is specified, Amazon Polly will use the default language of the bilingual voice. The default language for any voice is the one returned by the DescribeVoices (https://docs.aws.amazon.com/polly/latest/dg/API_DescribeVoices.html) operation for the LanguageCode
parameter. For example, if no language code is specified, Aditi will use Indian English rather than Hindi.
Valid values are: "arb"
, "cmn-CN"
, "cy-GB"
, "da-DK"
, "de-DE"
, "en-AU"
, "en-GB"
, "en-GB-WLS"
, "en-IN"
, "en-US"
, "es-ES"
, "es-MX"
, "es-US"
, "fr-CA"
, "fr-FR"
, "is-IS"
, "it-IT"
, "ja-JP"
, "hi-IN"
, "ko-KR"
, "nb-NO"
, "nl-NL"
, "pl-PL"
, "pt-BR"
, "pt-PT"
, "ro-RO"
, "ru-RU"
, "sv-SE"
, "tr-TR"
LexiconNames => ArrayRef[Str|Undef]
List of one or more pronunciation lexicon names you want the service to apply during synthesis. Lexicons are applied only if the language of the lexicon is the same as the language of the voice. For information about storing lexicons, see PutLexicon (https://docs.aws.amazon.com/polly/latest/dg/API_PutLexicon.html).
REQUIRED OutputFormat => Str
The format in which the returned output will be encoded. For audio stream, this will be mp3, ogg_vorbis, or pcm. For speech marks, this will be json.
When pcm is used, the content returned is audio/pcm in a signed 16-bit, 1 channel (mono), little-endian format.
Valid values are: "json"
, "mp3"
, "ogg_vorbis"
, "pcm"
SampleRate => Str
The audio frequency specified in Hz.
The valid values for mp3 and ogg_vorbis are "8000", "16000", "22050", and "24000". The default value for standard voices is "22050". The default value for neural voices is "24000".
Valid values for pcm are "8000" and "16000" The default value is "16000".
SpeechMarkTypes => ArrayRef[Str|Undef]
The type of speech marks returned for the input text.
REQUIRED Text => Str
Input text to synthesize. If you specify ssml
as the TextType
, follow the SSML format for the input text.
TextType => Str
Specifies whether the input text is plain text or SSML. The default value is plain text. For more information, see Using SSML (https://docs.aws.amazon.com/polly/latest/dg/ssml.html).
Valid values are: "ssml"
, "text"
REQUIRED VoiceId => Str
Voice ID to use for the synthesis. You can get a list of available voice IDs by calling the DescribeVoices (https://docs.aws.amazon.com/polly/latest/dg/API_DescribeVoices.html) operation.
Valid values are: "Aditi"
, "Amy"
, "Astrid"
, "Bianca"
, "Brian"
, "Camila"
, "Carla"
, "Carmen"
, "Celine"
, "Chantal"
, "Conchita"
, "Cristiano"
, "Dora"
, "Emma"
, "Enrique"
, "Ewa"
, "Filiz"
, "Gabrielle"
, "Geraint"
, "Giorgio"
, "Gwyneth"
, "Hans"
, "Ines"
, "Ivy"
, "Jacek"
, "Jan"
, "Joanna"
, "Joey"
, "Justin"
, "Karl"
, "Kendra"
, "Kevin"
, "Kimberly"
, "Lea"
, "Liv"
, "Lotte"
, "Lucia"
, "Lupe"
, "Mads"
, "Maja"
, "Marlene"
, "Mathieu"
, "Matthew"
, "Maxim"
, "Mia"
, "Miguel"
, "Mizuki"
, "Naja"
, "Nicole"
, "Olivia"
, "Penelope"
, "Raveena"
, "Ricardo"
, "Ruben"
, "Russell"
, "Salli"
, "Seoyeon"
, "Takumi"
, "Tatyana"
, "Vicki"
, "Vitoria"
, "Zeina"
, "Zhiyu"
SEE ALSO
This class forms part of Paws, documenting arguments for method SynthesizeSpeech in Paws::Polly
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues