interface EncodingParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnFlowOutputPropsMixin.EncodingParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnFlowOutputPropsMixin_EncodingParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnFlowOutputPropsMixin.EncodingParametersProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnFlowOutputPropsMixin.EncodingParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnFlowOutputPropsMixin » EncodingParametersProperty |
A collection of parameters that determine how MediaConnect will convert the content.
These fields only apply to outputs on flows that have a CDI source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const encodingParametersProperty: mediaconnect_mixins.CfnFlowOutputPropsMixin.EncodingParametersProperty = {
compressionFactor: 123,
encoderProfile: 'encoderProfile',
};
Properties
| Name | Type | Description |
|---|---|---|
| compression | number | A value that is used to calculate compression for an output. |
| encoder | string | A setting on the encoder that drives compression settings. |
compressionFactor?
Type:
number
(optional)
A value that is used to calculate compression for an output.
The bitrate of the output is calculated as follows: Output bitrate = (1 / compressionFactor) * (source bitrate) This property only applies to outputs that use the ST 2110 JPEG XS protocol, with a flow source that uses the CDI protocol. Valid values are floating point numbers in the range of 3.0 to 10.0, inclusive.
encoderProfile?
Type:
string
(optional)
A setting on the encoder that drives compression settings.
This property only applies to video media streams associated with outputs that use the ST 2110 JPEG XS protocol, with a flow source that uses the CDI protocol.

.NET
Go
Java
Python
TypeScript