interface MultiplexStatmuxVideoSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnMultiplexprogramPropsMixin.MultiplexStatmuxVideoSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnMultiplexprogramPropsMixin_MultiplexStatmuxVideoSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnMultiplexprogramPropsMixin.MultiplexStatmuxVideoSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnMultiplexprogramPropsMixin.MultiplexStatmuxVideoSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » 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 { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const multiplexStatmuxVideoSettingsProperty: medialive_mixins.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