interface H265ColorSpaceSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.H265ColorSpaceSettingsProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.H265ColorSpaceSettingsProperty |
Python | aws_cdk.aws_medialive.CfnChannel.H265ColorSpaceSettingsProperty |
TypeScript | @aws-cdk/aws-medialive » CfnChannel » H265ColorSpaceSettingsProperty |
H265 Color Space Settings.
The parent of this entity is H265Settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive from '@aws-cdk/aws-medialive';
const h265ColorSpaceSettingsProperty: medialive.CfnChannel.H265ColorSpaceSettingsProperty = {
colorSpacePassthroughSettings: { },
dolbyVision81Settings: { },
hdr10Settings: {
maxCll: 123,
maxFall: 123,
},
rec601Settings: { },
rec709Settings: { },
};
Properties
| Name | Type | Description |
|---|---|---|
| color | IResolvable | Color | Passthrough applies no color space conversion to the output. |
| dolby | IResolvable | Dolby | CfnChannel.H265ColorSpaceSettingsProperty.DolbyVision81Settings. |
| hdr10 | IResolvable | Hdr10 | Settings to configure the handling of HDR10 color space. |
| rec601 | IResolvable | Rec601 | Settings to configure the handling of Rec601 color space. |
| rec709 | IResolvable | Rec709 | Settings to configure the handling of Rec709 color space. |
colorSpacePassthroughSettings?
Type:
IResolvable | Color
(optional)
Passthrough applies no color space conversion to the output.
dolbyVision81Settings?
Type:
IResolvable | Dolby
(optional)
CfnChannel.H265ColorSpaceSettingsProperty.DolbyVision81Settings.
hdr10Settings?
Type:
IResolvable | Hdr10
(optional)
Settings to configure the handling of HDR10 color space.
rec601Settings?
Type:
IResolvable | Rec601
(optional)
Settings to configure the handling of Rec601 color space.
rec709Settings?
Type:
IResolvable | Rec709
(optional)
Settings to configure the handling of Rec709 color space.

.NET
Java
Python
TypeScript