enum Preset
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Ivs.Alpha.Preset |
Go | github.com/aws/aws-cdk-go/awscdkivsalpha/v2#Preset |
Java | software.amazon.awscdk.services.ivs.alpha.Preset |
Python | aws_cdk.aws_ivs_alpha.Preset |
TypeScript (source) | @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.
See also: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-channel.html
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).