interface Hdr10Settings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.Hdr10Settings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#Hdr10Settings |
Java | software.amazon.awscdk.services.medialive.alpha.Hdr10Settings |
Python | aws_cdk.aws_medialive_alpha.Hdr10Settings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป Hdr10Settings |
HDR10 color space metadata for the input video.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
const hdr10Settings: medialive_alpha.Hdr10Settings = {
maxContentLightLevel: 123,
maxFrameAverageLightLevel: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | Maximum Content Light Level (MaxCLL) โ the maximum light level, in nits, of any single pixel in the stream. |
| max | number | Maximum Frame Average Light Level (MaxFALL) โ the maximum average light level, in nits, of any single frame in the stream. |
maxContentLightLevel?
Type:
number
(optional, default: not set)
Maximum Content Light Level (MaxCLL) โ the maximum light level, in nits, of any single pixel in the stream.
maxFrameAverageLightLevel?
Type:
number
(optional, default: not set)
Maximum Frame Average Light Level (MaxFALL) โ the maximum average light level, in nits, of any single frame in the stream.

.NET
Go
Java
Python
TypeScript (