class Av1ColorSpaceSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.Av1ColorSpaceSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#Av1ColorSpaceSettings |
Java | software.amazon.awscdk.services.medialive.alpha.Av1ColorSpaceSettings |
Python | aws_cdk.aws_medialive_alpha.Av1ColorSpaceSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป Av1ColorSpaceSettings |
Color space settings for AV1 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 av1ColorSpaceSettings = medialive_alpha.Av1ColorSpaceSettings.hdr10(/* all optional props */ {
maxCll: 123,
maxFall: 123,
});
Methods
| Name | Description |
|---|---|
| static hdr10(props?) | HDR10 color space. |
| static hlg2020() | HLG 2020 color space. |
| 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 hdr10(props?)
public static hdr10(props?: Hdr10SettingsProps): Av1ColorSpaceSettings
Parameters
- props
Hdr10Settings Props
Returns
HDR10 color space.
static hlg2020()
public static hlg2020(): Av1ColorSpaceSettings
Returns
HLG 2020 color space.
static passthrough()
public static passthrough(): Av1ColorSpaceSettings
Returns
Pass through the source color space with no conversion.
static rec601()
public static rec601(): Av1ColorSpaceSettings
Returns
Convert to Rec.601 color space.
static rec709()
public static rec709(): Av1ColorSpaceSettings
Returns
Convert to Rec.709 color space.

.NET
Go
Java
Python
TypeScript (