interface Smpte2110InputProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.Smpte2110InputProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#Smpte2110InputProps |
Java | software.amazon.awscdk.services.medialive.alpha.Smpte2110InputProps |
Python | aws_cdk.aws_medialive_alpha.Smpte2110InputProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป Smpte2110InputProps |
Properties for a SMPTE 2110 receiver group input. Requires anywhereSettings on the channel.
You specify the SDP files that describe the streams to ingest โ one video SDP, and any number of audio and ancillary SDPs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
const smpte2110InputProps: medialive_alpha.Smpte2110InputProps = {
ancillarySdps: [{
sdpUrl: 'sdpUrl',
// the properties below are optional
mediaIndex: 123,
}],
audioSdps: [{
sdpUrl: 'sdpUrl',
// the properties below are optional
mediaIndex: 123,
}],
videoSdp: {
sdpUrl: 'sdpUrl',
// the properties below are optional
mediaIndex: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| ancillary | Smpte2110[] | The SDPs describing the ancillary data streams (SCTE-35 or captions). |
| audio | Smpte2110[] | The SDPs describing the audio streams. |
| video | Smpte2110 | The SDP describing the video stream. |
ancillarySdps?
Type:
Smpte2110[]
(optional, default: no ancillary data streams)
The SDPs describing the ancillary data streams (SCTE-35 or captions).
Up to 50.
audioSdps?
Type:
Smpte2110[]
(optional, default: no audio streams)
The SDPs describing the audio streams.
Up to 50.
videoSdp?
Type:
Smpte2110
(optional, default: no video stream)
The SDP describing the video stream.

.NET
Go
Java
Python
TypeScript (