NdiOutputConfig
- class aws_cdk.aws_mediaconnect_alpha.NdiOutputConfig(*, ndi_program_name=None, ndi_speed_hq_quality=None)
Bases:
object(experimental) Configuration options for NDI outputs.
- Parameters:
ndi_program_name (
Optional[str]) – (experimental) A suffix for the names of the NDI sources that the flow creates. Default: - the output name is usedndi_speed_hq_quality (
Union[int,float,None]) – (experimental) A quality setting for the NDI Speed HQ encoder, expressed as a percentage. Valid range: 100-200. Higher values produce higher quality and larger bitrate. Default: - the MediaConnect service default
- 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_mediaconnect_alpha as mediaconnect_alpha ndi_output_config = mediaconnect_alpha.NdiOutputConfig( ndi_program_name="ndiProgramName", ndi_speed_hq_quality=123 )
Attributes
- ndi_program_name
(experimental) A suffix for the names of the NDI sources that the flow creates.
- Default:
the output name is used
- Stability:
experimental
- ndi_speed_hq_quality
(experimental) A quality setting for the NDI Speed HQ encoder, expressed as a percentage.
Valid range: 100-200. Higher values produce higher quality and larger bitrate.
- Default:
the MediaConnect service default
- See:
https://aws.amazon.com/about-aws/whats-new/2025/03/aws-elemental-mediaconnect-support-ndi-outputs/
- Stability:
experimental