aws-sdk-medialive 1.52.0 → 1.57.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-medialive.rb +3 -2
- data/lib/aws-sdk-medialive/client.rb +527 -14
- data/lib/aws-sdk-medialive/client_api.rb +365 -2
- data/lib/aws-sdk-medialive/types.rb +1175 -62
- metadata +4 -4
@@ -159,6 +159,28 @@ module Aws::MediaLive
|
|
159
159
|
include Aws::Structure
|
160
160
|
end
|
161
161
|
|
162
|
+
# @note When making an API call, you may pass AcceptInputDeviceTransferRequest
|
163
|
+
# data as a hash:
|
164
|
+
#
|
165
|
+
# {
|
166
|
+
# input_device_id: "__string", # required
|
167
|
+
# }
|
168
|
+
#
|
169
|
+
# @!attribute [rw] input_device_id
|
170
|
+
# @return [String]
|
171
|
+
#
|
172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AcceptInputDeviceTransferRequest AWS API Documentation
|
173
|
+
#
|
174
|
+
class AcceptInputDeviceTransferRequest < Struct.new(
|
175
|
+
:input_device_id)
|
176
|
+
SENSITIVE = []
|
177
|
+
include Aws::Structure
|
178
|
+
end
|
179
|
+
|
180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AcceptInputDeviceTransferResponse AWS API Documentation
|
181
|
+
#
|
182
|
+
class AcceptInputDeviceTransferResponse < Aws::EmptyStructure; end
|
183
|
+
|
162
184
|
# @!attribute [rw] message
|
163
185
|
# @return [String]
|
164
186
|
#
|
@@ -170,6 +192,32 @@ module Aws::MediaLive
|
|
170
192
|
include Aws::Structure
|
171
193
|
end
|
172
194
|
|
195
|
+
# Ancillary Source Settings
|
196
|
+
#
|
197
|
+
# @note When making an API call, you may pass AncillarySourceSettings
|
198
|
+
# data as a hash:
|
199
|
+
#
|
200
|
+
# {
|
201
|
+
# source_ancillary_channel_number: 1,
|
202
|
+
# }
|
203
|
+
#
|
204
|
+
# @!attribute [rw] source_ancillary_channel_number
|
205
|
+
# Specifies the number (1 to 4) of the captions channel you want to
|
206
|
+
# extract from the ancillary captions. If you plan to convert the
|
207
|
+
# ancillary captions to another format, complete this field. If you
|
208
|
+
# plan to choose Embedded as the captions destination in the output
|
209
|
+
# (to pass through all the channels in the ancillary captions), leave
|
210
|
+
# this field blank because MediaLive ignores the field.
|
211
|
+
# @return [Integer]
|
212
|
+
#
|
213
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AncillarySourceSettings AWS API Documentation
|
214
|
+
#
|
215
|
+
class AncillarySourceSettings < Struct.new(
|
216
|
+
:source_ancillary_channel_number)
|
217
|
+
SENSITIVE = []
|
218
|
+
include Aws::Structure
|
219
|
+
end
|
220
|
+
|
173
221
|
# Archive Container Settings
|
174
222
|
#
|
175
223
|
# @note When making an API call, you may pass ArchiveContainerSettings
|
@@ -236,16 +284,23 @@ module Aws::MediaLive
|
|
236
284
|
# transport_stream_id: 1,
|
237
285
|
# video_pid: "__string",
|
238
286
|
# },
|
287
|
+
# raw_settings: {
|
288
|
+
# },
|
239
289
|
# }
|
240
290
|
#
|
241
291
|
# @!attribute [rw] m2ts_settings
|
242
292
|
# M2ts Settings
|
243
293
|
# @return [Types::M2tsSettings]
|
244
294
|
#
|
295
|
+
# @!attribute [rw] raw_settings
|
296
|
+
# Raw Settings
|
297
|
+
# @return [Types::RawSettings]
|
298
|
+
#
|
245
299
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ArchiveContainerSettings AWS API Documentation
|
246
300
|
#
|
247
301
|
class ArchiveContainerSettings < Struct.new(
|
248
|
-
:m2ts_settings
|
302
|
+
:m2ts_settings,
|
303
|
+
:raw_settings)
|
249
304
|
SENSITIVE = []
|
250
305
|
include Aws::Structure
|
251
306
|
end
|
@@ -347,6 +402,8 @@ module Aws::MediaLive
|
|
347
402
|
# transport_stream_id: 1,
|
348
403
|
# video_pid: "__string",
|
349
404
|
# },
|
405
|
+
# raw_settings: {
|
406
|
+
# },
|
350
407
|
# },
|
351
408
|
# extension: "__string",
|
352
409
|
# name_modifier: "__string",
|
@@ -480,6 +537,11 @@ module Aws::MediaLive
|
|
480
537
|
# },
|
481
538
|
# pass_through_settings: {
|
482
539
|
# },
|
540
|
+
# wav_settings: {
|
541
|
+
# bit_depth: 1.0,
|
542
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
543
|
+
# sample_rate: 1.0,
|
544
|
+
# },
|
483
545
|
# }
|
484
546
|
#
|
485
547
|
# @!attribute [rw] aac_settings
|
@@ -502,6 +564,10 @@ module Aws::MediaLive
|
|
502
564
|
# Pass Through Settings
|
503
565
|
# @return [Types::PassThroughSettings]
|
504
566
|
#
|
567
|
+
# @!attribute [rw] wav_settings
|
568
|
+
# Wav Settings
|
569
|
+
# @return [Types::WavSettings]
|
570
|
+
#
|
505
571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioCodecSettings AWS API Documentation
|
506
572
|
#
|
507
573
|
class AudioCodecSettings < Struct.new(
|
@@ -509,7 +575,8 @@ module Aws::MediaLive
|
|
509
575
|
:ac_3_settings,
|
510
576
|
:eac_3_settings,
|
511
577
|
:mp_2_settings,
|
512
|
-
:pass_through_settings
|
578
|
+
:pass_through_settings,
|
579
|
+
:wav_settings)
|
513
580
|
SENSITIVE = []
|
514
581
|
include Aws::Structure
|
515
582
|
end
|
@@ -578,6 +645,11 @@ module Aws::MediaLive
|
|
578
645
|
# },
|
579
646
|
# pass_through_settings: {
|
580
647
|
# },
|
648
|
+
# wav_settings: {
|
649
|
+
# bit_depth: 1.0,
|
650
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
651
|
+
# sample_rate: 1.0,
|
652
|
+
# },
|
581
653
|
# },
|
582
654
|
# language_code: "__stringMin1Max35",
|
583
655
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -949,7 +1021,7 @@ module Aws::MediaLive
|
|
949
1021
|
# }
|
950
1022
|
#
|
951
1023
|
# @!attribute [rw] tracks
|
952
|
-
# Selects one or more unique audio tracks from within
|
1024
|
+
# Selects one or more unique audio tracks from within a source.
|
953
1025
|
# @return [Array<Types::AudioTrack>]
|
954
1026
|
#
|
955
1027
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioTrackSelection AWS API Documentation
|
@@ -1111,6 +1183,131 @@ module Aws::MediaLive
|
|
1111
1183
|
include Aws::Structure
|
1112
1184
|
end
|
1113
1185
|
|
1186
|
+
# Batch delete resource request
|
1187
|
+
#
|
1188
|
+
# @!attribute [rw] channel_ids
|
1189
|
+
# List of channel IDs
|
1190
|
+
# @return [Array<String>]
|
1191
|
+
#
|
1192
|
+
# @!attribute [rw] input_ids
|
1193
|
+
# List of input IDs
|
1194
|
+
# @return [Array<String>]
|
1195
|
+
#
|
1196
|
+
# @!attribute [rw] input_security_group_ids
|
1197
|
+
# List of input security group IDs
|
1198
|
+
# @return [Array<String>]
|
1199
|
+
#
|
1200
|
+
# @!attribute [rw] multiplex_ids
|
1201
|
+
# List of multiplex IDs
|
1202
|
+
# @return [Array<String>]
|
1203
|
+
#
|
1204
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDelete AWS API Documentation
|
1205
|
+
#
|
1206
|
+
class BatchDelete < Struct.new(
|
1207
|
+
:channel_ids,
|
1208
|
+
:input_ids,
|
1209
|
+
:input_security_group_ids,
|
1210
|
+
:multiplex_ids)
|
1211
|
+
SENSITIVE = []
|
1212
|
+
include Aws::Structure
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
# @note When making an API call, you may pass BatchDeleteRequest
|
1216
|
+
# data as a hash:
|
1217
|
+
#
|
1218
|
+
# {
|
1219
|
+
# channel_ids: ["__string"],
|
1220
|
+
# input_ids: ["__string"],
|
1221
|
+
# input_security_group_ids: ["__string"],
|
1222
|
+
# multiplex_ids: ["__string"],
|
1223
|
+
# }
|
1224
|
+
#
|
1225
|
+
# @!attribute [rw] channel_ids
|
1226
|
+
# @return [Array<String>]
|
1227
|
+
#
|
1228
|
+
# @!attribute [rw] input_ids
|
1229
|
+
# @return [Array<String>]
|
1230
|
+
#
|
1231
|
+
# @!attribute [rw] input_security_group_ids
|
1232
|
+
# @return [Array<String>]
|
1233
|
+
#
|
1234
|
+
# @!attribute [rw] multiplex_ids
|
1235
|
+
# @return [Array<String>]
|
1236
|
+
#
|
1237
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDeleteRequest AWS API Documentation
|
1238
|
+
#
|
1239
|
+
class BatchDeleteRequest < Struct.new(
|
1240
|
+
:channel_ids,
|
1241
|
+
:input_ids,
|
1242
|
+
:input_security_group_ids,
|
1243
|
+
:multiplex_ids)
|
1244
|
+
SENSITIVE = []
|
1245
|
+
include Aws::Structure
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
# @!attribute [rw] failed
|
1249
|
+
# @return [Array<Types::BatchFailedResultModel>]
|
1250
|
+
#
|
1251
|
+
# @!attribute [rw] successful
|
1252
|
+
# @return [Array<Types::BatchSuccessfulResultModel>]
|
1253
|
+
#
|
1254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDeleteResponse AWS API Documentation
|
1255
|
+
#
|
1256
|
+
class BatchDeleteResponse < Struct.new(
|
1257
|
+
:failed,
|
1258
|
+
:successful)
|
1259
|
+
SENSITIVE = []
|
1260
|
+
include Aws::Structure
|
1261
|
+
end
|
1262
|
+
|
1263
|
+
# Batch delete resource results
|
1264
|
+
#
|
1265
|
+
# @!attribute [rw] failed
|
1266
|
+
# List of failed operations
|
1267
|
+
# @return [Array<Types::BatchFailedResultModel>]
|
1268
|
+
#
|
1269
|
+
# @!attribute [rw] successful
|
1270
|
+
# List of successful operations
|
1271
|
+
# @return [Array<Types::BatchSuccessfulResultModel>]
|
1272
|
+
#
|
1273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDeleteResultModel AWS API Documentation
|
1274
|
+
#
|
1275
|
+
class BatchDeleteResultModel < Struct.new(
|
1276
|
+
:failed,
|
1277
|
+
:successful)
|
1278
|
+
SENSITIVE = []
|
1279
|
+
include Aws::Structure
|
1280
|
+
end
|
1281
|
+
|
1282
|
+
# Details from a failed operation
|
1283
|
+
#
|
1284
|
+
# @!attribute [rw] arn
|
1285
|
+
# ARN of the resource
|
1286
|
+
# @return [String]
|
1287
|
+
#
|
1288
|
+
# @!attribute [rw] code
|
1289
|
+
# Error code for the failed operation
|
1290
|
+
# @return [String]
|
1291
|
+
#
|
1292
|
+
# @!attribute [rw] id
|
1293
|
+
# ID of the resource
|
1294
|
+
# @return [String]
|
1295
|
+
#
|
1296
|
+
# @!attribute [rw] message
|
1297
|
+
# Error message for the failed operation
|
1298
|
+
# @return [String]
|
1299
|
+
#
|
1300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchFailedResultModel AWS API Documentation
|
1301
|
+
#
|
1302
|
+
class BatchFailedResultModel < Struct.new(
|
1303
|
+
:arn,
|
1304
|
+
:code,
|
1305
|
+
:id,
|
1306
|
+
:message)
|
1307
|
+
SENSITIVE = []
|
1308
|
+
include Aws::Structure
|
1309
|
+
end
|
1310
|
+
|
1114
1311
|
# A list of schedule actions to create (in a request) or that have been
|
1115
1312
|
# created (in a response).
|
1116
1313
|
#
|
@@ -1293,6 +1490,182 @@ module Aws::MediaLive
|
|
1293
1490
|
include Aws::Structure
|
1294
1491
|
end
|
1295
1492
|
|
1493
|
+
# Batch start resource request
|
1494
|
+
#
|
1495
|
+
# @!attribute [rw] channel_ids
|
1496
|
+
# List of channel IDs
|
1497
|
+
# @return [Array<String>]
|
1498
|
+
#
|
1499
|
+
# @!attribute [rw] multiplex_ids
|
1500
|
+
# List of multiplex IDs
|
1501
|
+
# @return [Array<String>]
|
1502
|
+
#
|
1503
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStart AWS API Documentation
|
1504
|
+
#
|
1505
|
+
class BatchStart < Struct.new(
|
1506
|
+
:channel_ids,
|
1507
|
+
:multiplex_ids)
|
1508
|
+
SENSITIVE = []
|
1509
|
+
include Aws::Structure
|
1510
|
+
end
|
1511
|
+
|
1512
|
+
# @note When making an API call, you may pass BatchStartRequest
|
1513
|
+
# data as a hash:
|
1514
|
+
#
|
1515
|
+
# {
|
1516
|
+
# channel_ids: ["__string"],
|
1517
|
+
# multiplex_ids: ["__string"],
|
1518
|
+
# }
|
1519
|
+
#
|
1520
|
+
# @!attribute [rw] channel_ids
|
1521
|
+
# @return [Array<String>]
|
1522
|
+
#
|
1523
|
+
# @!attribute [rw] multiplex_ids
|
1524
|
+
# @return [Array<String>]
|
1525
|
+
#
|
1526
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStartRequest AWS API Documentation
|
1527
|
+
#
|
1528
|
+
class BatchStartRequest < Struct.new(
|
1529
|
+
:channel_ids,
|
1530
|
+
:multiplex_ids)
|
1531
|
+
SENSITIVE = []
|
1532
|
+
include Aws::Structure
|
1533
|
+
end
|
1534
|
+
|
1535
|
+
# @!attribute [rw] failed
|
1536
|
+
# @return [Array<Types::BatchFailedResultModel>]
|
1537
|
+
#
|
1538
|
+
# @!attribute [rw] successful
|
1539
|
+
# @return [Array<Types::BatchSuccessfulResultModel>]
|
1540
|
+
#
|
1541
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStartResponse AWS API Documentation
|
1542
|
+
#
|
1543
|
+
class BatchStartResponse < Struct.new(
|
1544
|
+
:failed,
|
1545
|
+
:successful)
|
1546
|
+
SENSITIVE = []
|
1547
|
+
include Aws::Structure
|
1548
|
+
end
|
1549
|
+
|
1550
|
+
# Batch start resource results
|
1551
|
+
#
|
1552
|
+
# @!attribute [rw] failed
|
1553
|
+
# List of failed operations
|
1554
|
+
# @return [Array<Types::BatchFailedResultModel>]
|
1555
|
+
#
|
1556
|
+
# @!attribute [rw] successful
|
1557
|
+
# List of successful operations
|
1558
|
+
# @return [Array<Types::BatchSuccessfulResultModel>]
|
1559
|
+
#
|
1560
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStartResultModel AWS API Documentation
|
1561
|
+
#
|
1562
|
+
class BatchStartResultModel < Struct.new(
|
1563
|
+
:failed,
|
1564
|
+
:successful)
|
1565
|
+
SENSITIVE = []
|
1566
|
+
include Aws::Structure
|
1567
|
+
end
|
1568
|
+
|
1569
|
+
# Batch stop resource request
|
1570
|
+
#
|
1571
|
+
# @!attribute [rw] channel_ids
|
1572
|
+
# List of channel IDs
|
1573
|
+
# @return [Array<String>]
|
1574
|
+
#
|
1575
|
+
# @!attribute [rw] multiplex_ids
|
1576
|
+
# List of multiplex IDs
|
1577
|
+
# @return [Array<String>]
|
1578
|
+
#
|
1579
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStop AWS API Documentation
|
1580
|
+
#
|
1581
|
+
class BatchStop < Struct.new(
|
1582
|
+
:channel_ids,
|
1583
|
+
:multiplex_ids)
|
1584
|
+
SENSITIVE = []
|
1585
|
+
include Aws::Structure
|
1586
|
+
end
|
1587
|
+
|
1588
|
+
# @note When making an API call, you may pass BatchStopRequest
|
1589
|
+
# data as a hash:
|
1590
|
+
#
|
1591
|
+
# {
|
1592
|
+
# channel_ids: ["__string"],
|
1593
|
+
# multiplex_ids: ["__string"],
|
1594
|
+
# }
|
1595
|
+
#
|
1596
|
+
# @!attribute [rw] channel_ids
|
1597
|
+
# @return [Array<String>]
|
1598
|
+
#
|
1599
|
+
# @!attribute [rw] multiplex_ids
|
1600
|
+
# @return [Array<String>]
|
1601
|
+
#
|
1602
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStopRequest AWS API Documentation
|
1603
|
+
#
|
1604
|
+
class BatchStopRequest < Struct.new(
|
1605
|
+
:channel_ids,
|
1606
|
+
:multiplex_ids)
|
1607
|
+
SENSITIVE = []
|
1608
|
+
include Aws::Structure
|
1609
|
+
end
|
1610
|
+
|
1611
|
+
# @!attribute [rw] failed
|
1612
|
+
# @return [Array<Types::BatchFailedResultModel>]
|
1613
|
+
#
|
1614
|
+
# @!attribute [rw] successful
|
1615
|
+
# @return [Array<Types::BatchSuccessfulResultModel>]
|
1616
|
+
#
|
1617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStopResponse AWS API Documentation
|
1618
|
+
#
|
1619
|
+
class BatchStopResponse < Struct.new(
|
1620
|
+
:failed,
|
1621
|
+
:successful)
|
1622
|
+
SENSITIVE = []
|
1623
|
+
include Aws::Structure
|
1624
|
+
end
|
1625
|
+
|
1626
|
+
# Batch stop resource results
|
1627
|
+
#
|
1628
|
+
# @!attribute [rw] failed
|
1629
|
+
# List of failed operations
|
1630
|
+
# @return [Array<Types::BatchFailedResultModel>]
|
1631
|
+
#
|
1632
|
+
# @!attribute [rw] successful
|
1633
|
+
# List of successful operations
|
1634
|
+
# @return [Array<Types::BatchSuccessfulResultModel>]
|
1635
|
+
#
|
1636
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStopResultModel AWS API Documentation
|
1637
|
+
#
|
1638
|
+
class BatchStopResultModel < Struct.new(
|
1639
|
+
:failed,
|
1640
|
+
:successful)
|
1641
|
+
SENSITIVE = []
|
1642
|
+
include Aws::Structure
|
1643
|
+
end
|
1644
|
+
|
1645
|
+
# Details from a successful operation
|
1646
|
+
#
|
1647
|
+
# @!attribute [rw] arn
|
1648
|
+
# ARN of the resource
|
1649
|
+
# @return [String]
|
1650
|
+
#
|
1651
|
+
# @!attribute [rw] id
|
1652
|
+
# ID of the resource
|
1653
|
+
# @return [String]
|
1654
|
+
#
|
1655
|
+
# @!attribute [rw] state
|
1656
|
+
# Current state of the resource
|
1657
|
+
# @return [String]
|
1658
|
+
#
|
1659
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchSuccessfulResultModel AWS API Documentation
|
1660
|
+
#
|
1661
|
+
class BatchSuccessfulResultModel < Struct.new(
|
1662
|
+
:arn,
|
1663
|
+
:id,
|
1664
|
+
:state)
|
1665
|
+
SENSITIVE = []
|
1666
|
+
include Aws::Structure
|
1667
|
+
end
|
1668
|
+
|
1296
1669
|
# A request to create actions (add actions to the schedule), delete
|
1297
1670
|
# actions (remove actions from the schedule), or both create and delete
|
1298
1671
|
# actions.
|
@@ -1713,6 +2086,28 @@ module Aws::MediaLive
|
|
1713
2086
|
include Aws::Structure
|
1714
2087
|
end
|
1715
2088
|
|
2089
|
+
# @note When making an API call, you may pass CancelInputDeviceTransferRequest
|
2090
|
+
# data as a hash:
|
2091
|
+
#
|
2092
|
+
# {
|
2093
|
+
# input_device_id: "__string", # required
|
2094
|
+
# }
|
2095
|
+
#
|
2096
|
+
# @!attribute [rw] input_device_id
|
2097
|
+
# @return [String]
|
2098
|
+
#
|
2099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CancelInputDeviceTransferRequest AWS API Documentation
|
2100
|
+
#
|
2101
|
+
class CancelInputDeviceTransferRequest < Struct.new(
|
2102
|
+
:input_device_id)
|
2103
|
+
SENSITIVE = []
|
2104
|
+
include Aws::Structure
|
2105
|
+
end
|
2106
|
+
|
2107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CancelInputDeviceTransferResponse AWS API Documentation
|
2108
|
+
#
|
2109
|
+
class CancelInputDeviceTransferResponse < Aws::EmptyStructure; end
|
2110
|
+
|
1716
2111
|
# Caption Description
|
1717
2112
|
#
|
1718
2113
|
# @note When making an API call, you may pass CaptionDescription
|
@@ -2035,6 +2430,9 @@ module Aws::MediaLive
|
|
2035
2430
|
# language_code: "__string",
|
2036
2431
|
# name: "__stringMin1", # required
|
2037
2432
|
# selector_settings: {
|
2433
|
+
# ancillary_source_settings: {
|
2434
|
+
# source_ancillary_channel_number: 1,
|
2435
|
+
# },
|
2038
2436
|
# arib_source_settings: {
|
2039
2437
|
# },
|
2040
2438
|
# dvb_sub_source_settings: {
|
@@ -2090,6 +2488,9 @@ module Aws::MediaLive
|
|
2090
2488
|
# data as a hash:
|
2091
2489
|
#
|
2092
2490
|
# {
|
2491
|
+
# ancillary_source_settings: {
|
2492
|
+
# source_ancillary_channel_number: 1,
|
2493
|
+
# },
|
2093
2494
|
# arib_source_settings: {
|
2094
2495
|
# },
|
2095
2496
|
# dvb_sub_source_settings: {
|
@@ -2113,6 +2514,10 @@ module Aws::MediaLive
|
|
2113
2514
|
# },
|
2114
2515
|
# }
|
2115
2516
|
#
|
2517
|
+
# @!attribute [rw] ancillary_source_settings
|
2518
|
+
# Ancillary Source Settings
|
2519
|
+
# @return [Types::AncillarySourceSettings]
|
2520
|
+
#
|
2116
2521
|
# @!attribute [rw] arib_source_settings
|
2117
2522
|
# Arib Source Settings
|
2118
2523
|
# @return [Types::AribSourceSettings]
|
@@ -2140,6 +2545,7 @@ module Aws::MediaLive
|
|
2140
2545
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CaptionSelectorSettings AWS API Documentation
|
2141
2546
|
#
|
2142
2547
|
class CaptionSelectorSettings < Struct.new(
|
2548
|
+
:ancillary_source_settings,
|
2143
2549
|
:arib_source_settings,
|
2144
2550
|
:dvb_sub_source_settings,
|
2145
2551
|
:embedded_source_settings,
|
@@ -2150,10 +2556,33 @@ module Aws::MediaLive
|
|
2150
2556
|
include Aws::Structure
|
2151
2557
|
end
|
2152
2558
|
|
2559
|
+
# @note When making an API call, you may pass CdiInputSpecification
|
2560
|
+
# data as a hash:
|
2561
|
+
#
|
2562
|
+
# {
|
2563
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
2564
|
+
# }
|
2565
|
+
#
|
2566
|
+
# @!attribute [rw] resolution
|
2567
|
+
# Maximum CDI input resolution
|
2568
|
+
# @return [String]
|
2569
|
+
#
|
2570
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CdiInputSpecification AWS API Documentation
|
2571
|
+
#
|
2572
|
+
class CdiInputSpecification < Struct.new(
|
2573
|
+
:resolution)
|
2574
|
+
SENSITIVE = []
|
2575
|
+
include Aws::Structure
|
2576
|
+
end
|
2577
|
+
|
2153
2578
|
# @!attribute [rw] arn
|
2154
2579
|
# The unique arn of the channel.
|
2155
2580
|
# @return [String]
|
2156
2581
|
#
|
2582
|
+
# @!attribute [rw] cdi_input_specification
|
2583
|
+
# Specification of CDI inputs for this channel
|
2584
|
+
# @return [Types::CdiInputSpecification]
|
2585
|
+
#
|
2157
2586
|
# @!attribute [rw] channel_class
|
2158
2587
|
# The class for this channel. STANDARD for a channel with two
|
2159
2588
|
# pipelines or SINGLE\_PIPELINE for a channel with one pipeline.
|
@@ -2182,6 +2611,7 @@ module Aws::MediaLive
|
|
2182
2611
|
# @return [Array<Types::InputAttachment>]
|
2183
2612
|
#
|
2184
2613
|
# @!attribute [rw] input_specification
|
2614
|
+
# Specification of network and file inputs for this channel
|
2185
2615
|
# @return [Types::InputSpecification]
|
2186
2616
|
#
|
2187
2617
|
# @!attribute [rw] log_level
|
@@ -2216,6 +2646,7 @@ module Aws::MediaLive
|
|
2216
2646
|
#
|
2217
2647
|
class Channel < Struct.new(
|
2218
2648
|
:arn,
|
2649
|
+
:cdi_input_specification,
|
2219
2650
|
:channel_class,
|
2220
2651
|
:destinations,
|
2221
2652
|
:egress_endpoints,
|
@@ -2266,6 +2697,10 @@ module Aws::MediaLive
|
|
2266
2697
|
# The unique arn of the channel.
|
2267
2698
|
# @return [String]
|
2268
2699
|
#
|
2700
|
+
# @!attribute [rw] cdi_input_specification
|
2701
|
+
# Specification of CDI inputs for this channel
|
2702
|
+
# @return [Types::CdiInputSpecification]
|
2703
|
+
#
|
2269
2704
|
# @!attribute [rw] channel_class
|
2270
2705
|
# The class for this channel. STANDARD for a channel with two
|
2271
2706
|
# pipelines or SINGLE\_PIPELINE for a channel with one pipeline.
|
@@ -2290,6 +2725,7 @@ module Aws::MediaLive
|
|
2290
2725
|
# @return [Array<Types::InputAttachment>]
|
2291
2726
|
#
|
2292
2727
|
# @!attribute [rw] input_specification
|
2728
|
+
# Specification of network and file inputs for this channel
|
2293
2729
|
# @return [Types::InputSpecification]
|
2294
2730
|
#
|
2295
2731
|
# @!attribute [rw] log_level
|
@@ -2320,6 +2756,7 @@ module Aws::MediaLive
|
|
2320
2756
|
#
|
2321
2757
|
class ChannelSummary < Struct.new(
|
2322
2758
|
:arn,
|
2759
|
+
:cdi_input_specification,
|
2323
2760
|
:channel_class,
|
2324
2761
|
:destinations,
|
2325
2762
|
:egress_endpoints,
|
@@ -2355,6 +2792,10 @@ module Aws::MediaLive
|
|
2355
2792
|
include Aws::Structure
|
2356
2793
|
end
|
2357
2794
|
|
2795
|
+
# @!attribute [rw] cdi_input_specification
|
2796
|
+
# Specification of CDI inputs for this channel
|
2797
|
+
# @return [Types::CdiInputSpecification]
|
2798
|
+
#
|
2358
2799
|
# @!attribute [rw] channel_class
|
2359
2800
|
# The class for this channel. STANDARD for a channel with two
|
2360
2801
|
# pipelines or SINGLE\_PIPELINE for a channel with one pipeline.
|
@@ -2372,8 +2813,7 @@ module Aws::MediaLive
|
|
2372
2813
|
# @return [Array<Types::InputAttachment>]
|
2373
2814
|
#
|
2374
2815
|
# @!attribute [rw] input_specification
|
2375
|
-
# Specification of
|
2376
|
-
# codec, etc.)
|
2816
|
+
# Specification of network and file inputs for this channel
|
2377
2817
|
# @return [Types::InputSpecification]
|
2378
2818
|
#
|
2379
2819
|
# @!attribute [rw] log_level
|
@@ -2405,6 +2845,7 @@ module Aws::MediaLive
|
|
2405
2845
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannel AWS API Documentation
|
2406
2846
|
#
|
2407
2847
|
class CreateChannel < Struct.new(
|
2848
|
+
:cdi_input_specification,
|
2408
2849
|
:channel_class,
|
2409
2850
|
:destinations,
|
2410
2851
|
:encoder_settings,
|
@@ -2424,6 +2865,9 @@ module Aws::MediaLive
|
|
2424
2865
|
# data as a hash:
|
2425
2866
|
#
|
2426
2867
|
# {
|
2868
|
+
# cdi_input_specification: {
|
2869
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
2870
|
+
# },
|
2427
2871
|
# channel_class: "STANDARD", # accepts STANDARD, SINGLE_PIPELINE
|
2428
2872
|
# destinations: [
|
2429
2873
|
# {
|
@@ -2508,6 +2952,11 @@ module Aws::MediaLive
|
|
2508
2952
|
# },
|
2509
2953
|
# pass_through_settings: {
|
2510
2954
|
# },
|
2955
|
+
# wav_settings: {
|
2956
|
+
# bit_depth: 1.0,
|
2957
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
2958
|
+
# sample_rate: 1.0,
|
2959
|
+
# },
|
2511
2960
|
# },
|
2512
2961
|
# language_code: "__stringMin1Max35",
|
2513
2962
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -2890,6 +3339,8 @@ module Aws::MediaLive
|
|
2890
3339
|
# transport_stream_id: 1,
|
2891
3340
|
# video_pid: "__string",
|
2892
3341
|
# },
|
3342
|
+
# raw_settings: {
|
3343
|
+
# },
|
2893
3344
|
# },
|
2894
3345
|
# extension: "__string",
|
2895
3346
|
# name_modifier: "__string",
|
@@ -3152,6 +3603,29 @@ module Aws::MediaLive
|
|
3152
3603
|
# tier: "HIGH", # accepts HIGH, MAIN
|
3153
3604
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
3154
3605
|
# },
|
3606
|
+
# mpeg_2_settings: {
|
3607
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
3608
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
3609
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
3610
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
3611
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
3612
|
+
# filter_settings: {
|
3613
|
+
# temporal_filter_settings: {
|
3614
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
3615
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
3616
|
+
# },
|
3617
|
+
# },
|
3618
|
+
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
3619
|
+
# framerate_denominator: 1, # required
|
3620
|
+
# framerate_numerator: 1, # required
|
3621
|
+
# gop_closed_cadence: 1,
|
3622
|
+
# gop_num_b_frames: 1,
|
3623
|
+
# gop_size: 1.0,
|
3624
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
3625
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
3626
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
3627
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
3628
|
+
# },
|
3155
3629
|
# },
|
3156
3630
|
# height: 1,
|
3157
3631
|
# name: "__string", # required
|
@@ -3197,6 +3671,9 @@ module Aws::MediaLive
|
|
3197
3671
|
# language_code: "__string",
|
3198
3672
|
# name: "__stringMin1", # required
|
3199
3673
|
# selector_settings: {
|
3674
|
+
# ancillary_source_settings: {
|
3675
|
+
# source_ancillary_channel_number: 1,
|
3676
|
+
# },
|
3200
3677
|
# arib_source_settings: {
|
3201
3678
|
# },
|
3202
3679
|
# dvb_sub_source_settings: {
|
@@ -3266,6 +3743,9 @@ module Aws::MediaLive
|
|
3266
3743
|
# },
|
3267
3744
|
# }
|
3268
3745
|
#
|
3746
|
+
# @!attribute [rw] cdi_input_specification
|
3747
|
+
# @return [Types::CdiInputSpecification]
|
3748
|
+
#
|
3269
3749
|
# @!attribute [rw] channel_class
|
3270
3750
|
# A standard channel has two encoding pipelines and a single pipeline
|
3271
3751
|
# channel only has one.
|
@@ -3308,6 +3788,7 @@ module Aws::MediaLive
|
|
3308
3788
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannelRequest AWS API Documentation
|
3309
3789
|
#
|
3310
3790
|
class CreateChannelRequest < Struct.new(
|
3791
|
+
:cdi_input_specification,
|
3311
3792
|
:channel_class,
|
3312
3793
|
:destinations,
|
3313
3794
|
:encoder_settings,
|
@@ -3451,7 +3932,7 @@ module Aws::MediaLive
|
|
3451
3932
|
# tags: {
|
3452
3933
|
# "__string" => "__string",
|
3453
3934
|
# },
|
3454
|
-
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE
|
3935
|
+
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI
|
3455
3936
|
# vpc: {
|
3456
3937
|
# security_group_ids: ["__string"],
|
3457
3938
|
# subnet_ids: ["__string"], # required
|
@@ -3665,6 +4146,7 @@ module Aws::MediaLive
|
|
3665
4146
|
# statmux_settings: {
|
3666
4147
|
# maximum_bitrate: 1,
|
3667
4148
|
# minimum_bitrate: 1,
|
4149
|
+
# priority: 1,
|
3668
4150
|
# },
|
3669
4151
|
# },
|
3670
4152
|
# },
|
@@ -3840,6 +4322,9 @@ module Aws::MediaLive
|
|
3840
4322
|
# @!attribute [rw] arn
|
3841
4323
|
# @return [String]
|
3842
4324
|
#
|
4325
|
+
# @!attribute [rw] cdi_input_specification
|
4326
|
+
# @return [Types::CdiInputSpecification]
|
4327
|
+
#
|
3843
4328
|
# @!attribute [rw] channel_class
|
3844
4329
|
# A standard channel has two encoding pipelines and a single pipeline
|
3845
4330
|
# channel only has one.
|
@@ -3890,6 +4375,7 @@ module Aws::MediaLive
|
|
3890
4375
|
#
|
3891
4376
|
class DeleteChannelResponse < Struct.new(
|
3892
4377
|
:arn,
|
4378
|
+
:cdi_input_specification,
|
3893
4379
|
:channel_class,
|
3894
4380
|
:destinations,
|
3895
4381
|
:egress_endpoints,
|
@@ -3986,6 +4472,9 @@ module Aws::MediaLive
|
|
3986
4472
|
# Packet identifiers map for a given Multiplex program.
|
3987
4473
|
# @return [Types::MultiplexProgramPacketIdentifiersMap]
|
3988
4474
|
#
|
4475
|
+
# @!attribute [rw] pipeline_details
|
4476
|
+
# @return [Array<Types::MultiplexProgramPipelineDetail>]
|
4477
|
+
#
|
3989
4478
|
# @!attribute [rw] program_name
|
3990
4479
|
# @return [String]
|
3991
4480
|
#
|
@@ -3995,6 +4484,7 @@ module Aws::MediaLive
|
|
3995
4484
|
:channel_id,
|
3996
4485
|
:multiplex_program_settings,
|
3997
4486
|
:packet_identifiers_map,
|
4487
|
+
:pipeline_details,
|
3998
4488
|
:program_name)
|
3999
4489
|
SENSITIVE = []
|
4000
4490
|
include Aws::Structure
|
@@ -4234,6 +4724,9 @@ module Aws::MediaLive
|
|
4234
4724
|
# @!attribute [rw] arn
|
4235
4725
|
# @return [String]
|
4236
4726
|
#
|
4727
|
+
# @!attribute [rw] cdi_input_specification
|
4728
|
+
# @return [Types::CdiInputSpecification]
|
4729
|
+
#
|
4237
4730
|
# @!attribute [rw] channel_class
|
4238
4731
|
# A standard channel has two encoding pipelines and a single pipeline
|
4239
4732
|
# channel only has one.
|
@@ -4284,6 +4777,7 @@ module Aws::MediaLive
|
|
4284
4777
|
#
|
4285
4778
|
class DescribeChannelResponse < Struct.new(
|
4286
4779
|
:arn,
|
4780
|
+
:cdi_input_specification,
|
4287
4781
|
:channel_class,
|
4288
4782
|
:destinations,
|
4289
4783
|
:egress_endpoints,
|
@@ -4391,7 +4885,6 @@ module Aws::MediaLive
|
|
4391
4885
|
# @return [String]
|
4392
4886
|
#
|
4393
4887
|
# @!attribute [rw] accept
|
4394
|
-
# Accept Header
|
4395
4888
|
# @return [String]
|
4396
4889
|
#
|
4397
4890
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDeviceThumbnailRequest AWS API Documentation
|
@@ -4605,6 +5098,9 @@ module Aws::MediaLive
|
|
4605
5098
|
# Packet identifiers map for a given Multiplex program.
|
4606
5099
|
# @return [Types::MultiplexProgramPacketIdentifiersMap]
|
4607
5100
|
#
|
5101
|
+
# @!attribute [rw] pipeline_details
|
5102
|
+
# @return [Array<Types::MultiplexProgramPipelineDetail>]
|
5103
|
+
#
|
4608
5104
|
# @!attribute [rw] program_name
|
4609
5105
|
# @return [String]
|
4610
5106
|
#
|
@@ -4614,6 +5110,7 @@ module Aws::MediaLive
|
|
4614
5110
|
:channel_id,
|
4615
5111
|
:multiplex_program_settings,
|
4616
5112
|
:packet_identifiers_map,
|
5113
|
+
:pipeline_details,
|
4617
5114
|
:program_name)
|
4618
5115
|
SENSITIVE = []
|
4619
5116
|
include Aws::Structure
|
@@ -5551,6 +6048,11 @@ module Aws::MediaLive
|
|
5551
6048
|
# },
|
5552
6049
|
# pass_through_settings: {
|
5553
6050
|
# },
|
6051
|
+
# wav_settings: {
|
6052
|
+
# bit_depth: 1.0,
|
6053
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
6054
|
+
# sample_rate: 1.0,
|
6055
|
+
# },
|
5554
6056
|
# },
|
5555
6057
|
# language_code: "__stringMin1Max35",
|
5556
6058
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -5933,6 +6435,8 @@ module Aws::MediaLive
|
|
5933
6435
|
# transport_stream_id: 1,
|
5934
6436
|
# video_pid: "__string",
|
5935
6437
|
# },
|
6438
|
+
# raw_settings: {
|
6439
|
+
# },
|
5936
6440
|
# },
|
5937
6441
|
# extension: "__string",
|
5938
6442
|
# name_modifier: "__string",
|
@@ -6195,6 +6699,29 @@ module Aws::MediaLive
|
|
6195
6699
|
# tier: "HIGH", # accepts HIGH, MAIN
|
6196
6700
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
6197
6701
|
# },
|
6702
|
+
# mpeg_2_settings: {
|
6703
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
6704
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
6705
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
6706
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
6707
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
6708
|
+
# filter_settings: {
|
6709
|
+
# temporal_filter_settings: {
|
6710
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
6711
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
6712
|
+
# },
|
6713
|
+
# },
|
6714
|
+
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
6715
|
+
# framerate_denominator: 1, # required
|
6716
|
+
# framerate_numerator: 1, # required
|
6717
|
+
# gop_closed_cadence: 1,
|
6718
|
+
# gop_num_b_frames: 1,
|
6719
|
+
# gop_size: 1.0,
|
6720
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
6721
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
6722
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
6723
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
6724
|
+
# },
|
6198
6725
|
# },
|
6199
6726
|
# height: 1,
|
6200
6727
|
# name: "__string", # required
|
@@ -6447,13 +6974,13 @@ module Aws::MediaLive
|
|
6447
6974
|
# @!attribute [rw] destination
|
6448
6975
|
# The destination for the frame capture files. Either the URI for an
|
6449
6976
|
# Amazon S3 bucket and object, plus a file name prefix (for example,
|
6450
|
-
# s3ssl://sportsDelivery/highlights/20180820/curling
|
6977
|
+
# s3ssl://sportsDelivery/highlights/20180820/curling-) or the URI for
|
6451
6978
|
# a MediaStore container, plus a file name prefix (for example,
|
6452
|
-
# mediastoressl://sportsDelivery/20180820/curling
|
6979
|
+
# mediastoressl://sportsDelivery/20180820/curling-). The final file
|
6453
6980
|
# names consist of the prefix from the destination field (for example,
|
6454
|
-
# "curling
|
6455
|
-
#
|
6456
|
-
#
|
6981
|
+
# "curling-") + name modifier + the counter (5 digits, starting from
|
6982
|
+
# 00001) + extension (which is always .jpg). For example,
|
6983
|
+
# curling-low.00001.jpg
|
6457
6984
|
# @return [Types::OutputLocationRef]
|
6458
6985
|
#
|
6459
6986
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FrameCaptureGroupSettings AWS API Documentation
|
@@ -7747,7 +8274,7 @@ module Aws::MediaLive
|
|
7747
8274
|
# Applies only if Mode field is LIVE. Specifies the maximum number of
|
7748
8275
|
# segments in the media manifest file. After this maximum, older
|
7749
8276
|
# segments are removed from the media manifest. This number must be
|
7750
|
-
#
|
8277
|
+
# smaller than the number in the Keep Segments field.
|
7751
8278
|
# @return [Integer]
|
7752
8279
|
#
|
7753
8280
|
# @!attribute [rw] input_loss_action
|
@@ -7771,7 +8298,14 @@ module Aws::MediaLive
|
|
7771
8298
|
#
|
7772
8299
|
# @!attribute [rw] keep_segments
|
7773
8300
|
# Applies only if Mode field is LIVE. Specifies the number of media
|
7774
|
-
# segments
|
8301
|
+
# segments to retain in the destination directory. This number should
|
8302
|
+
# be bigger than indexNSegments (Num segments). We recommend (value =
|
8303
|
+
# (2 x indexNsegments) + 1). If this "keep segments" number is too
|
8304
|
+
# low, the following might happen: the player is still reading a media
|
8305
|
+
# manifest file that lists this segment, but that segment has been
|
8306
|
+
# removed from the destination directory (as directed by
|
8307
|
+
# indexNSegments). This situation would result in a 404 HTTP error on
|
8308
|
+
# the player.
|
7775
8309
|
# @return [Integer]
|
7776
8310
|
#
|
7777
8311
|
# @!attribute [rw] key_format
|
@@ -8419,6 +8953,9 @@ module Aws::MediaLive
|
|
8419
8953
|
# language_code: "__string",
|
8420
8954
|
# name: "__stringMin1", # required
|
8421
8955
|
# selector_settings: {
|
8956
|
+
# ancillary_source_settings: {
|
8957
|
+
# source_ancillary_channel_number: 1,
|
8958
|
+
# },
|
8422
8959
|
# arib_source_settings: {
|
8423
8960
|
# },
|
8424
8961
|
# dvb_sub_source_settings: {
|
@@ -9186,6 +9723,9 @@ module Aws::MediaLive
|
|
9186
9723
|
# language_code: "__string",
|
9187
9724
|
# name: "__stringMin1", # required
|
9188
9725
|
# selector_settings: {
|
9726
|
+
# ancillary_source_settings: {
|
9727
|
+
# source_ancillary_channel_number: 1,
|
9728
|
+
# },
|
9189
9729
|
# arib_source_settings: {
|
9190
9730
|
# },
|
9191
9731
|
# dvb_sub_source_settings: {
|
@@ -9642,6 +10182,70 @@ module Aws::MediaLive
|
|
9642
10182
|
include Aws::Structure
|
9643
10183
|
end
|
9644
10184
|
|
10185
|
+
# @note When making an API call, you may pass ListInputDeviceTransfersRequest
|
10186
|
+
# data as a hash:
|
10187
|
+
#
|
10188
|
+
# {
|
10189
|
+
# max_results: 1,
|
10190
|
+
# next_token: "__string",
|
10191
|
+
# transfer_type: "__string", # required
|
10192
|
+
# }
|
10193
|
+
#
|
10194
|
+
# @!attribute [rw] max_results
|
10195
|
+
# @return [Integer]
|
10196
|
+
#
|
10197
|
+
# @!attribute [rw] next_token
|
10198
|
+
# @return [String]
|
10199
|
+
#
|
10200
|
+
# @!attribute [rw] transfer_type
|
10201
|
+
# @return [String]
|
10202
|
+
#
|
10203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersRequest AWS API Documentation
|
10204
|
+
#
|
10205
|
+
class ListInputDeviceTransfersRequest < Struct.new(
|
10206
|
+
:max_results,
|
10207
|
+
:next_token,
|
10208
|
+
:transfer_type)
|
10209
|
+
SENSITIVE = []
|
10210
|
+
include Aws::Structure
|
10211
|
+
end
|
10212
|
+
|
10213
|
+
# @!attribute [rw] input_device_transfers
|
10214
|
+
# @return [Array<Types::TransferringInputDeviceSummary>]
|
10215
|
+
#
|
10216
|
+
# @!attribute [rw] next_token
|
10217
|
+
# @return [String]
|
10218
|
+
#
|
10219
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersResponse AWS API Documentation
|
10220
|
+
#
|
10221
|
+
class ListInputDeviceTransfersResponse < Struct.new(
|
10222
|
+
:input_device_transfers,
|
10223
|
+
:next_token)
|
10224
|
+
SENSITIVE = []
|
10225
|
+
include Aws::Structure
|
10226
|
+
end
|
10227
|
+
|
10228
|
+
# The list of input devices in the transferred state. The recipient
|
10229
|
+
# hasn't yet accepted or rejected the transfer.
|
10230
|
+
#
|
10231
|
+
# @!attribute [rw] input_device_transfers
|
10232
|
+
# The list of devices that you are transferring or are being
|
10233
|
+
# transferred to you.
|
10234
|
+
# @return [Array<Types::TransferringInputDeviceSummary>]
|
10235
|
+
#
|
10236
|
+
# @!attribute [rw] next_token
|
10237
|
+
# A token to get additional list results.
|
10238
|
+
# @return [String]
|
10239
|
+
#
|
10240
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersResultModel AWS API Documentation
|
10241
|
+
#
|
10242
|
+
class ListInputDeviceTransfersResultModel < Struct.new(
|
10243
|
+
:input_device_transfers,
|
10244
|
+
:next_token)
|
10245
|
+
SENSITIVE = []
|
10246
|
+
include Aws::Structure
|
10247
|
+
end
|
10248
|
+
|
9645
10249
|
# @note When making an API call, you may pass ListInputDevicesRequest
|
9646
10250
|
# data as a hash:
|
9647
10251
|
#
|
@@ -10277,10 +10881,12 @@ module Aws::MediaLive
|
|
10277
10881
|
# @return [Integer]
|
10278
10882
|
#
|
10279
10883
|
# @!attribute [rw] buffer_model
|
10280
|
-
#
|
10281
|
-
#
|
10282
|
-
#
|
10283
|
-
#
|
10884
|
+
# Controls the timing accuracy for output network traffic. Leave as
|
10885
|
+
# MULTIPLEX to ensure accurate network packet timing. Or set to NONE,
|
10886
|
+
# which might result in lower latency but will result in more
|
10887
|
+
# variability in output network packet timing. This variability might
|
10888
|
+
# cause interruptions, jitter, or bursty behavior in your playback or
|
10889
|
+
# receiving devices.
|
10284
10890
|
# @return [String]
|
10285
10891
|
#
|
10286
10892
|
# @!attribute [rw] cc_descriptor
|
@@ -10785,50 +11391,241 @@ module Aws::MediaLive
|
|
10785
11391
|
#
|
10786
11392
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MediaPackageOutputDestinationSettings AWS API Documentation
|
10787
11393
|
#
|
10788
|
-
class MediaPackageOutputDestinationSettings < Struct.new(
|
10789
|
-
:channel_id)
|
10790
|
-
SENSITIVE = []
|
10791
|
-
include Aws::Structure
|
10792
|
-
end
|
10793
|
-
|
10794
|
-
# Media Package Output Settings
|
11394
|
+
class MediaPackageOutputDestinationSettings < Struct.new(
|
11395
|
+
:channel_id)
|
11396
|
+
SENSITIVE = []
|
11397
|
+
include Aws::Structure
|
11398
|
+
end
|
11399
|
+
|
11400
|
+
# Media Package Output Settings
|
11401
|
+
#
|
11402
|
+
# @api private
|
11403
|
+
#
|
11404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MediaPackageOutputSettings AWS API Documentation
|
11405
|
+
#
|
11406
|
+
class MediaPackageOutputSettings < Aws::EmptyStructure; end
|
11407
|
+
|
11408
|
+
# Mp2 Settings
|
11409
|
+
#
|
11410
|
+
# @note When making an API call, you may pass Mp2Settings
|
11411
|
+
# data as a hash:
|
11412
|
+
#
|
11413
|
+
# {
|
11414
|
+
# bitrate: 1.0,
|
11415
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0
|
11416
|
+
# sample_rate: 1.0,
|
11417
|
+
# }
|
11418
|
+
#
|
11419
|
+
# @!attribute [rw] bitrate
|
11420
|
+
# Average bitrate in bits/second.
|
11421
|
+
# @return [Float]
|
11422
|
+
#
|
11423
|
+
# @!attribute [rw] coding_mode
|
11424
|
+
# The MPEG2 Audio coding mode. Valid values are codingMode10 (for
|
11425
|
+
# mono) or codingMode20 (for stereo).
|
11426
|
+
# @return [String]
|
11427
|
+
#
|
11428
|
+
# @!attribute [rw] sample_rate
|
11429
|
+
# Sample rate in Hz.
|
11430
|
+
# @return [Float]
|
11431
|
+
#
|
11432
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Mp2Settings AWS API Documentation
|
11433
|
+
#
|
11434
|
+
class Mp2Settings < Struct.new(
|
11435
|
+
:bitrate,
|
11436
|
+
:coding_mode,
|
11437
|
+
:sample_rate)
|
11438
|
+
SENSITIVE = []
|
11439
|
+
include Aws::Structure
|
11440
|
+
end
|
11441
|
+
|
11442
|
+
# Mpeg2 Filter Settings
|
11443
|
+
#
|
11444
|
+
# @note When making an API call, you may pass Mpeg2FilterSettings
|
11445
|
+
# data as a hash:
|
11446
|
+
#
|
11447
|
+
# {
|
11448
|
+
# temporal_filter_settings: {
|
11449
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
11450
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
11451
|
+
# },
|
11452
|
+
# }
|
11453
|
+
#
|
11454
|
+
# @!attribute [rw] temporal_filter_settings
|
11455
|
+
# Temporal Filter Settings
|
11456
|
+
# @return [Types::TemporalFilterSettings]
|
11457
|
+
#
|
11458
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Mpeg2FilterSettings AWS API Documentation
|
11459
|
+
#
|
11460
|
+
class Mpeg2FilterSettings < Struct.new(
|
11461
|
+
:temporal_filter_settings)
|
11462
|
+
SENSITIVE = []
|
11463
|
+
include Aws::Structure
|
11464
|
+
end
|
11465
|
+
|
11466
|
+
# Mpeg2 Settings
|
11467
|
+
#
|
11468
|
+
# @note When making an API call, you may pass Mpeg2Settings
|
11469
|
+
# data as a hash:
|
11470
|
+
#
|
11471
|
+
# {
|
11472
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
11473
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
11474
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
11475
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
11476
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
11477
|
+
# filter_settings: {
|
11478
|
+
# temporal_filter_settings: {
|
11479
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
11480
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
11481
|
+
# },
|
11482
|
+
# },
|
11483
|
+
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
11484
|
+
# framerate_denominator: 1, # required
|
11485
|
+
# framerate_numerator: 1, # required
|
11486
|
+
# gop_closed_cadence: 1,
|
11487
|
+
# gop_num_b_frames: 1,
|
11488
|
+
# gop_size: 1.0,
|
11489
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
11490
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
11491
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
11492
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
11493
|
+
# }
|
11494
|
+
#
|
11495
|
+
# @!attribute [rw] adaptive_quantization
|
11496
|
+
# Choose Off to disable adaptive quantization. Or choose another value
|
11497
|
+
# to enable the quantizer and set its strength. The strengths are:
|
11498
|
+
# Auto, Off, Low, Medium, High. When you enable this field, MediaLive
|
11499
|
+
# allows intra-frame quantizers to vary, which might improve visual
|
11500
|
+
# quality.
|
11501
|
+
# @return [String]
|
11502
|
+
#
|
11503
|
+
# @!attribute [rw] afd_signaling
|
11504
|
+
# Indicates the AFD values that MediaLive will write into the video
|
11505
|
+
# encode. If you do not know what AFD signaling is, or if your
|
11506
|
+
# downstream system has not given you guidance, choose AUTO. AUTO:
|
11507
|
+
# MediaLive will try to preserve the input AFD value (in cases where
|
11508
|
+
# multiple AFD values are valid). FIXED: MediaLive will use the value
|
11509
|
+
# you specify in fixedAFD.
|
11510
|
+
# @return [String]
|
11511
|
+
#
|
11512
|
+
# @!attribute [rw] color_metadata
|
11513
|
+
# Specifies whether to include the color space metadata. The metadata
|
11514
|
+
# describes the color space that applies to the video (the colorSpace
|
11515
|
+
# field). We recommend that you insert the metadata.
|
11516
|
+
# @return [String]
|
11517
|
+
#
|
11518
|
+
# @!attribute [rw] color_space
|
11519
|
+
# Choose the type of color space conversion to apply to the output.
|
11520
|
+
# For detailed information on setting up both the input and the output
|
11521
|
+
# to obtain the desired color space in the output, see the section on
|
11522
|
+
# \\"MediaLive Features - Video - color space\\" in the MediaLive
|
11523
|
+
# User Guide. PASSTHROUGH: Keep the color space of the input content -
|
11524
|
+
# do not convert it. AUTO:Convert all content that is SD to rec 601,
|
11525
|
+
# and convert all content that is HD to rec 709.
|
11526
|
+
# @return [String]
|
11527
|
+
#
|
11528
|
+
# @!attribute [rw] display_aspect_ratio
|
11529
|
+
# Sets the pixel aspect ratio for the encode.
|
11530
|
+
# @return [String]
|
11531
|
+
#
|
11532
|
+
# @!attribute [rw] filter_settings
|
11533
|
+
# Optionally specify a noise reduction filter, which can improve
|
11534
|
+
# quality of compressed content. If you do not choose a filter, no
|
11535
|
+
# filter will be applied. TEMPORAL: This filter is useful for both
|
11536
|
+
# source content that is noisy (when it has excessive digital
|
11537
|
+
# artifacts) and source content that is clean. When the content is
|
11538
|
+
# noisy, the filter cleans up the source content before the encoding
|
11539
|
+
# phase, with these two effects: First, it improves the output video
|
11540
|
+
# quality because the content has been cleaned up. Secondly, it
|
11541
|
+
# decreases the bandwidth because MediaLive does not waste bits on
|
11542
|
+
# encoding noise. When the content is reasonably clean, the filter
|
11543
|
+
# tends to decrease the bitrate.
|
11544
|
+
# @return [Types::Mpeg2FilterSettings]
|
10795
11545
|
#
|
10796
|
-
#
|
11546
|
+
# @!attribute [rw] fixed_afd
|
11547
|
+
# Complete this field only when afdSignaling is set to FIXED. Enter
|
11548
|
+
# the AFD value (4 bits) to write on all frames of the video encode.
|
11549
|
+
# @return [String]
|
10797
11550
|
#
|
10798
|
-
#
|
11551
|
+
# @!attribute [rw] framerate_denominator
|
11552
|
+
# description": "The framerate denominator. For example, 1001. The
|
11553
|
+
# framerate is the numerator divided by the denominator. For example,
|
11554
|
+
# 24000 / 1001 = 23.976 FPS.
|
11555
|
+
# @return [Integer]
|
10799
11556
|
#
|
10800
|
-
|
10801
|
-
|
10802
|
-
#
|
11557
|
+
# @!attribute [rw] framerate_numerator
|
11558
|
+
# The framerate numerator. For example, 24000. The framerate is the
|
11559
|
+
# numerator divided by the denominator. For example, 24000 / 1001 =
|
11560
|
+
# 23.976 FPS.
|
11561
|
+
# @return [Integer]
|
10803
11562
|
#
|
10804
|
-
#
|
10805
|
-
#
|
11563
|
+
# @!attribute [rw] gop_closed_cadence
|
11564
|
+
# MPEG2: default is open GOP.
|
11565
|
+
# @return [Integer]
|
10806
11566
|
#
|
10807
|
-
#
|
10808
|
-
#
|
10809
|
-
#
|
10810
|
-
#
|
10811
|
-
#
|
11567
|
+
# @!attribute [rw] gop_num_b_frames
|
11568
|
+
# Relates to the GOP structure. The number of B-frames between
|
11569
|
+
# reference frames. If you do not know what a B-frame is, use the
|
11570
|
+
# default.
|
11571
|
+
# @return [Integer]
|
10812
11572
|
#
|
10813
|
-
# @!attribute [rw]
|
10814
|
-
#
|
11573
|
+
# @!attribute [rw] gop_size
|
11574
|
+
# Relates to the GOP structure. The GOP size (keyframe interval) in
|
11575
|
+
# the units specified in gopSizeUnits. If you do not know what GOP is,
|
11576
|
+
# use the default. If gopSizeUnits is frames, then the gopSize must be
|
11577
|
+
# an integer and must be greater than or equal to 1. If gopSizeUnits
|
11578
|
+
# is seconds, the gopSize must be greater than 0, but does not need to
|
11579
|
+
# be an integer.
|
10815
11580
|
# @return [Float]
|
10816
11581
|
#
|
10817
|
-
# @!attribute [rw]
|
10818
|
-
#
|
10819
|
-
#
|
11582
|
+
# @!attribute [rw] gop_size_units
|
11583
|
+
# Relates to the GOP structure. Specifies whether the gopSize is
|
11584
|
+
# specified in frames or seconds. If you do not plan to change the
|
11585
|
+
# default gopSize, leave the default. If you specify SECONDS,
|
11586
|
+
# MediaLive will internally convert the gop size to a frame count.
|
10820
11587
|
# @return [String]
|
10821
11588
|
#
|
10822
|
-
# @!attribute [rw]
|
10823
|
-
#
|
10824
|
-
#
|
11589
|
+
# @!attribute [rw] scan_type
|
11590
|
+
# Set the scan type of the output to PROGRESSIVE or INTERLACED (top
|
11591
|
+
# field first).
|
11592
|
+
# @return [String]
|
10825
11593
|
#
|
10826
|
-
#
|
11594
|
+
# @!attribute [rw] subgop_length
|
11595
|
+
# Relates to the GOP structure. If you do not know what GOP is, use
|
11596
|
+
# the default. FIXED: Set the number of B-frames in each sub-GOP to
|
11597
|
+
# the value in gopNumBFrames. DYNAMIC: Let MediaLive optimize the
|
11598
|
+
# number of B-frames in each sub-GOP, to improve visual quality.
|
11599
|
+
# @return [String]
|
10827
11600
|
#
|
10828
|
-
|
10829
|
-
|
10830
|
-
|
10831
|
-
|
11601
|
+
# @!attribute [rw] timecode_insertion
|
11602
|
+
# Determines how MediaLive inserts timecodes in the output video. For
|
11603
|
+
# detailed information about setting up the input and the output for a
|
11604
|
+
# timecode, see the section on \\"MediaLive Features - Timecode
|
11605
|
+
# configuration\\" in the MediaLive User Guide. DISABLED: do not
|
11606
|
+
# include timecodes. GOP\_TIMECODE: Include timecode metadata in the
|
11607
|
+
# GOP header.
|
11608
|
+
# @return [String]
|
11609
|
+
#
|
11610
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Mpeg2Settings AWS API Documentation
|
11611
|
+
#
|
11612
|
+
class Mpeg2Settings < Struct.new(
|
11613
|
+
:adaptive_quantization,
|
11614
|
+
:afd_signaling,
|
11615
|
+
:color_metadata,
|
11616
|
+
:color_space,
|
11617
|
+
:display_aspect_ratio,
|
11618
|
+
:filter_settings,
|
11619
|
+
:fixed_afd,
|
11620
|
+
:framerate_denominator,
|
11621
|
+
:framerate_numerator,
|
11622
|
+
:gop_closed_cadence,
|
11623
|
+
:gop_num_b_frames,
|
11624
|
+
:gop_size,
|
11625
|
+
:gop_size_units,
|
11626
|
+
:scan_type,
|
11627
|
+
:subgop_length,
|
11628
|
+
:timecode_insertion)
|
10832
11629
|
SENSITIVE = []
|
10833
11630
|
include Aws::Structure
|
10834
11631
|
end
|
@@ -11174,6 +11971,14 @@ module Aws::MediaLive
|
|
11174
11971
|
# The packet identifier map for this multiplex program.
|
11175
11972
|
# @return [Types::MultiplexProgramPacketIdentifiersMap]
|
11176
11973
|
#
|
11974
|
+
# @!attribute [rw] pipeline_details
|
11975
|
+
# Contains information about the current sources for the specified
|
11976
|
+
# program in the specified multiplex. Keep in mind that each multiplex
|
11977
|
+
# pipeline connects to both pipelines in a given source channel (the
|
11978
|
+
# channel identified by the program). But only one of those channel
|
11979
|
+
# pipelines is ever active at one time.
|
11980
|
+
# @return [Array<Types::MultiplexProgramPipelineDetail>]
|
11981
|
+
#
|
11177
11982
|
# @!attribute [rw] program_name
|
11178
11983
|
# The name of the multiplex program.
|
11179
11984
|
# @return [String]
|
@@ -11184,6 +11989,7 @@ module Aws::MediaLive
|
|
11184
11989
|
:channel_id,
|
11185
11990
|
:multiplex_program_settings,
|
11186
11991
|
:packet_identifiers_map,
|
11992
|
+
:pipeline_details,
|
11187
11993
|
:program_name)
|
11188
11994
|
SENSITIVE = []
|
11189
11995
|
include Aws::Structure
|
@@ -11283,6 +12089,26 @@ module Aws::MediaLive
|
|
11283
12089
|
include Aws::Structure
|
11284
12090
|
end
|
11285
12091
|
|
12092
|
+
# The current source for one of the pipelines in the multiplex.
|
12093
|
+
#
|
12094
|
+
# @!attribute [rw] active_channel_pipeline
|
12095
|
+
# Identifies the channel pipeline that is currently active for the
|
12096
|
+
# pipeline (identified by PipelineId) in the multiplex.
|
12097
|
+
# @return [String]
|
12098
|
+
#
|
12099
|
+
# @!attribute [rw] pipeline_id
|
12100
|
+
# Identifies a specific pipeline in the multiplex.
|
12101
|
+
# @return [String]
|
12102
|
+
#
|
12103
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexProgramPipelineDetail AWS API Documentation
|
12104
|
+
#
|
12105
|
+
class MultiplexProgramPipelineDetail < Struct.new(
|
12106
|
+
:active_channel_pipeline,
|
12107
|
+
:pipeline_id)
|
12108
|
+
SENSITIVE = []
|
12109
|
+
include Aws::Structure
|
12110
|
+
end
|
12111
|
+
|
11286
12112
|
# Transport stream service descriptor configuration for the Multiplex
|
11287
12113
|
# program.
|
11288
12114
|
#
|
@@ -11328,6 +12154,7 @@ module Aws::MediaLive
|
|
11328
12154
|
# statmux_settings: {
|
11329
12155
|
# maximum_bitrate: 1,
|
11330
12156
|
# minimum_bitrate: 1,
|
12157
|
+
# priority: 1,
|
11331
12158
|
# },
|
11332
12159
|
# },
|
11333
12160
|
# }
|
@@ -11439,6 +12266,7 @@ module Aws::MediaLive
|
|
11439
12266
|
# {
|
11440
12267
|
# maximum_bitrate: 1,
|
11441
12268
|
# minimum_bitrate: 1,
|
12269
|
+
# priority: 1,
|
11442
12270
|
# }
|
11443
12271
|
#
|
11444
12272
|
# @!attribute [rw] maximum_bitrate
|
@@ -11449,11 +12277,21 @@ module Aws::MediaLive
|
|
11449
12277
|
# Minimum statmux bitrate.
|
11450
12278
|
# @return [Integer]
|
11451
12279
|
#
|
12280
|
+
# @!attribute [rw] priority
|
12281
|
+
# The purpose of the priority is to use a combination of
|
12282
|
+
# the\\nmultiplex rate control algorithm and the QVBR capability of
|
12283
|
+
# the\\nencoder to prioritize the video quality of some channels in
|
12284
|
+
# a\\nmultiplex over others. Channels that have a higher priority
|
12285
|
+
# will\\nget higher video quality at the expense of the video quality
|
12286
|
+
# of\\nother channels in the multiplex with lower priority.
|
12287
|
+
# @return [Integer]
|
12288
|
+
#
|
11452
12289
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexStatmuxVideoSettings AWS API Documentation
|
11453
12290
|
#
|
11454
12291
|
class MultiplexStatmuxVideoSettings < Struct.new(
|
11455
12292
|
:maximum_bitrate,
|
11456
|
-
:minimum_bitrate
|
12293
|
+
:minimum_bitrate,
|
12294
|
+
:priority)
|
11457
12295
|
SENSITIVE = []
|
11458
12296
|
include Aws::Structure
|
11459
12297
|
end
|
@@ -11520,6 +12358,7 @@ module Aws::MediaLive
|
|
11520
12358
|
# statmux_settings: {
|
11521
12359
|
# maximum_bitrate: 1,
|
11522
12360
|
# minimum_bitrate: 1,
|
12361
|
+
# priority: 1,
|
11523
12362
|
# },
|
11524
12363
|
# }
|
11525
12364
|
#
|
@@ -11759,6 +12598,8 @@ module Aws::MediaLive
|
|
11759
12598
|
# transport_stream_id: 1,
|
11760
12599
|
# video_pid: "__string",
|
11761
12600
|
# },
|
12601
|
+
# raw_settings: {
|
12602
|
+
# },
|
11762
12603
|
# },
|
11763
12604
|
# extension: "__string",
|
11764
12605
|
# name_modifier: "__string",
|
@@ -12252,6 +13093,8 @@ module Aws::MediaLive
|
|
12252
13093
|
# transport_stream_id: 1,
|
12253
13094
|
# video_pid: "__string",
|
12254
13095
|
# },
|
13096
|
+
# raw_settings: {
|
13097
|
+
# },
|
12255
13098
|
# },
|
12256
13099
|
# extension: "__string",
|
12257
13100
|
# name_modifier: "__string",
|
@@ -12710,6 +13553,8 @@ module Aws::MediaLive
|
|
12710
13553
|
# transport_stream_id: 1,
|
12711
13554
|
# video_pid: "__string",
|
12712
13555
|
# },
|
13556
|
+
# raw_settings: {
|
13557
|
+
# },
|
12713
13558
|
# },
|
12714
13559
|
# extension: "__string",
|
12715
13560
|
# name_modifier: "__string",
|
@@ -13092,6 +13937,14 @@ module Aws::MediaLive
|
|
13092
13937
|
include Aws::Structure
|
13093
13938
|
end
|
13094
13939
|
|
13940
|
+
# Raw Settings
|
13941
|
+
#
|
13942
|
+
# @api private
|
13943
|
+
#
|
13944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RawSettings AWS API Documentation
|
13945
|
+
#
|
13946
|
+
class RawSettings < Aws::EmptyStructure; end
|
13947
|
+
|
13095
13948
|
# Rec601 Settings
|
13096
13949
|
#
|
13097
13950
|
# @api private
|
@@ -13108,6 +13961,28 @@ module Aws::MediaLive
|
|
13108
13961
|
#
|
13109
13962
|
class Rec709Settings < Aws::EmptyStructure; end
|
13110
13963
|
|
13964
|
+
# @note When making an API call, you may pass RejectInputDeviceTransferRequest
|
13965
|
+
# data as a hash:
|
13966
|
+
#
|
13967
|
+
# {
|
13968
|
+
# input_device_id: "__string", # required
|
13969
|
+
# }
|
13970
|
+
#
|
13971
|
+
# @!attribute [rw] input_device_id
|
13972
|
+
# @return [String]
|
13973
|
+
#
|
13974
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransferRequest AWS API Documentation
|
13975
|
+
#
|
13976
|
+
class RejectInputDeviceTransferRequest < Struct.new(
|
13977
|
+
:input_device_id)
|
13978
|
+
SENSITIVE = []
|
13979
|
+
include Aws::Structure
|
13980
|
+
end
|
13981
|
+
|
13982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransferResponse AWS API Documentation
|
13983
|
+
#
|
13984
|
+
class RejectInputDeviceTransferResponse < Aws::EmptyStructure; end
|
13985
|
+
|
13111
13986
|
# Remix Settings
|
13112
13987
|
#
|
13113
13988
|
# @note When making an API call, you may pass RemixSettings
|
@@ -14373,6 +15248,9 @@ module Aws::MediaLive
|
|
14373
15248
|
# @!attribute [rw] arn
|
14374
15249
|
# @return [String]
|
14375
15250
|
#
|
15251
|
+
# @!attribute [rw] cdi_input_specification
|
15252
|
+
# @return [Types::CdiInputSpecification]
|
15253
|
+
#
|
14376
15254
|
# @!attribute [rw] channel_class
|
14377
15255
|
# A standard channel has two encoding pipelines and a single pipeline
|
14378
15256
|
# channel only has one.
|
@@ -14423,6 +15301,7 @@ module Aws::MediaLive
|
|
14423
15301
|
#
|
14424
15302
|
class StartChannelResponse < Struct.new(
|
14425
15303
|
:arn,
|
15304
|
+
:cdi_input_specification,
|
14426
15305
|
:channel_class,
|
14427
15306
|
:destinations,
|
14428
15307
|
:egress_endpoints,
|
@@ -14715,6 +15594,9 @@ module Aws::MediaLive
|
|
14715
15594
|
# @!attribute [rw] arn
|
14716
15595
|
# @return [String]
|
14717
15596
|
#
|
15597
|
+
# @!attribute [rw] cdi_input_specification
|
15598
|
+
# @return [Types::CdiInputSpecification]
|
15599
|
+
#
|
14718
15600
|
# @!attribute [rw] channel_class
|
14719
15601
|
# A standard channel has two encoding pipelines and a single pipeline
|
14720
15602
|
# channel only has one.
|
@@ -14765,6 +15647,7 @@ module Aws::MediaLive
|
|
14765
15647
|
#
|
14766
15648
|
class StopChannelResponse < Struct.new(
|
14767
15649
|
:arn,
|
15650
|
+
:cdi_input_specification,
|
14768
15651
|
:channel_class,
|
14769
15652
|
:destinations,
|
14770
15653
|
:egress_endpoints,
|
@@ -14957,6 +15840,22 @@ module Aws::MediaLive
|
|
14957
15840
|
include Aws::Structure
|
14958
15841
|
end
|
14959
15842
|
|
15843
|
+
# The binary data for the thumbnail that the Link device has most
|
15844
|
+
# recently sent to MediaLive.
|
15845
|
+
#
|
15846
|
+
# @!attribute [rw] body
|
15847
|
+
# The binary data for the thumbnail that the Link device has most
|
15848
|
+
# recently sent to MediaLive.
|
15849
|
+
# @return [String]
|
15850
|
+
#
|
15851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ThumbnailData AWS API Documentation
|
15852
|
+
#
|
15853
|
+
class ThumbnailData < Struct.new(
|
15854
|
+
:body)
|
15855
|
+
SENSITIVE = []
|
15856
|
+
include Aws::Structure
|
15857
|
+
end
|
15858
|
+
|
14960
15859
|
# Timecode Config
|
14961
15860
|
#
|
14962
15861
|
# @note When making an API call, you may pass TimecodeConfig
|
@@ -15004,6 +15903,87 @@ module Aws::MediaLive
|
|
15004
15903
|
include Aws::Structure
|
15005
15904
|
end
|
15006
15905
|
|
15906
|
+
# The transfer details of the input device.
|
15907
|
+
#
|
15908
|
+
# @!attribute [rw] target_customer_id
|
15909
|
+
# The AWS account ID (12 digits) for the recipient of the device
|
15910
|
+
# transfer.
|
15911
|
+
# @return [String]
|
15912
|
+
#
|
15913
|
+
# @!attribute [rw] transfer_message
|
15914
|
+
# An optional message for the recipient. Maximum 280 characters.
|
15915
|
+
# @return [String]
|
15916
|
+
#
|
15917
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDevice AWS API Documentation
|
15918
|
+
#
|
15919
|
+
class TransferInputDevice < Struct.new(
|
15920
|
+
:target_customer_id,
|
15921
|
+
:transfer_message)
|
15922
|
+
SENSITIVE = []
|
15923
|
+
include Aws::Structure
|
15924
|
+
end
|
15925
|
+
|
15926
|
+
# @note When making an API call, you may pass TransferInputDeviceRequest
|
15927
|
+
# data as a hash:
|
15928
|
+
#
|
15929
|
+
# {
|
15930
|
+
# input_device_id: "__string", # required
|
15931
|
+
# target_customer_id: "__string",
|
15932
|
+
# transfer_message: "__string",
|
15933
|
+
# }
|
15934
|
+
#
|
15935
|
+
# @!attribute [rw] input_device_id
|
15936
|
+
# @return [String]
|
15937
|
+
#
|
15938
|
+
# @!attribute [rw] target_customer_id
|
15939
|
+
# @return [String]
|
15940
|
+
#
|
15941
|
+
# @!attribute [rw] transfer_message
|
15942
|
+
# @return [String]
|
15943
|
+
#
|
15944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDeviceRequest AWS API Documentation
|
15945
|
+
#
|
15946
|
+
class TransferInputDeviceRequest < Struct.new(
|
15947
|
+
:input_device_id,
|
15948
|
+
:target_customer_id,
|
15949
|
+
:transfer_message)
|
15950
|
+
SENSITIVE = []
|
15951
|
+
include Aws::Structure
|
15952
|
+
end
|
15953
|
+
|
15954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDeviceResponse AWS API Documentation
|
15955
|
+
#
|
15956
|
+
class TransferInputDeviceResponse < Aws::EmptyStructure; end
|
15957
|
+
|
15958
|
+
# Details about the input device that is being transferred.
|
15959
|
+
#
|
15960
|
+
# @!attribute [rw] id
|
15961
|
+
# The unique ID of the input device.
|
15962
|
+
# @return [String]
|
15963
|
+
#
|
15964
|
+
# @!attribute [rw] message
|
15965
|
+
# The optional message that the sender has attached to the transfer.
|
15966
|
+
# @return [String]
|
15967
|
+
#
|
15968
|
+
# @!attribute [rw] target_customer_id
|
15969
|
+
# The AWS account ID for the recipient of the input device transfer.
|
15970
|
+
# @return [String]
|
15971
|
+
#
|
15972
|
+
# @!attribute [rw] transfer_type
|
15973
|
+
# The type (direction) of the input device transfer.
|
15974
|
+
# @return [String]
|
15975
|
+
#
|
15976
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferringInputDeviceSummary AWS API Documentation
|
15977
|
+
#
|
15978
|
+
class TransferringInputDeviceSummary < Struct.new(
|
15979
|
+
:id,
|
15980
|
+
:message,
|
15981
|
+
:target_customer_id,
|
15982
|
+
:transfer_type)
|
15983
|
+
SENSITIVE = []
|
15984
|
+
include Aws::Structure
|
15985
|
+
end
|
15986
|
+
|
15007
15987
|
# Ttml Destination Settings
|
15008
15988
|
#
|
15009
15989
|
# @note When making an API call, you may pass TtmlDestinationSettings
|
@@ -15275,6 +16255,10 @@ module Aws::MediaLive
|
|
15275
16255
|
include Aws::Structure
|
15276
16256
|
end
|
15277
16257
|
|
16258
|
+
# @!attribute [rw] cdi_input_specification
|
16259
|
+
# Specification of CDI inputs for this channel
|
16260
|
+
# @return [Types::CdiInputSpecification]
|
16261
|
+
#
|
15278
16262
|
# @!attribute [rw] destinations
|
15279
16263
|
# A list of output destinations for this channel.
|
15280
16264
|
# @return [Array<Types::OutputDestination>]
|
@@ -15287,8 +16271,7 @@ module Aws::MediaLive
|
|
15287
16271
|
# @return [Array<Types::InputAttachment>]
|
15288
16272
|
#
|
15289
16273
|
# @!attribute [rw] input_specification
|
15290
|
-
# Specification of
|
15291
|
-
# codec, etc.)
|
16274
|
+
# Specification of network and file inputs for this channel
|
15292
16275
|
# @return [Types::InputSpecification]
|
15293
16276
|
#
|
15294
16277
|
# @!attribute [rw] log_level
|
@@ -15308,6 +16291,7 @@ module Aws::MediaLive
|
|
15308
16291
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
|
15309
16292
|
#
|
15310
16293
|
class UpdateChannel < Struct.new(
|
16294
|
+
:cdi_input_specification,
|
15311
16295
|
:destinations,
|
15312
16296
|
:encoder_settings,
|
15313
16297
|
:input_attachments,
|
@@ -15402,6 +16386,9 @@ module Aws::MediaLive
|
|
15402
16386
|
# data as a hash:
|
15403
16387
|
#
|
15404
16388
|
# {
|
16389
|
+
# cdi_input_specification: {
|
16390
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
16391
|
+
# },
|
15405
16392
|
# channel_id: "__string", # required
|
15406
16393
|
# destinations: [
|
15407
16394
|
# {
|
@@ -15486,6 +16473,11 @@ module Aws::MediaLive
|
|
15486
16473
|
# },
|
15487
16474
|
# pass_through_settings: {
|
15488
16475
|
# },
|
16476
|
+
# wav_settings: {
|
16477
|
+
# bit_depth: 1.0,
|
16478
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
16479
|
+
# sample_rate: 1.0,
|
16480
|
+
# },
|
15489
16481
|
# },
|
15490
16482
|
# language_code: "__stringMin1Max35",
|
15491
16483
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -15868,6 +16860,8 @@ module Aws::MediaLive
|
|
15868
16860
|
# transport_stream_id: 1,
|
15869
16861
|
# video_pid: "__string",
|
15870
16862
|
# },
|
16863
|
+
# raw_settings: {
|
16864
|
+
# },
|
15871
16865
|
# },
|
15872
16866
|
# extension: "__string",
|
15873
16867
|
# name_modifier: "__string",
|
@@ -16130,6 +17124,29 @@ module Aws::MediaLive
|
|
16130
17124
|
# tier: "HIGH", # accepts HIGH, MAIN
|
16131
17125
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
16132
17126
|
# },
|
17127
|
+
# mpeg_2_settings: {
|
17128
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
17129
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
17130
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
17131
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
17132
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
17133
|
+
# filter_settings: {
|
17134
|
+
# temporal_filter_settings: {
|
17135
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
17136
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
17137
|
+
# },
|
17138
|
+
# },
|
17139
|
+
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
17140
|
+
# framerate_denominator: 1, # required
|
17141
|
+
# framerate_numerator: 1, # required
|
17142
|
+
# gop_closed_cadence: 1,
|
17143
|
+
# gop_num_b_frames: 1,
|
17144
|
+
# gop_size: 1.0,
|
17145
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
17146
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
17147
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
17148
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
17149
|
+
# },
|
16133
17150
|
# },
|
16134
17151
|
# height: 1,
|
16135
17152
|
# name: "__string", # required
|
@@ -16175,6 +17192,9 @@ module Aws::MediaLive
|
|
16175
17192
|
# language_code: "__string",
|
16176
17193
|
# name: "__stringMin1", # required
|
16177
17194
|
# selector_settings: {
|
17195
|
+
# ancillary_source_settings: {
|
17196
|
+
# source_ancillary_channel_number: 1,
|
17197
|
+
# },
|
16178
17198
|
# arib_source_settings: {
|
16179
17199
|
# },
|
16180
17200
|
# dvb_sub_source_settings: {
|
@@ -16239,6 +17259,9 @@ module Aws::MediaLive
|
|
16239
17259
|
# role_arn: "__string",
|
16240
17260
|
# }
|
16241
17261
|
#
|
17262
|
+
# @!attribute [rw] cdi_input_specification
|
17263
|
+
# @return [Types::CdiInputSpecification]
|
17264
|
+
#
|
16242
17265
|
# @!attribute [rw] channel_id
|
16243
17266
|
# @return [String]
|
16244
17267
|
#
|
@@ -16268,6 +17291,7 @@ module Aws::MediaLive
|
|
16268
17291
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelRequest AWS API Documentation
|
16269
17292
|
#
|
16270
17293
|
class UpdateChannelRequest < Struct.new(
|
17294
|
+
:cdi_input_specification,
|
16271
17295
|
:channel_id,
|
16272
17296
|
:destinations,
|
16273
17297
|
:encoder_settings,
|
@@ -16660,6 +17684,7 @@ module Aws::MediaLive
|
|
16660
17684
|
# statmux_settings: {
|
16661
17685
|
# maximum_bitrate: 1,
|
16662
17686
|
# minimum_bitrate: 1,
|
17687
|
+
# priority: 1,
|
16663
17688
|
# },
|
16664
17689
|
# },
|
16665
17690
|
# },
|
@@ -16960,6 +17985,29 @@ module Aws::MediaLive
|
|
16960
17985
|
# tier: "HIGH", # accepts HIGH, MAIN
|
16961
17986
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
16962
17987
|
# },
|
17988
|
+
# mpeg_2_settings: {
|
17989
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
17990
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
17991
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
17992
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
17993
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
17994
|
+
# filter_settings: {
|
17995
|
+
# temporal_filter_settings: {
|
17996
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
17997
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
17998
|
+
# },
|
17999
|
+
# },
|
18000
|
+
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
18001
|
+
# framerate_denominator: 1, # required
|
18002
|
+
# framerate_numerator: 1, # required
|
18003
|
+
# gop_closed_cadence: 1,
|
18004
|
+
# gop_num_b_frames: 1,
|
18005
|
+
# gop_size: 1.0,
|
18006
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
18007
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
18008
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
18009
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
18010
|
+
# },
|
16963
18011
|
# }
|
16964
18012
|
#
|
16965
18013
|
# @!attribute [rw] frame_capture_settings
|
@@ -16974,12 +18022,17 @@ module Aws::MediaLive
|
|
16974
18022
|
# H265 Settings
|
16975
18023
|
# @return [Types::H265Settings]
|
16976
18024
|
#
|
18025
|
+
# @!attribute [rw] mpeg_2_settings
|
18026
|
+
# Mpeg2 Settings
|
18027
|
+
# @return [Types::Mpeg2Settings]
|
18028
|
+
#
|
16977
18029
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoCodecSettings AWS API Documentation
|
16978
18030
|
#
|
16979
18031
|
class VideoCodecSettings < Struct.new(
|
16980
18032
|
:frame_capture_settings,
|
16981
18033
|
:h264_settings,
|
16982
|
-
:h265_settings
|
18034
|
+
:h265_settings,
|
18035
|
+
:mpeg_2_settings)
|
16983
18036
|
SENSITIVE = []
|
16984
18037
|
include Aws::Structure
|
16985
18038
|
end
|
@@ -17097,6 +18150,29 @@ module Aws::MediaLive
|
|
17097
18150
|
# tier: "HIGH", # accepts HIGH, MAIN
|
17098
18151
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
17099
18152
|
# },
|
18153
|
+
# mpeg_2_settings: {
|
18154
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
18155
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
18156
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
18157
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
18158
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
18159
|
+
# filter_settings: {
|
18160
|
+
# temporal_filter_settings: {
|
18161
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
18162
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
18163
|
+
# },
|
18164
|
+
# },
|
18165
|
+
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
18166
|
+
# framerate_denominator: 1, # required
|
18167
|
+
# framerate_numerator: 1, # required
|
18168
|
+
# gop_closed_cadence: 1,
|
18169
|
+
# gop_num_b_frames: 1,
|
18170
|
+
# gop_size: 1.0,
|
18171
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
18172
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
18173
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
18174
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
18175
|
+
# },
|
17100
18176
|
# },
|
17101
18177
|
# height: 1,
|
17102
18178
|
# name: "__string", # required
|
@@ -17125,14 +18201,17 @@ module Aws::MediaLive
|
|
17125
18201
|
# @return [String]
|
17126
18202
|
#
|
17127
18203
|
# @!attribute [rw] respond_to_afd
|
17128
|
-
# Indicates how
|
17129
|
-
#
|
17130
|
-
#
|
17131
|
-
#
|
17132
|
-
#
|
17133
|
-
#
|
17134
|
-
#
|
17135
|
-
#
|
18204
|
+
# Indicates how MediaLive will respond to the AFD values that might be
|
18205
|
+
# in the input video. If you do not know what AFD signaling is, or if
|
18206
|
+
# your downstream system has not given you guidance, choose
|
18207
|
+
# PASSTHROUGH. RESPOND: MediaLive clips the input video using a
|
18208
|
+
# formula that uses the AFD values (configured in afdSignaling ), the
|
18209
|
+
# input display aspect ratio, and the output display aspect ratio.
|
18210
|
+
# MediaLive also includes the AFD values in the output, unless the
|
18211
|
+
# codec for this encode is FRAME\_CAPTURE. PASSTHROUGH: MediaLive
|
18212
|
+
# ignores the AFD values and does not clip the video. But MediaLive
|
18213
|
+
# does include the values in the output. NONE: MediaLive does not clip
|
18214
|
+
# the input video and does not include the AFD values in the output
|
17136
18215
|
# @return [String]
|
17137
18216
|
#
|
17138
18217
|
# @!attribute [rw] scaling_behavior
|
@@ -17298,6 +18377,40 @@ module Aws::MediaLive
|
|
17298
18377
|
include Aws::Structure
|
17299
18378
|
end
|
17300
18379
|
|
18380
|
+
# Wav Settings
|
18381
|
+
#
|
18382
|
+
# @note When making an API call, you may pass WavSettings
|
18383
|
+
# data as a hash:
|
18384
|
+
#
|
18385
|
+
# {
|
18386
|
+
# bit_depth: 1.0,
|
18387
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
18388
|
+
# sample_rate: 1.0,
|
18389
|
+
# }
|
18390
|
+
#
|
18391
|
+
# @!attribute [rw] bit_depth
|
18392
|
+
# Bits per sample.
|
18393
|
+
# @return [Float]
|
18394
|
+
#
|
18395
|
+
# @!attribute [rw] coding_mode
|
18396
|
+
# The audio coding mode for the WAV audio. The mode determines the
|
18397
|
+
# number of channels in the audio.
|
18398
|
+
# @return [String]
|
18399
|
+
#
|
18400
|
+
# @!attribute [rw] sample_rate
|
18401
|
+
# Sample rate in Hz.
|
18402
|
+
# @return [Float]
|
18403
|
+
#
|
18404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/WavSettings AWS API Documentation
|
18405
|
+
#
|
18406
|
+
class WavSettings < Struct.new(
|
18407
|
+
:bit_depth,
|
18408
|
+
:coding_mode,
|
18409
|
+
:sample_rate)
|
18410
|
+
SENSITIVE = []
|
18411
|
+
include Aws::Structure
|
18412
|
+
end
|
18413
|
+
|
17301
18414
|
# Webvtt Destination Settings
|
17302
18415
|
#
|
17303
18416
|
# @api private
|