class AudioBitDepth
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.AudioBitDepth |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#AudioBitDepth |
Java | software.amazon.awscdk.services.medialive.alpha.AudioBitDepth |
Python | aws_cdk.aws_medialive_alpha.AudioBitDepth |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป AudioBitDepth |
Audio bit depth for WAV codec.
Use one of the standard presets or AudioBitDepth.of(bits) for a custom value.
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';
const audioBitDepth = medialive_alpha.AudioBitDepth.of(123);
Properties
| Name | Type | Description |
|---|---|---|
| static DEPTH_16 | Audio | 16-bit. |
| static DEPTH_24 | Audio | 24-bit. |
static DEPTH_16
Type:
Audio
16-bit.
static DEPTH_24
Type:
Audio
24-bit.
Methods
| Name | Description |
|---|---|
| static of(bits) | A custom bit depth. |
static of(bits)
public static of(bits: number): AudioBitDepth
Parameters
- bits
numberโ the bit depth.
Returns
A custom bit depth.

.NET
Go
Java
Python
TypeScript (