Class: Aws::Polly::Types::SynthesizeSpeechOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Polly::Types::SynthesizeSpeechOutput
- Defined in:
- gems/aws-sdk-polly/lib/aws-sdk-polly/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#audio_stream ⇒ IO
Stream containing the synthesized speech.
-
#content_type ⇒ String
Specifies the type audio stream.
-
#request_characters ⇒ Integer
Number of characters synthesized.
Instance Attribute Details
#audio_stream ⇒ IO
Stream containing the synthesized speech.
962 963 964 965 966 967 968 |
# File 'gems/aws-sdk-polly/lib/aws-sdk-polly/types.rb', line 962 class SynthesizeSpeechOutput < Struct.new( :audio_stream, :content_type, :request_characters) SENSITIVE = [] include Aws::Structure end |
#content_type ⇒ String
Specifies the type audio stream. This should reflect the
OutputFormat
parameter in your request.
If you request
mp3
as theOutputFormat
, theContentType
returned is audio/mpeg.If you request
ogg_vorbis
as theOutputFormat
, theContentType
returned is audio/ogg.If you request
pcm
as theOutputFormat
, theContentType
returned is audio/pcm in a signed 16-bit, 1 channel (mono), little-endian format.If you request
json
as theOutputFormat
, theContentType
returned is application/x-json-stream.
962 963 964 965 966 967 968 |
# File 'gems/aws-sdk-polly/lib/aws-sdk-polly/types.rb', line 962 class SynthesizeSpeechOutput < Struct.new( :audio_stream, :content_type, :request_characters) SENSITIVE = [] include Aws::Structure end |
#request_characters ⇒ Integer
Number of characters synthesized.
962 963 964 965 966 967 968 |
# File 'gems/aws-sdk-polly/lib/aws-sdk-polly/types.rb', line 962 class SynthesizeSpeechOutput < Struct.new( :audio_stream, :content_type, :request_characters) SENSITIVE = [] include Aws::Structure end |