interface WavSettingsProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.WavSettingsProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#WavSettingsProps |
Java | software.amazon.awscdk.services.medialive.alpha.WavSettingsProps |
Python | aws_cdk.aws_medialive_alpha.WavSettingsProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป WavSettingsProps |
Properties for WAV codec settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
declare const audioBitDepth: medialive_alpha.AudioBitDepth;
declare const audioSampleRate: medialive_alpha.AudioSampleRate;
declare const wavCodingMode: medialive_alpha.WavCodingMode;
const wavSettingsProps: medialive_alpha.WavSettingsProps = {
bitDepth: audioBitDepth,
codingMode: wavCodingMode,
sampleRate: audioSampleRate,
};
Properties
| Name | Type | Description |
|---|---|---|
| bit | Audio | The bit depth of the WAV output. |
| coding | Wav | The audio coding mode for the WAV audio. |
| sample | Audio | The sample rate. |
bitDepth?
Type:
Audio
(optional, default: AudioBitDepth.DEPTH_16)
The bit depth of the WAV output.
codingMode?
Type:
Wav
(optional, default: WavCodingMode.CODING_MODE_2_0)
The audio coding mode for the WAV audio.
sampleRate?
Type:
Audio
(optional, default: AudioSampleRate.HZ_48000)
The sample rate.

.NET
Go
Java
Python
TypeScript (