interface SrtOutputGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.SrtOutputGroupProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#SrtOutputGroupProps |
Java | software.amazon.awscdk.services.medialive.alpha.SrtOutputGroupProps |
Python | aws_cdk.aws_medialive_alpha.SrtOutputGroupProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป SrtOutputGroupProps |
Properties for an SRT output group.
Example
declare const video: medialive.EncodeConfiguration;
declare const audio: medialive.EncodeConfiguration;
declare const passphrase: secretsmanager.ISecret;
// SRT caller to a remote listener
medialive.OutputGroupConfiguration.srt({
name: 'srt_out',
outputs: [{
encodes: [video, audio],
outputName: 'srt_caller',
destinations: [medialive.SrtDestination.caller({
address: '203.0.113.20',
port: 5000,
encryptionPassphraseSecret: passphrase,
})],
}],
});
// SRT listener โ MediaLive waits for the downstream system to connect
medialive.OutputGroupConfiguration.srt({
name: 'srt_listen',
outputs: [{
encodes: [video, audio],
outputName: 'srt_listener',
destinations: [medialive.SrtDestination.listener({
listenerPort: 5000,
encryptionPassphraseSecret: passphrase,
})],
}],
});
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of this output group. |
| outputs | Srt[] | The outputs for this SRT output group. |
| input | Srt | Controls the behavior of this SRT group if the input becomes unavailable. |
name
Type:
string
The name of this output group.
outputs
Type:
Srt[]
The outputs for this SRT output group.
Each output includes its own SRT destination.
inputLossAction?
Type:
Srt
(optional, default: SrtInputLossAction.EMIT_PROGRAM)
Controls the behavior of this SRT group if the input becomes unavailable.

.NET
Go
Java
Python
TypeScript (