Class: Aws::MediaConvert::Types::HdrMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::HdrMetadata
- Defined in:
- gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb
Overview
HDR (High Dynamic Range) metadata extracted from the container, including mastering display color volume and content light level information. This metadata is present in HDR10 and similar HDR content.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content_light_level ⇒ Types::ContentLightLevel
Content light level information (CTA-861.3).
-
#mastering_display_color_volume ⇒ Types::MasteringDisplayColorVolume
Mastering display color volume metadata (SMPTE ST 2086).
Instance Attribute Details
#content_light_level ⇒ Types::ContentLightLevel
Content light level information (CTA-861.3). Describes the light level characteristics of the content.
7809 7810 7811 7812 7813 7814 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 7809 class HdrMetadata < Struct.new( :content_light_level, :mastering_display_color_volume) SENSITIVE = [] include Aws::Structure end |
#mastering_display_color_volume ⇒ Types::MasteringDisplayColorVolume
Mastering display color volume metadata (SMPTE ST 2086). Describes the color volume of the display used to master the content. Chromaticity coordinates are in units of 0.00002. Luminance values are in units of 0.0001 cd/m².
7809 7810 7811 7812 7813 7814 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 7809 class HdrMetadata < Struct.new( :content_light_level, :mastering_display_color_volume) SENSITIVE = [] include Aws::Structure end |