Interface CfnMultiplexprogram.MultiplexStatmuxVideoSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMultiplexprogram.MultiplexStatmuxVideoSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnMultiplexprogram
@Stability(Stable)
public static interface CfnMultiplexprogram.MultiplexStatmuxVideoSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.medialive.*;
MultiplexStatmuxVideoSettingsProperty multiplexStatmuxVideoSettingsProperty = MultiplexStatmuxVideoSettingsProperty.builder()
.maximumBitrate(123)
.minimumBitrate(123)
.priority(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMultiplexprogram.MultiplexStatmuxVideoSettingsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberMaximum statmux bitrate.default NumberMinimum statmux bitrate.default NumberThe 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.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaximumBitrate
Maximum statmux bitrate.- See Also:
-
getMinimumBitrate
Minimum statmux bitrate.- See Also:
-
getPriority
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.
- See Also:
-
builder
@Stability(Stable) static CfnMultiplexprogram.MultiplexStatmuxVideoSettingsProperty.Builder builder()
-