interface FecOutputSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.FecOutputSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#FecOutputSettings |
Java | software.amazon.awscdk.services.medialive.alpha.FecOutputSettings |
Python | aws_cdk.aws_medialive_alpha.FecOutputSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป FecOutputSettings |
Forward Error Correction (FEC) settings for a UDP output (SMPTE 2022-1).
Example
declare const video: medialive.EncodeConfiguration;
medialive.OutputGroupConfiguration.udp({
name: 'udp',
destinations: [medialive.UdpOutputDestination.rtp({ address: '203.0.113.5', port: 5000 })],
outputs: [{
encodes: [video],
outputName: 'ts',
fec: { mode: medialive.FecMode.COLUMN_AND_ROW, columnDepth: 10, rowLength: 10 },
}],
});
Properties
| Name | Type | Description |
|---|---|---|
| column | number | Parameter D from SMPTE 2022-1 โ the height of the FEC protection matrix (number of transport stream packets per column error-correction packet). |
| mode? | Fec | Whether to enable column-only or column-and-row FEC. |
| row | number | Parameter L from SMPTE 2022-1 โ the width of the FEC protection matrix. |
columnDepth?
Type:
number
(optional, default: service default)
Parameter D from SMPTE 2022-1 โ the height of the FEC protection matrix (number of transport stream packets per column error-correction packet).
Must be 4..20.
mode?
Type:
Fec
(optional, default: service default)
Whether to enable column-only or column-and-row FEC.
rowLength?
Type:
number
(optional, default: service default)
Parameter L from SMPTE 2022-1 โ the width of the FEC protection matrix.
Must be 1..20 for column-only FEC, or 4..20 for column-and-row FEC.

.NET
Go
Java
Python
TypeScript (