interface NdiOutputConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.NdiOutputConfig |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#NdiOutputConfig |
Java | software.amazon.awscdk.services.mediaconnect.alpha.NdiOutputConfig |
Python | aws_cdk.aws_mediaconnect_alpha.NdiOutputConfig |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป NdiOutputConfig |
Configuration options for NDI outputs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
const ndiOutputConfig: mediaconnect_alpha.NdiOutputConfig = {
ndiProgramName: 'ndiProgramName',
ndiSpeedHqQuality: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| ndi | string | A suffix for the names of the NDI sources that the flow creates. |
| ndi | number | A quality setting for the NDI Speed HQ encoder, expressed as a percentage. |
ndiProgramName?
Type:
string
(optional, default: the output name is used)
A suffix for the names of the NDI sources that the flow creates.
ndiSpeedHqQuality?
Type:
number
(optional, default: the MediaConnect service default)
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.

.NET
Go
Java
Python
TypeScript (