enum Preset
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Ivs.Alpha.Preset |
![]() | github.com/aws/aws-cdk-go/awscdkivsalpha/v2#Preset |
![]() | software.amazon.awscdk.services.ivs.alpha.Preset |
![]() | aws_cdk.aws_ivs_alpha.Preset |
![]() | @aws-cdk/aws-ivs-alpha » Preset |
An optional transcode preset for the channel.
This is selectable only for ADVANCED_HD and ADVANCED_SD channel types.
Example
const myChannel = new ivs.Channel(this, 'myChannel', {
type: ivs.ChannelType.ADVANCED_HD,
preset: ivs.Preset.CONSTRAINED_BANDWIDTH_DELIVERY,
});
Members
Name | Description |
---|---|
CONSTRAINED_BANDWIDTH_DELIVERY | Use a lower bitrate than STANDARD for each quality level. |
HIGHER_BANDWIDTH_DELIVERY | Use a higher bitrate for each quality level. |
CONSTRAINED_BANDWIDTH_DELIVERY
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).
HIGHER_BANDWIDTH_DELIVERY
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).