Interface CfnChannel.AacSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.AacSettingsProperty.Jsii$Proxy
- Enclosing class:
- CfnChannel
@Stability(Stable)
public static interface CfnChannel.AacSettingsProperty
extends software.amazon.jsii.JsiiSerializable
The settings for an AAC audio encode in the output.
The parent of this entity is AudioCodecSettings.
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.*; AacSettingsProperty aacSettingsProperty = AacSettingsProperty.builder() .bitrate(123) .codingMode("codingMode") .inputType("inputType") .profile("profile") .rateControlMode("rateControlMode") .rawFormat("rawFormat") .sampleRate(123) .spec("spec") .vbrQuality("vbrQuality") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.AacSettingsProperty
static final class
An implementation forCfnChannel.AacSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Number
The average bitrate in bits/second.default String
Mono, stereo, or 5.1 channel layout.default String
Set to broadcasterMixedAd when the input contains pre-mixed main audio + AD (narration) as a stereo pair.default String
The AAC profile.default String
The rate control mode.default String
Sets the LATM/LOAS AAC output for raw containers.default Number
The sample rate in Hz.default String
getSpec()
Uses MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers.default String
The VBR quality level.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBitrate
The average bitrate in bits/second.Valid values depend on the rate control mode and profile.
-
getCodingMode
Mono, stereo, or 5.1 channel layout. Valid values depend on the rate control mode and profile. The adReceiverMix setting receives a stereo description plus control track, and emits a mono AAC encode of the description track, with control data emitted in the PES header as per ETSI TS 101 154 Annex E. -
getInputType
Set to broadcasterMixedAd when the input contains pre-mixed main audio + AD (narration) as a stereo pair.The Audio Type field (audioType) will be set to 3, which signals to downstream systems that this stream contains broadcaster mixed AD. Note that the input received by the encoder must contain pre-mixed audio; MediaLive does not perform the mixing. The values in audioTypeControl and audioType (in AudioDescription) are ignored when set to broadcasterMixedAd. Leave this set to normal when the input does not contain pre-mixed audio + AD.
-
getProfile
The AAC profile. -
getRateControlMode
The rate control mode. -
getRawFormat
Sets the LATM/LOAS AAC output for raw containers. -
getSampleRate
The sample rate in Hz.Valid values depend on the rate control mode and profile.
-
getSpec
Uses MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers. -
getVbrQuality
The VBR quality level.This is used only if rateControlMode is VBR.
-
builder
-