Class: Aws::Polly::Types::SynthesizeSpeechOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Polly::Types::SynthesizeSpeechOutput
- Includes:
- Structure
- Defined in:
- 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 '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 the `OutputFormat`, the `ContentType` returned is audio/mpeg.
-
If you request ‘ogg_vorbis` as the `OutputFormat`, the `ContentType` returned is audio/ogg.
-
If you request ‘pcm` as the `OutputFormat`, the `ContentType` returned is audio/pcm in a signed 16-bit, 1 channel (mono), little-endian format.
-
If you request ‘json` as the `OutputFormat`, the `ContentType` returned is application/x-json-stream.
962 963 964 965 966 967 968 |
# File '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 'lib/aws-sdk-polly/types.rb', line 962 class SynthesizeSpeechOutput < Struct.new( :audio_stream, :content_type, :request_characters) SENSITIVE = [] include Aws::Structure end |