create_media_live_connector_pipeline
(**kwargs)¶Creates a streaming media pipeline in an Amazon Chime SDK meeting.
See also: AWS API Documentation
Request Syntax
response = client.create_media_live_connector_pipeline(
Sources=[
{
'SourceType': 'ChimeSdkMeeting',
'ChimeSdkMeetingLiveConnectorConfiguration': {
'Arn': 'string',
'MuxType': 'AudioWithCompositedVideo'|'AudioWithActiveSpeakerVideo',
'CompositedVideo': {
'Layout': 'GridView',
'Resolution': 'HD'|'FHD',
'GridViewConfiguration': {
'ContentShareLayout': 'PresenterOnly'|'Horizontal'|'Vertical',
'PresenterOnlyConfiguration': {
'PresenterPosition': 'TopLeft'|'TopRight'|'BottomLeft'|'BottomRight'
}
}
},
'SourceConfiguration': {
'SelectedVideoStreams': {
'AttendeeIds': [
'string',
],
'ExternalUserIds': [
'string',
]
}
}
}
},
],
Sinks=[
{
'SinkType': 'RTMP',
'RTMPConfiguration': {
'Url': 'string',
'AudioChannels': 'Stereo'|'Mono',
'AudioSampleRate': 'string'
}
},
],
ClientRequestToken='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
[REQUIRED]
The media pipeline's data sources.
The data source configuration object of a streaming media pipeline.
The source configuration's media source type.
The configuration settings of the connector pipeline.
The configuration object's Chime SDK meeting ARN.
The configuration object's multiplex type.
The media pipeline's composited video.
The layout setting, such as GridView
in the configuration object.
The video resolution setting in the configuration object. Default: HD at 1280 x 720. FHD resolution: 1920 x 1080.
The GridView
configuration setting.
Defines the layout of the video tiles when content sharing is enabled.
Defines the configuration options for a presenter only video tile.
Defines the position of the presenter video tile. Default: TopRight
.
The source configuration settings of the media pipeline's configuration object.
The selected video streams for a specified media pipeline. The number of video streams can't exceed 25.
The attendee IDs of the streams selected for a media pipeline.
The external user IDs of the streams selected for a media pipeline.
[REQUIRED]
The media pipeline's data sinks.
The media pipeline's sink configuration settings.
The sink configuration's sink type.
The sink configuration's RTMP configuration setttings.
The URL of the RTMP configuration.
The audio channels set for the RTMP configuration
The audio sample rate set for the RTMP configuration. Default: 48000.
The token assigned to the client making the request.
This field is autopopulated if not provided.
The tags associated with the media pipeline.
A key/value pair that grants users access to meeting resources.
The key half of a tag.
The value half of a tag.
dict
Response Syntax
{
'MediaLiveConnectorPipeline': {
'Sources': [
{
'SourceType': 'ChimeSdkMeeting',
'ChimeSdkMeetingLiveConnectorConfiguration': {
'Arn': 'string',
'MuxType': 'AudioWithCompositedVideo'|'AudioWithActiveSpeakerVideo',
'CompositedVideo': {
'Layout': 'GridView',
'Resolution': 'HD'|'FHD',
'GridViewConfiguration': {
'ContentShareLayout': 'PresenterOnly'|'Horizontal'|'Vertical',
'PresenterOnlyConfiguration': {
'PresenterPosition': 'TopLeft'|'TopRight'|'BottomLeft'|'BottomRight'
}
}
},
'SourceConfiguration': {
'SelectedVideoStreams': {
'AttendeeIds': [
'string',
],
'ExternalUserIds': [
'string',
]
}
}
}
},
],
'Sinks': [
{
'SinkType': 'RTMP',
'RTMPConfiguration': {
'Url': 'string',
'AudioChannels': 'Stereo'|'Mono',
'AudioSampleRate': 'string'
}
},
],
'MediaPipelineId': 'string',
'MediaPipelineArn': 'string',
'Status': 'Initializing'|'InProgress'|'Failed'|'Stopping'|'Stopped',
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
MediaLiveConnectorPipeline (dict) --
The new media pipeline.
Sources (list) --
The connector pipeline's data sources.
(dict) --
The data source configuration object of a streaming media pipeline.
SourceType (string) --
The source configuration's media source type.
ChimeSdkMeetingLiveConnectorConfiguration (dict) --
The configuration settings of the connector pipeline.
Arn (string) --
The configuration object's Chime SDK meeting ARN.
MuxType (string) --
The configuration object's multiplex type.
CompositedVideo (dict) --
The media pipeline's composited video.
Layout (string) --
The layout setting, such as GridView
in the configuration object.
Resolution (string) --
The video resolution setting in the configuration object. Default: HD at 1280 x 720. FHD resolution: 1920 x 1080.
GridViewConfiguration (dict) --
The GridView
configuration setting.
ContentShareLayout (string) --
Defines the layout of the video tiles when content sharing is enabled.
PresenterOnlyConfiguration (dict) --
Defines the configuration options for a presenter only video tile.
PresenterPosition (string) --
Defines the position of the presenter video tile. Default: TopRight
.
SourceConfiguration (dict) --
The source configuration settings of the media pipeline's configuration object.
SelectedVideoStreams (dict) --
The selected video streams for a specified media pipeline. The number of video streams can't exceed 25.
AttendeeIds (list) --
The attendee IDs of the streams selected for a media pipeline.
ExternalUserIds (list) --
The external user IDs of the streams selected for a media pipeline.
Sinks (list) --
The connector pipeline's data sinks.
(dict) --
The media pipeline's sink configuration settings.
SinkType (string) --
The sink configuration's sink type.
RTMPConfiguration (dict) --
The sink configuration's RTMP configuration setttings.
Url (string) --
The URL of the RTMP configuration.
AudioChannels (string) --
The audio channels set for the RTMP configuration
AudioSampleRate (string) --
The audio sample rate set for the RTMP configuration. Default: 48000.
MediaPipelineId (string) --
The connector pipeline's ID.
MediaPipelineArn (string) --
The connector pipeline's ARN.
Status (string) --
The connector pipeline's status.
CreatedTimestamp (datetime) --
Thetime at which the connector pipeline was created.
UpdatedTimestamp (datetime) --
The time at which the connector pipeline was last updated.
Exceptions
ChimeSDKMediaPipelines.Client.exceptions.BadRequestException
ChimeSDKMediaPipelines.Client.exceptions.ForbiddenException
ChimeSDKMediaPipelines.Client.exceptions.UnauthorizedClientException
ChimeSDKMediaPipelines.Client.exceptions.ThrottledClientException
ChimeSDKMediaPipelines.Client.exceptions.ResourceLimitExceededException
ChimeSDKMediaPipelines.Client.exceptions.ServiceUnavailableException
ChimeSDKMediaPipelines.Client.exceptions.ServiceFailureException