interface H264ColorSpaceSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.H264ColorSpaceSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_H264ColorSpaceSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.H264ColorSpaceSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.H264ColorSpaceSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnChannelPropsMixin » H264ColorSpaceSettingsProperty |
Settings for configuring color space in an H264 video encode.
The parent of this entity is H264Settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
const h264ColorSpaceSettingsProperty: medialive.CfnChannelPropsMixin.H264ColorSpaceSettingsProperty = {
colorSpacePassthroughSettings: { },
rec601Settings: { },
rec709Settings: { },
};
Properties
| Name | Type | Description |
|---|---|---|
| color | IResolvable | Color | Passthrough applies no color space conversion to the output. |
| 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.
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
Go
Java
Python
TypeScript