@aws-sdk/client-medialive 3.777.0 → 3.782.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -93,6 +93,30 @@ declare const UpdateInputCommand_base: {
93
93
  * },
94
94
  * ],
95
95
  * },
96
+ * Smpte2110ReceiverGroupSettings: { // Smpte2110ReceiverGroupSettings
97
+ * Smpte2110ReceiverGroups: [ // __listOfSmpte2110ReceiverGroup
98
+ * { // Smpte2110ReceiverGroup
99
+ * SdpSettings: { // Smpte2110ReceiverGroupSdpSettings
100
+ * AncillarySdps: [ // __listOfInputSdpLocation
101
+ * { // InputSdpLocation
102
+ * MediaIndex: Number("int"),
103
+ * SdpUrl: "STRING_VALUE",
104
+ * },
105
+ * ],
106
+ * AudioSdps: [
107
+ * {
108
+ * MediaIndex: Number("int"),
109
+ * SdpUrl: "STRING_VALUE",
110
+ * },
111
+ * ],
112
+ * VideoSdp: {
113
+ * MediaIndex: Number("int"),
114
+ * SdpUrl: "STRING_VALUE",
115
+ * },
116
+ * },
117
+ * },
118
+ * ],
119
+ * },
96
120
  * };
97
121
  * const command = new UpdateInputCommand(input);
98
122
  * const response = await client.send(command);
