Class: Aws::MediaConvert::Types::AudioSelectorGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::AudioSelectorGroup
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
Overview
Use audio selector groups to combine multiple sidecar audio inputs so that you can assign them to a single output audio tab. Note that, if you’re working with embedded audio, it’s simpler to assign multiple input tracks into a single audio selector rather than use an audio selector group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#audio_selector_names ⇒ Array<String>
Name of an Audio Selector within the same input to include in the group.
Instance Attribute Details
#audio_selector_names ⇒ Array<String>
Name of an Audio Selector within the same input to include in the group. Audio selector names are standardized, based on their order within the input (e.g., “Audio Selector 1”). The audio selector name parameter can be repeated to add any number of audio selectors to the group.
817 818 819 820 821 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 817 class AudioSelectorGroup < Struct.new( :audio_selector_names) SENSITIVE = [] include Aws::Structure end |