class H264ColorSpaceSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.H264ColorSpaceSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#H264ColorSpaceSettings |
Java | software.amazon.awscdk.services.medialive.alpha.H264ColorSpaceSettings |
Python | aws_cdk.aws_medialive_alpha.H264ColorSpaceSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป H264ColorSpaceSettings |
Color space settings for H.264 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 h264ColorSpaceSettings = medialive_alpha.H264ColorSpaceSettings.passthrough();
Methods
| Name | Description |
|---|---|
| static passthrough() | Pass through the source color space with no conversion. |
| static rec601() | Convert to Rec.601 color space. |
| static rec709() | Convert to Rec.709 color space. |
static passthrough()
public static passthrough(): H264ColorSpaceSettings
Returns
Pass through the source color space with no conversion.
static rec601()
public static rec601(): H264ColorSpaceSettings
Returns
Convert to Rec.601 color space.
static rec709()
public static rec709(): H264ColorSpaceSettings
Returns
Convert to Rec.709 color space.

.NET
Go
Java
Python
TypeScript (