Av1ColorSpaceSettings

class aws_cdk.aws_medialive_alpha.Av1ColorSpaceSettings(*args: Any, **kwargs)

Bases: object

(experimental) Color space settings for AV1 video.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_medialive_alpha as medialive_alpha

av1_color_space_settings = medialive_alpha.Av1ColorSpaceSettings.hdr10(
    max_cll=123,
    max_fall=123
)

Static Methods

classmethod hdr10(*, max_cll=None, max_fall=None)

(experimental) HDR10 color space.

Parameters:
  • max_cll (Union[int, float, None]) – (experimental) Maximum Content Light Level — the maximum light level of any single pixel in nits. Default: - service default

  • max_fall (Union[int, float, None]) – (experimental) Maximum Frame Average Light Level — the maximum average light level of any single frame in nits. Default: - service default

Stability:

experimental

Return type:

Av1ColorSpaceSettings

classmethod hlg2020()

(experimental) HLG 2020 color space.

Stability:

experimental

Return type:

Av1ColorSpaceSettings

classmethod passthrough()

(experimental) Pass through the source color space with no conversion.

Stability:

experimental

Return type:

Av1ColorSpaceSettings

classmethod rec601()

(experimental) Convert to Rec.601 color space.

Stability:

experimental

Return type:

Av1ColorSpaceSettings

classmethod rec709()

(experimental) Convert to Rec.709 color space.

Stability:

experimental

Return type:

Av1ColorSpaceSettings