Class CfnChannelPropsMixin.WavSettingsProperty
The setup of WAV audio in the output.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.MediaLive
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnChannelPropsMixin.WavSettingsProperty : CfnChannelPropsMixin.IWavSettingsProperty
Syntax (vb)
Public Class CfnChannelPropsMixin.WavSettingsProperty Implements CfnChannelPropsMixin.IWavSettingsProperty
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 wavSettingsProperty = new WavSettingsProperty {
BitDepth = 123,
CodingMode = "codingMode",
SampleRate = 123
};
Synopsis
Constructors
| WavSettingsProperty() | The setup of WAV audio in the output. |
Properties
| BitDepth | Bits per sample. |
| CodingMode | The audio coding mode for the WAV audio. |
| SampleRate | Sample rate in Hz. |
Constructors
WavSettingsProperty()
The setup of WAV audio in the output.
public WavSettingsProperty()
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 wavSettingsProperty = new WavSettingsProperty {
BitDepth = 123,
CodingMode = "codingMode",
SampleRate = 123
};
Properties
BitDepth
Bits per sample.
public double? BitDepth { get; set; }
Property Value
Remarks
CodingMode
The audio coding mode for the WAV audio.
public string? CodingMode { get; set; }
Property Value
Remarks
The mode determines the number of channels in the audio.
SampleRate
Sample rate in Hz.
public double? SampleRate { get; set; }