Class: Aws::MediaLive::Types::AudioLanguageSelection
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::AudioLanguageSelection
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-medialive/types.rb
Overview
Audio Language Selection
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#language_code ⇒ String
Selects a specific three-letter language code from within an audio source.
-
#language_selection_policy ⇒ String
When set to “strict”, the transport stream demux strictly identifies audio streams by their language descriptor.
Instance Attribute Details
#language_code ⇒ String
Selects a specific three-letter language code from within an audio source.
535 536 537 538 539 540 |
# File 'lib/aws-sdk-medialive/types.rb', line 535 class AudioLanguageSelection < Struct.new( :language_code, :language_selection_policy) SENSITIVE = [] include Aws::Structure end |
#language_selection_policy ⇒ String
When set to “strict”, the transport stream demux strictly identifies audio streams by their language descriptor. If a PMT update occurs such that an audio stream matching the initially selected language is no longer present then mute will be encoded until the language returns. If “loose”, then on a PMT update the demux will choose another audio stream in the program with the same stream type if it can’t find one with the same language.
535 536 537 538 539 540 |
# File 'lib/aws-sdk-medialive/types.rb', line 535 class AudioLanguageSelection < Struct.new( :language_code, :language_selection_policy) SENSITIVE = [] include Aws::Structure end |