Preset

class aws_cdk.aws_ivs_alpha.Preset(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)

Bases: Enum

(experimental) An optional transcode preset for the channel.

This is selectable only for ADVANCED_HD and ADVANCED_SD channel types.

See:

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-channel.html

Stability:

experimental

ExampleMetadata:

infused

Example:

my_channel = ivs.Channel(self, "myChannel",
    type=ivs.ChannelType.ADVANCED_HD,
    preset=ivs.Preset.CONSTRAINED_BANDWIDTH_DELIVERY
)

Attributes

CONSTRAINED_BANDWIDTH_DELIVERY

(experimental) Use a lower bitrate than STANDARD for each quality level.

Use it if you have low download bandwidth and/or simple video content (e.g., talking heads).

Stability:

experimental

HIGHER_BANDWIDTH_DELIVERY

(experimental) Use a higher bitrate for each quality level.

Use it if you have high download bandwidth and/or complex video content (e.g., flashes and quick scene changes).

Stability:

experimental