Interface EncodingParametersRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EncodingParametersRequest.Builder,EncodingParametersRequest>,SdkBuilder<EncodingParametersRequest.Builder,EncodingParametersRequest>,SdkPojo
- Enclosing class:
- EncodingParametersRequest
public static interface EncodingParametersRequest.Builder extends SdkPojo, CopyableBuilder<EncodingParametersRequest.Builder,EncodingParametersRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EncodingParametersRequest.BuildercompressionFactor(Double compressionFactor)A value that is used to calculate compression for an output.EncodingParametersRequest.BuilderencoderProfile(String encoderProfile)A setting on the encoder that drives compression settings.EncodingParametersRequest.BuilderencoderProfile(EncoderProfile encoderProfile)A setting on the encoder that drives compression settings.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
compressionFactor
EncodingParametersRequest.Builder compressionFactor(Double compressionFactor)
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.- Parameters:
compressionFactor- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encoderProfile
EncodingParametersRequest.Builder encoderProfile(String encoderProfile)
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, if at least one source on the flow uses the CDI protocol.- Parameters:
encoderProfile- 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, if at least one source on the flow uses the CDI protocol.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EncoderProfile,EncoderProfile
-
encoderProfile
EncodingParametersRequest.Builder encoderProfile(EncoderProfile encoderProfile)
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, if at least one source on the flow uses the CDI protocol.- Parameters:
encoderProfile- 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, if at least one source on the flow uses the CDI protocol.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EncoderProfile,EncoderProfile
-
-