Smpte2110InputProps

class aws_cdk.aws_medialive_alpha.Smpte2110InputProps(*, ancillary_sdps=None, audio_sdps=None, video_sdp=None)

Bases: object

(experimental) 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.

Parameters:
  • ancillary_sdps (Optional[Sequence[Union[Smpte2110SdpLocation, Dict[str, Any]]]]) – (experimental) The SDPs describing the ancillary data streams (SCTE-35 or captions). Up to 50. Default: - no ancillary data streams

  • audio_sdps (Optional[Sequence[Union[Smpte2110SdpLocation, Dict[str, Any]]]]) – (experimental) The SDPs describing the audio streams. Up to 50. Default: - no audio streams

  • video_sdp (Union[Smpte2110SdpLocation, Dict[str, Any], None]) – (experimental) The SDP describing the video stream. Default: - no video stream

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_medialive_alpha as medialive_alpha

smpte2110_input_props = medialive_alpha.Smpte2110InputProps(
    ancillary_sdps=[medialive_alpha.Smpte2110SdpLocation(
        sdp_url="sdpUrl",

        # the properties below are optional
        media_index=123
    )],
    audio_sdps=[medialive_alpha.Smpte2110SdpLocation(
        sdp_url="sdpUrl",

        # the properties below are optional
        media_index=123
    )],
    video_sdp=medialive_alpha.Smpte2110SdpLocation(
        sdp_url="sdpUrl",

        # the properties below are optional
        media_index=123
    )
)

Attributes

ancillary_sdps

(experimental) The SDPs describing the ancillary data streams (SCTE-35 or captions).

Up to 50.

Default:
  • no ancillary data streams

Stability:

experimental

audio_sdps

(experimental) The SDPs describing the audio streams.

Up to 50.

Default:
  • no audio streams

Stability:

experimental

video_sdp

(experimental) The SDP describing the video stream.

Default:
  • no video stream

Stability:

experimental