AudioBitDepth

class aws_cdk.aws_medialive_alpha.AudioBitDepth(*args: Any, **kwargs)

Bases: object

(experimental) Audio bit depth for WAV codec.

Use one of the standard presets or AudioBitDepth.of(bits) for a custom value.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_medialive_alpha as medialive_alpha

audio_bit_depth = medialive_alpha.AudioBitDepth.of(123)

Attributes

DEPTH_16 = <aws_cdk.aws_medialive_alpha.AudioBitDepth object>
DEPTH_24 = <aws_cdk.aws_medialive_alpha.AudioBitDepth object>

Static Methods

classmethod of(bits)

(experimental) A custom bit depth.

Parameters:

bits (Union[int, float]) – the bit depth.

Stability:

experimental

Return type:

AudioBitDepth