@@ -152,7 +176,7 @@ declare const UpdateInputCommand_base: {
152
176
  * // Tags: { // Tags
153
177
  * // "<keys>": "STRING_VALUE",
154
178
  * // },
155
- * // Type: "UDP_PUSH" || "RTP_PUSH" || "RTMP_PUSH" || "RTMP_PULL" || "URL_PULL" || "MP4_FILE" || "MEDIACONNECT" || "INPUT_DEVICE" || "AWS_CDI" || "TS_FILE" || "SRT_CALLER" || "MULTICAST",
179
+ * // Type: "UDP_PUSH" || "RTP_PUSH" || "RTMP_PUSH" || "RTMP_PULL" || "URL_PULL" || "MP4_FILE" || "MEDIACONNECT" || "INPUT_DEVICE" || "AWS_CDI" || "TS_FILE" || "SRT_CALLER" || "MULTICAST" || "SMPTE_2110_RECEIVER_GROUP",
156
180
  * // SrtSettings: { // SrtSettings
157
181
  * // SrtCallerSources: [ // __listOfSrtCallerSource
158
182
  * // { // SrtCallerSource
@@ -176,6 +200,30 @@ declare const UpdateInputCommand_base: {
176
200
  * // },
177
201
  * // ],
178
202
  * // },
203
+ * // Smpte2110ReceiverGroupSettings: { // Smpte2110ReceiverGroupSettings
204
+ * // Smpte2110ReceiverGroups: [ // __listOfSmpte2110ReceiverGroup
205
+ * // { // Smpte2110ReceiverGroup
206
+ * // SdpSettings: { // Smpte2110ReceiverGroupSdpSettings
207
+ * // AncillarySdps: [ // __listOfInputSdpLocation
208
+ * // { // InputSdpLocation
209
+ * // MediaIndex: Number("int"),
210
+ * // SdpUrl: "STRING_VALUE",
211
+ * // },
212
+ * // ],
213
+ * // AudioSdps: [
214
+ * // {
215
+ * // MediaIndex: Number("int"),
216
+ * // SdpUrl: "STRING_VALUE",
217
+ * // },
218
+ * // ],
219
+ * // VideoSdp: {
220
+ * // MediaIndex: Number("int"),
221
+ * // SdpUrl: "STRING_VALUE",
222
+ * // },
223
+ * // },
224
+ * // },
225
+ * // ],
226
+ * // },
179
227
  * // },
180
228
  * // };
181
229
  *
@@ -4188,6 +4188,66 @@ export interface MulticastSettings {
4188
4188
  */
4189
4189
  Sources?: MulticastSource[] | undefined;
4190
4190
  }
4191
+ /**
4192
+ * The location of the SDP file for one of the SMPTE 2110 streams in a receiver group.
4193
+ * @public
4194
+ */
4195
+ export interface InputSdpLocation {
4196
+ /**
4197
+ * The index of the media stream in the SDP file for one SMPTE 2110 stream.
4198
+ * @public
4199
+ */
4200
+ MediaIndex?: number | undefined;
4201
+ /**
4202
+ * The URL of the SDP file for one SMPTE 2110 stream.
4203
+ * @public
4204
+ */
4205
+ SdpUrl?: string | undefined;
4206
+ }
4207
+ /**
4208
+ * Information about the SDP files that describe the SMPTE 2110 streams that go into one SMPTE 2110 receiver group.
4209
+ * @public
4210
+ */
4211
+ export interface Smpte2110ReceiverGroupSdpSettings {
4212
+ /**
4213
+ * A list of InputSdpLocations. Each item in the list specifies the SDP file and index for one ancillary SMPTE 2110 stream.
4214
+ * Each stream encapsulates one captions stream (out of any number you can include) or the single SCTE 35 stream that you can include.
4215
+ * @public
4216
+ */
4217
+ AncillarySdps?: InputSdpLocation[] | undefined;
4218
+ /**
4219
+ * A list of InputSdpLocations. Each item in the list specifies the SDP file and index for one audio SMPTE 2110 stream.
4220
+ * @public
4221
+ */
4222
+ AudioSdps?: InputSdpLocation[] | undefined;
4223
+ /**
4224
+ * The InputSdpLocation that specifies the SDP file and index for the single video SMPTE 2110 stream for this 2110 input.
4225
+ * @public
4226
+ */
4227
+ VideoSdp?: InputSdpLocation | undefined;
4228
+ }
4229
+ /**
4230
+ * A receiver group is a collection of video, audio, and ancillary streams that you want to group together and attach to one input.
4231
+ * @public
4232
+ */
4233
+ export interface Smpte2110ReceiverGroup {
4234
+ /**
4235
+ * The single Smpte2110ReceiverGroupSdpSettings that identify the video, audio, and ancillary streams for this receiver group.
4236
+ * @public
4237
+ */
4238
+ SdpSettings?: Smpte2110ReceiverGroupSdpSettings | undefined;
4239
+ }
4240
+ /**
4241
+ * Configures the sources for the SMPTE 2110 Receiver Group input.
4242
+ * @public
4243
+ */
4244
+ export interface Smpte2110ReceiverGroupSettings {
4245
+ /**
4246
+ * Placeholder documentation for __listOfSmpte2110ReceiverGroup
4247
+ * @public
4248
+ */
4249
+ Smpte2110ReceiverGroups?: Smpte2110ReceiverGroup[] | undefined;
4250
+ }
4191
4251
  /**
4192
4252
  * The settings for a PULL type input.
4193
4253
  * @public
@@ -4309,6 +4369,7 @@ export declare const InputType: {
4309
4369
  readonly RTMP_PULL: "RTMP_PULL";
4310
4370
  readonly RTMP_PUSH: "RTMP_PUSH";
4311
4371
  readonly RTP_PUSH: "RTP_PUSH";
4372
+ readonly SMPTE_2110_RECEIVER_GROUP: "SMPTE_2110_RECEIVER_GROUP";
4312
4373
  readonly SRT_CALLER: "SRT_CALLER";
4313
4374
  readonly TS_FILE: "TS_FILE";
4314
4375
  readonly UDP_PUSH: "UDP_PUSH";
@@ -4421,6 +4482,11 @@ export interface Input {
4421
4482
  * @public
4422
4483
  */
4423
4484
  MulticastSettings?: MulticastSettings | undefined;
4485
+ /**
4486
+ * Include this parameter if the input is a SMPTE 2110 input, to identify the stream sources for this input.
4487
+ * @public
4488
+ */
4489
+ Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings | undefined;
4424
4490
  }
4425
4491
  /**
4426
4492
  * A network route configuration.
@@ -5833,296 +5899,3 @@ export declare const M2tsTimedMetadataBehavior: {
5833
5899
  * @public
5834
5900
  */
5835
5901
  export type M2tsTimedMetadataBehavior = (typeof M2tsTimedMetadataBehavior)[keyof typeof M2tsTimedMetadataBehavior];
5836
- /**
5837
- * M2ts Settings
5838
- * @public
5839
- */
5840
- export interface M2tsSettings {
5841
- /**
5842
- * When set to drop, output audio streams will be removed from the program if the selected input audio stream is removed from the input. This allows the output audio configuration to dynamically change based on input configuration. If this is set to encodeSilence, all output audio streams will output encoded silence when not connected to an active input stream.
5843
- * @public
5844
- */
5845
- AbsentInputAudioBehavior?: M2tsAbsentInputAudioBehavior | undefined;
5846
- /**
5847
- * When set to enabled, uses ARIB-compliant field muxing and removes video descriptor.
5848
- * @public
5849
- */
5850
- Arib?: M2tsArib | undefined;
5851
- /**
5852
- * Packet Identifier (PID) for ARIB Captions in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
5853
- * @public
5854
- */
5855
- AribCaptionsPid?: string | undefined;
5856
- /**
5857
- * If set to auto, pid number used for ARIB Captions will be auto-selected from unused pids. If set to useConfigured, ARIB Captions will be on the configured pid number.
5858
- * @public
5859
- */
5860
- AribCaptionsPidControl?: M2tsAribCaptionsPidControl | undefined;
5861
- /**
5862
- * When set to dvb, uses DVB buffer model for Dolby Digital audio. When set to atsc, the ATSC model is used.
5863
- * @public
5864
- */
5865
- AudioBufferModel?: M2tsAudioBufferModel | undefined;
5866
- /**
5867
- * The number of audio frames to insert for each PES packet.
5868
- * @public
5869
- */
5870
- AudioFramesPerPes?: number | undefined;
5871
- /**
5872
- * Packet Identifier (PID) of the elementary audio stream(s) in the transport stream. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values. Each PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
5873
- * @public
5874
- */
5875
- AudioPids?: string | undefined;
5876
- /**
5877
- * When set to atsc, uses stream type = 0x81 for AC3 and stream type = 0x87 for EAC3. When set to dvb, uses stream type = 0x06.
5878
- * @public
5879
- */
5880
- AudioStreamType?: M2tsAudioStreamType | undefined;
5881
- /**
5882
- * The output bitrate of the transport stream in bits per second. Setting to 0 lets the muxer automatically determine the appropriate bitrate.
5883
- * @public
5884
- */
5885
- Bitrate?: number | undefined;
5886
- /**
5887
- * Controls the timing accuracy for output network traffic. Leave as MULTIPLEX to ensure accurate network packet timing. Or set to NONE, which might result in lower latency but will result in more variability in output network packet timing. This variability might cause interruptions, jitter, or bursty behavior in your playback or receiving devices.
5888
- * @public
5889
- */
5890
- BufferModel?: M2tsBufferModel | undefined;
5891
- /**
5892
- * When set to enabled, generates captionServiceDescriptor in PMT.
5893
- * @public
5894
- */
5895
- CcDescriptor?: M2tsCcDescriptor | undefined;
5896
- /**
5897
- * Inserts DVB Network Information Table (NIT) at the specified table repetition interval.
5898
- * @public
5899
- */
5900
- DvbNitSettings?: DvbNitSettings | undefined;
5901
- /**
5902
- * Inserts DVB Service Description Table (SDT) at the specified table repetition interval.
5903
- * @public
5904
- */
5905
- DvbSdtSettings?: DvbSdtSettings | undefined;
5906
- /**
5907
- * Packet Identifier (PID) for input source DVB Subtitle data to this output. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values. Each PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
5908
- * @public
5909
- */
5910
- DvbSubPids?: string | undefined;
5911
- /**
5912
- * Inserts DVB Time and Date Table (TDT) at the specified table repetition interval.
5913
- * @public
5914
- */
5915
- DvbTdtSettings?: DvbTdtSettings | undefined;
5916
- /**
5917
- * Packet Identifier (PID) for input source DVB Teletext data to this output. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
5918
- * @public
5919
- */
5920
- DvbTeletextPid?: string | undefined;
5921
- /**
5922
- * If set to passthrough, passes any EBIF data from the input source to this output.
5923
- * @public
5924
- */
5925
- Ebif?: M2tsEbifControl | undefined;
5926
- /**
5927
- * When videoAndFixedIntervals is selected, audio EBP markers will be added to partitions 3 and 4. The interval between these additional markers will be fixed, and will be slightly shorter than the video EBP marker interval. Only available when EBP Cablelabs segmentation markers are selected. Partitions 1 and 2 will always follow the video interval.
5928
- * @public
5929
- */
5930
- EbpAudioInterval?: M2tsAudioInterval | undefined;
5931
- /**
5932
- * When set, enforces that Encoder Boundary Points do not come within the specified time interval of each other by looking ahead at input video. If another EBP is going to come in within the specified time interval, the current EBP is not emitted, and the segment is "stretched" to the next marker. The lookahead value does not add latency to the system. The Live Event must be configured elsewhere to create sufficient latency to make the lookahead accurate.
5933
- * @public
5934
- */
5935
- EbpLookaheadMs?: number | undefined;
5936
- /**
5937
- * Controls placement of EBP on Audio PIDs. If set to videoAndAudioPids, EBP markers will be placed on the video PID and all audio PIDs. If set to videoPid, EBP markers will be placed on only the video PID.
5938
- * @public
5939
- */
5940
- EbpPlacement?: M2tsEbpPlacement | undefined;
5941
- /**
5942
- * This field is unused and deprecated.
5943
- * @public
5944
- */
5945
- EcmPid?: string | undefined;
5946
- /**
5947
- * Include or exclude the ES Rate field in the PES header.
5948
- * @public
5949
- */
5950
- EsRateInPes?: M2tsEsRateInPes | undefined;
5951
- /**
5952
- * Packet Identifier (PID) for input source ETV Platform data to this output. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
5953
- * @public
5954
- */
5955
- EtvPlatformPid?: string | undefined;
5956
- /**
5957
- * Packet Identifier (PID) for input source ETV Signal data to this output. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
5958
- * @public
5959
- */
5960
- EtvSignalPid?: string | undefined;
5961
- /**
5962
- * The length in seconds of each fragment. Only used with EBP markers.
5963
- * @public
5964
- */
5965
- FragmentTime?: number | undefined;
5966
- /**
5967
- * If set to passthrough, passes any KLV data from the input source to this output.
5968
- * @public
5969
- */
5970
- Klv?: M2tsKlv | undefined;
5971
- /**
5972
- * Packet Identifier (PID) for input source KLV data to this output. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values. Each PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
5973
- * @public
5974
- */
5975
- KlvDataPids?: string | undefined;
5976
- /**
5977
- * If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
5978
- * @public
5979
- */
5980
- NielsenId3Behavior?: M2tsNielsenId3Behavior | undefined;
5981
- /**
5982
- * Value in bits per second of extra null packets to insert into the transport stream. This can be used if a downstream encryption system requires periodic null packets.
5983
- * @public
5984
- */
5985
- NullPacketBitrate?: number | undefined;
5986
- /**
5987
- * The number of milliseconds between instances of this table in the output transport stream. Valid values are 0, 10..1000.
5988
- * @public
5989
- */
5990
- PatInterval?: number | undefined;
5991
- /**
5992
- * When set to pcrEveryPesPacket, a Program Clock Reference value is inserted for every Packetized Elementary Stream (PES) header. This parameter is effective only when the PCR PID is the same as the video or audio elementary stream.
5993
- * @public
5994
- */
5995
- PcrControl?: M2tsPcrControl | undefined;
5996
- /**
5997
- * Maximum time in milliseconds between Program Clock Reference (PCRs) inserted into the transport stream.
5998
- * @public
5999
- */
6000
- PcrPeriod?: number | undefined;
6001
- /**
6002
- * Packet Identifier (PID) of the Program Clock Reference (PCR) in the transport stream. When no value is given, the encoder will assign the same value as the Video PID. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
6003
- * @public
6004
- */
6005
- PcrPid?: string | undefined;
6006
- /**
6007
- * The number of milliseconds between instances of this table in the output transport stream. Valid values are 0, 10..1000.
6008
- * @public
6009
- */
6010
- PmtInterval?: number | undefined;
6011
- /**
6012
- * Packet Identifier (PID) for the Program Map Table (PMT) in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
6013
- * @public
6014
- */
6015
- PmtPid?: string | undefined;
6016
- /**
6017
- * The value of the program number field in the Program Map Table.
6018
- * @public
6019
- */
6020
- ProgramNum?: number | undefined;
6021
- /**
6022
- * When vbr, does not insert null packets into transport stream to fill specified bitrate. The bitrate setting acts as the maximum bitrate when vbr is set.
6023
- * @public
6024
- */
6025
- RateMode?: M2tsRateMode | undefined;
6026
- /**
6027
- * Packet Identifier (PID) for input source SCTE-27 data to this output. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values. Each PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
6028
- * @public
6029
- */
6030
- Scte27Pids?: string | undefined;
6031
- /**
6032
- * Optionally pass SCTE-35 signals from the input source to this output.
6033
- * @public
6034
- */
6035
- Scte35Control?: M2tsScte35Control | undefined;
6036
- /**
6037
- * Packet Identifier (PID) of the SCTE-35 stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
6038
- * @public
6039
- */
6040
- Scte35Pid?: string | undefined;
6041
- /**
6042
- * Inserts segmentation markers at each segmentationTime period. raiSegstart sets the Random Access Indicator bit in the adaptation field. raiAdapt sets the RAI bit and adds the current timecode in the private data bytes. psiSegstart inserts PAT and PMT tables at the start of segments. ebp adds Encoder Boundary Point information to the adaptation field as per OpenCable specification OC-SP-EBP-I01-130118. ebpLegacy adds Encoder Boundary Point information to the adaptation field using a legacy proprietary format.
6043
- * @public
6044
- */
6045
- SegmentationMarkers?: M2tsSegmentationMarkers | undefined;
6046
- /**
6047
- * The segmentation style parameter controls how segmentation markers are inserted into the transport stream. With avails, it is possible that segments may be truncated, which can influence where future segmentation markers are inserted.
6048
- *
6049
- * When a segmentation style of "resetCadence" is selected and a segment is truncated due to an avail, we will reset the segmentation cadence. This means the subsequent segment will have a duration of $segmentationTime seconds.
6050
- *
6051
- * When a segmentation style of "maintainCadence" is selected and a segment is truncated due to an avail, we will not reset the segmentation cadence. This means the subsequent segment will likely be truncated as well. However, all segments after that will have a duration of $segmentationTime seconds. Note that EBP lookahead is a slight exception to this rule.
6052
- * @public
6053
- */
6054
- SegmentationStyle?: M2tsSegmentationStyle | undefined;
6055
- /**
6056
- * The length in seconds of each segment. Required unless markers is set to _none_.
6057
- * @public
6058
- */
6059
- SegmentationTime?: number | undefined;
6060
- /**
6061
- * When set to passthrough, timed metadata will be passed through from input to output.
6062
- * @public
6063
- */
6064
- TimedMetadataBehavior?: M2tsTimedMetadataBehavior | undefined;
6065
- /**
6066
- * Packet Identifier (PID) of the timed metadata stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
6067
- * @public
6068
- */
6069
- TimedMetadataPid?: string | undefined;
6070
- /**
6071
- * The value of the transport stream ID field in the Program Map Table.
6072
- * @public
6073
- */
6074
- TransportStreamId?: number | undefined;
6075
- /**
6076
- * Packet Identifier (PID) of the elementary video stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
6077
- * @public
6078
- */
6079
- VideoPid?: string | undefined;
6080
- /**
6081
- * Defines the amount SCTE-35 preroll will be increased (in milliseconds) on the output. Preroll is the amount of time between the presence of a SCTE-35 indication in a transport stream and the PTS of the video frame it references. Zero means don't add pullup (it doesn't mean set the preroll to zero). Negative pullup is not supported, which means that you can't make the preroll shorter. Be aware that latency in the output will increase by the pullup amount.
6082
- * @public
6083
- */
6084
- Scte35PrerollPullupMilliseconds?: number | undefined;
6085
- }
6086
- /**
6087
- * Raw Settings
6088
- * @public
6089
- */
6090
- export interface RawSettings {
6091
- }
6092
- /**
6093
- * Archive Container Settings
6094
- * @public
6095
- */
6096
- export interface ArchiveContainerSettings {
6097
- /**
6098
- * M2ts Settings
6099
- * @public
6100
- */
6101
- M2tsSettings?: M2tsSettings | undefined;
6102
- /**
6103
- * Raw Settings
6104
- * @public
6105
- */
6106
- RawSettings?: RawSettings | undefined;
6107
- }
6108
- /**
6109
- * Archive Output Settings
6110
- * @public
6111
- */
6112
- export interface ArchiveOutputSettings {
6113
- /**
6114
- * Settings specific to the container type of the file.
6115
- * @public
6116
- */
6117
- ContainerSettings: ArchiveContainerSettings | undefined;
6118
- /**
6119
- * Output file extension. If excluded, this will be auto-selected from the container type.
6120
- * @public
6121
- */
6122
- Extension?: string | undefined;
6123
- /**
6124
- * String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
6125
- * @public
6126
- */
6127
- NameModifier?: string | undefined;
6128
- }