interface MultiplexStatmuxVideoSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnMultiplexprogramPropsMixin.MultiplexStatmuxVideoSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnMultiplexprogramPropsMixin_MultiplexStatmuxVideoSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnMultiplexprogramPropsMixin.MultiplexStatmuxVideoSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnMultiplexprogramPropsMixin.MultiplexStatmuxVideoSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnMultiplexprogramPropsMixin » MultiplexStatmuxVideoSettingsProperty |
Statmux rate control settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
const multiplexStatmuxVideoSettingsProperty: medialive.CfnMultiplexprogramPropsMixin.MultiplexStatmuxVideoSettingsProperty = {
maximumBitrate: 123,
minimumBitrate: 123,
priority: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| maximum | number | Maximum statmux bitrate. |
| minimum | number | Minimum statmux bitrate. |
| priority? | number | The purpose of the priority is to use a combination of the\nmultiplex rate control algorithm and the QVBR capability of the\nencoder to prioritize the video quality of some channels in a\nmultiplex over others. |
maximumBitrate?
Type:
number
(optional)
Maximum statmux bitrate.
minimumBitrate?
Type:
number
(optional)
Minimum statmux bitrate.
priority?
Type:
number
(optional)
The purpose of the priority is to use a combination of the\nmultiplex rate control algorithm and the QVBR capability of the\nencoder to prioritize the video quality of some channels in a\nmultiplex over others.
Channels that have a higher priority will\nget higher video quality at the expense of the video quality of\nother channels in the multiplex with lower priority.

.NET
Go
Java
Python
TypeScript