Class CfnChannelPropsMixin.AacSettingsProperty
The settings for an AAC audio encode in the output.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.MediaLive
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnChannelPropsMixin.AacSettingsProperty : CfnChannelPropsMixin.IAacSettingsProperty
Syntax (vb)
Public Class CfnChannelPropsMixin.AacSettingsProperty Implements CfnChannelPropsMixin.IAacSettingsProperty
Remarks
The parent of this entity is AudioCodecSettings.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.MediaLive;
var aacSettingsProperty = new AacSettingsProperty {
Bitrate = 123,
CodingMode = "codingMode",
InputType = "inputType",
Profile = "profile",
RateControlMode = "rateControlMode",
RawFormat = "rawFormat",
SampleRate = 123,
Spec = "spec",
VbrQuality = "vbrQuality"
};
Synopsis
Constructors
| AacSettingsProperty() | The settings for an AAC audio encode in the output. |
Properties
| Bitrate | The average bitrate in bits/second. |
| CodingMode | 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. |
| InputType | Set to broadcasterMixedAd when the input contains pre-mixed main audio + AD (narration) as a stereo pair. |
| Profile | The AAC profile. |
| RateControlMode | The rate control mode. |
| RawFormat | Sets the LATM/LOAS AAC output for raw containers. |
| SampleRate | The sample rate in Hz. |
| Spec | Uses MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers. |
| VbrQuality | The VBR quality level. |
Constructors
AacSettingsProperty()
The settings for an AAC audio encode in the output.
public AacSettingsProperty()
Remarks
The parent of this entity is AudioCodecSettings.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.MediaLive;
var aacSettingsProperty = new AacSettingsProperty {
Bitrate = 123,
CodingMode = "codingMode",
InputType = "inputType",
Profile = "profile",
RateControlMode = "rateControlMode",
RawFormat = "rawFormat",
SampleRate = 123,
Spec = "spec",
VbrQuality = "vbrQuality"
};
Properties
Bitrate
The average bitrate in bits/second.
public double? Bitrate { get; set; }
Property Value
Remarks
Valid values depend on the rate control mode and profile.
CodingMode
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.
public string? CodingMode { get; set; }
Property Value
Remarks
InputType
Set to broadcasterMixedAd when the input contains pre-mixed main audio + AD (narration) as a stereo pair.
public string? InputType { get; set; }
Property Value
Remarks
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.
Profile
The AAC profile.
public string? Profile { get; set; }
Property Value
Remarks
RateControlMode
The rate control mode.
public string? RateControlMode { get; set; }
Property Value
Remarks
RawFormat
Sets the LATM/LOAS AAC output for raw containers.
public string? RawFormat { get; set; }
Property Value
Remarks
SampleRate
The sample rate in Hz.
public double? SampleRate { get; set; }
Property Value
Remarks
Valid values depend on the rate control mode and profile.
Spec
Uses MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers.
public string? Spec { get; set; }
Property Value
Remarks
VbrQuality
The VBR quality level.
public string? VbrQuality { get; set; }
Property Value
Remarks
This is used only if rateControlMode is VBR.