Class: Aws::MediaLive::Types::ColorCorrectionSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::ColorCorrectionSettings
- Defined in:
- gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb
Overview
Property of encoderSettings. Controls color conversion when you are using 3D LUT files to perform color conversion on video.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#global_color_corrections ⇒ Array<Types::ColorCorrection>
An array of colorCorrections that applies when you are using 3D LUT files to perform color conversion on video.
Instance Attribute Details
#global_color_corrections ⇒ Array<Types::ColorCorrection>
An array of colorCorrections that applies when you are using 3D LUT files to perform color conversion on video. Each colorCorrection contains one 3D LUT file (that defines the color mapping for converting an input color space to an output color space), and the input/output combination that this 3D LUT file applies to. MediaLive reads the color space in the input metadata, determines the color space that you have specified for the output, and finds and uses the LUT file that applies to this combination.
2119 2120 2121 2122 2123 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 2119 class ColorCorrectionSettings < Struct.new( :global_color_corrections) SENSITIVE = [] include Aws::Structure end |