aws-sdk-mediaconvert 1.87.0 → 1.90.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +282 -33
- data/lib/aws-sdk-mediaconvert/client_api.rb +57 -0
- data/lib/aws-sdk-mediaconvert/types.rb +711 -59
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- metadata +2 -2
@@ -285,6 +285,49 @@ module Aws::MediaConvert
|
|
285
285
|
include Aws::Structure
|
286
286
|
end
|
287
287
|
|
288
|
+
# Use Allowed renditions to specify a list of possible resolutions in
|
289
|
+
# your ABR stack. * MediaConvert will create an ABR stack exclusively
|
290
|
+
# from the list of resolutions that you specify. * Some resolutions in
|
291
|
+
# the Allowed renditions list may not be included, however you can force
|
292
|
+
# a resolution to be included by setting Required to ENABLED. * You
|
293
|
+
# must specify at least one resolution that is greater than or equal to
|
294
|
+
# any resolutions that you specify in Min top rendition size or Min
|
295
|
+
# bottom rendition size. * If you specify Allowed renditions, you must
|
296
|
+
# not specify a separate rule for Force include renditions.
|
297
|
+
#
|
298
|
+
# @note When making an API call, you may pass AllowedRenditionSize
|
299
|
+
# data as a hash:
|
300
|
+
#
|
301
|
+
# {
|
302
|
+
# height: 1,
|
303
|
+
# required: "ENABLED", # accepts ENABLED, DISABLED
|
304
|
+
# width: 1,
|
305
|
+
# }
|
306
|
+
#
|
307
|
+
# @!attribute [rw] height
|
308
|
+
# Use Height to define the video resolution height, in pixels, for
|
309
|
+
# this rule.
|
310
|
+
# @return [Integer]
|
311
|
+
#
|
312
|
+
# @!attribute [rw] required
|
313
|
+
# Set to ENABLED to force a rendition to be included.
|
314
|
+
# @return [String]
|
315
|
+
#
|
316
|
+
# @!attribute [rw] width
|
317
|
+
# Use Width to define the video resolution width, in pixels, for this
|
318
|
+
# rule.
|
319
|
+
# @return [Integer]
|
320
|
+
#
|
321
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/AllowedRenditionSize AWS API Documentation
|
322
|
+
#
|
323
|
+
class AllowedRenditionSize < Struct.new(
|
324
|
+
:height,
|
325
|
+
:required,
|
326
|
+
:width)
|
327
|
+
SENSITIVE = []
|
328
|
+
include Aws::Structure
|
329
|
+
end
|
330
|
+
|
288
331
|
# Settings for ancillary captions source.
|
289
332
|
#
|
290
333
|
# @note When making an API call, you may pass AncillarySourceSettings
|
@@ -1072,6 +1115,123 @@ module Aws::MediaConvert
|
|
1072
1115
|
include Aws::Structure
|
1073
1116
|
end
|
1074
1117
|
|
1118
|
+
# Specify one or more Automated ABR rule types. Note: Force include and
|
1119
|
+
# Allowed renditions are mutually exclusive.
|
1120
|
+
#
|
1121
|
+
# @note When making an API call, you may pass AutomatedAbrRule
|
1122
|
+
# data as a hash:
|
1123
|
+
#
|
1124
|
+
# {
|
1125
|
+
# allowed_renditions: [
|
1126
|
+
# {
|
1127
|
+
# height: 1,
|
1128
|
+
# required: "ENABLED", # accepts ENABLED, DISABLED
|
1129
|
+
# width: 1,
|
1130
|
+
# },
|
1131
|
+
# ],
|
1132
|
+
# force_include_renditions: [
|
1133
|
+
# {
|
1134
|
+
# height: 1,
|
1135
|
+
# width: 1,
|
1136
|
+
# },
|
1137
|
+
# ],
|
1138
|
+
# min_bottom_rendition_size: {
|
1139
|
+
# height: 1,
|
1140
|
+
# width: 1,
|
1141
|
+
# },
|
1142
|
+
# min_top_rendition_size: {
|
1143
|
+
# height: 1,
|
1144
|
+
# width: 1,
|
1145
|
+
# },
|
1146
|
+
# type: "MIN_TOP_RENDITION_SIZE", # accepts MIN_TOP_RENDITION_SIZE, MIN_BOTTOM_RENDITION_SIZE, FORCE_INCLUDE_RENDITIONS, ALLOWED_RENDITIONS
|
1147
|
+
# }
|
1148
|
+
#
|
1149
|
+
# @!attribute [rw] allowed_renditions
|
1150
|
+
# When customer adds the allowed renditions rule for auto ABR ladder,
|
1151
|
+
# they are required to add at leat one rendition to allowedRenditions
|
1152
|
+
# list
|
1153
|
+
# @return [Array<Types::AllowedRenditionSize>]
|
1154
|
+
#
|
1155
|
+
# @!attribute [rw] force_include_renditions
|
1156
|
+
# When customer adds the force include renditions rule for auto ABR
|
1157
|
+
# ladder, they are required to add at leat one rendition to
|
1158
|
+
# forceIncludeRenditions list
|
1159
|
+
# @return [Array<Types::ForceIncludeRenditionSize>]
|
1160
|
+
#
|
1161
|
+
# @!attribute [rw] min_bottom_rendition_size
|
1162
|
+
# Use Min bottom rendition size to specify a minimum size for the
|
1163
|
+
# lowest resolution in your ABR stack. * The lowest resolution in
|
1164
|
+
# your ABR stack will be equal to or greater than the value that you
|
1165
|
+
# enter. For example: If you specify 640x360 the lowest resolution in
|
1166
|
+
# your ABR stack will be equal to or greater than to 640x360. * If
|
1167
|
+
# you specify a Min top rendition size rule, the value that you
|
1168
|
+
# specify for Min bottom rendition size must be less than, or equal
|
1169
|
+
# to, Min top rendition size.
|
1170
|
+
# @return [Types::MinBottomRenditionSize]
|
1171
|
+
#
|
1172
|
+
# @!attribute [rw] min_top_rendition_size
|
1173
|
+
# Use Min top rendition size to specify a minimum size for the highest
|
1174
|
+
# resolution in your ABR stack. * The highest resolution in your ABR
|
1175
|
+
# stack will be equal to or greater than the value that you enter. For
|
1176
|
+
# example: If you specify 1280x720 the highest resolution in your ABR
|
1177
|
+
# stack will be equal to or greater than 1280x720. * If you specify a
|
1178
|
+
# value for Max resolution, the value that you specify for Min top
|
1179
|
+
# rendition size must be less than, or equal to, Max resolution.
|
1180
|
+
# @return [Types::MinTopRenditionSize]
|
1181
|
+
#
|
1182
|
+
# @!attribute [rw] type
|
1183
|
+
# Use Min top rendition size to specify a minimum size for the highest
|
1184
|
+
# resolution in your ABR stack. * The highest resolution in your ABR
|
1185
|
+
# stack will be equal to or greater than the value that you enter. For
|
1186
|
+
# example: If you specify 1280x720 the highest resolution in your ABR
|
1187
|
+
# stack will be equal to or greater than 1280x720. * If you specify a
|
1188
|
+
# value for Max resolution, the value that you specify for Min top
|
1189
|
+
# rendition size must be less than, or equal to, Max resolution. Use
|
1190
|
+
# Min bottom rendition size to specify a minimum size for the lowest
|
1191
|
+
# resolution in your ABR stack. * The lowest resolution in your ABR
|
1192
|
+
# stack will be equal to or greater than the value that you enter. For
|
1193
|
+
# example: If you specify 640x360 the lowest resolution in your ABR
|
1194
|
+
# stack will be equal to or greater than to 640x360. * If you specify
|
1195
|
+
# a Min top rendition size rule, the value that you specify for Min
|
1196
|
+
# bottom rendition size must be less than, or equal to, Min top
|
1197
|
+
# rendition size. Use Force include renditions to specify one or more
|
1198
|
+
# resolutions to include your ABR stack. * (Recommended) To optimize
|
1199
|
+
# automated ABR, specify as few resolutions as possible. * (Required)
|
1200
|
+
# The number of resolutions that you specify must be equal to, or less
|
1201
|
+
# than, the Max renditions setting. * If you specify a Min top
|
1202
|
+
# rendition size rule, specify at least one resolution that is equal
|
1203
|
+
# to, or greater than, Min top rendition size. * If you specify a Min
|
1204
|
+
# bottom rendition size rule, only specify resolutions that are equal
|
1205
|
+
# to, or greater than, Min bottom rendition size. * If you specify a
|
1206
|
+
# Force include renditions rule, do not specify a separate rule for
|
1207
|
+
# Allowed renditions. * Note: The ABR stack may include other
|
1208
|
+
# resolutions that you do not specify here, depending on the Max
|
1209
|
+
# renditions setting. Use Allowed renditions to specify a list of
|
1210
|
+
# possible resolutions in your ABR stack. * (Required) The number of
|
1211
|
+
# resolutions that you specify must be equal to, or greater than, the
|
1212
|
+
# Max renditions setting. * MediaConvert will create an ABR stack
|
1213
|
+
# exclusively from the list of resolutions that you specify. * Some
|
1214
|
+
# resolutions in the Allowed renditions list may not be included,
|
1215
|
+
# however you can force a resolution to be included by setting
|
1216
|
+
# Required to ENABLED. * You must specify at least one resolution
|
1217
|
+
# that is greater than or equal to any resolutions that you specify in
|
1218
|
+
# Min top rendition size or Min bottom rendition size. * If you
|
1219
|
+
# specify Allowed renditions, you must not specify a separate rule for
|
1220
|
+
# Force include renditions.
|
1221
|
+
# @return [String]
|
1222
|
+
#
|
1223
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/AutomatedAbrRule AWS API Documentation
|
1224
|
+
#
|
1225
|
+
class AutomatedAbrRule < Struct.new(
|
1226
|
+
:allowed_renditions,
|
1227
|
+
:force_include_renditions,
|
1228
|
+
:min_bottom_rendition_size,
|
1229
|
+
:min_top_rendition_size,
|
1230
|
+
:type)
|
1231
|
+
SENSITIVE = []
|
1232
|
+
include Aws::Structure
|
1233
|
+
end
|
1234
|
+
|
1075
1235
|
# Use automated ABR to have MediaConvert set up the renditions in your
|
1076
1236
|
# ABR package for you automatically, based on characteristics of your
|
1077
1237
|
# input video. This feature optimizes video quality while minimizing the
|
@@ -1084,6 +1244,32 @@ module Aws::MediaConvert
|
|
1084
1244
|
# max_abr_bitrate: 1,
|
1085
1245
|
# max_renditions: 1,
|
1086
1246
|
# min_abr_bitrate: 1,
|
1247
|
+
# rules: [
|
1248
|
+
# {
|
1249
|
+
# allowed_renditions: [
|
1250
|
+
# {
|
1251
|
+
# height: 1,
|
1252
|
+
# required: "ENABLED", # accepts ENABLED, DISABLED
|
1253
|
+
# width: 1,
|
1254
|
+
# },
|
1255
|
+
# ],
|
1256
|
+
# force_include_renditions: [
|
1257
|
+
# {
|
1258
|
+
# height: 1,
|
1259
|
+
# width: 1,
|
1260
|
+
# },
|
1261
|
+
# ],
|
1262
|
+
# min_bottom_rendition_size: {
|
1263
|
+
# height: 1,
|
1264
|
+
# width: 1,
|
1265
|
+
# },
|
1266
|
+
# min_top_rendition_size: {
|
1267
|
+
# height: 1,
|
1268
|
+
# width: 1,
|
1269
|
+
# },
|
1270
|
+
# type: "MIN_TOP_RENDITION_SIZE", # accepts MIN_TOP_RENDITION_SIZE, MIN_BOTTOM_RENDITION_SIZE, FORCE_INCLUDE_RENDITIONS, ALLOWED_RENDITIONS
|
1271
|
+
# },
|
1272
|
+
# ],
|
1087
1273
|
# }
|
1088
1274
|
#
|
1089
1275
|
# @!attribute [rw] max_abr_bitrate
|
@@ -1111,12 +1297,21 @@ module Aws::MediaConvert
|
|
1111
1297
|
# specify a value, MediaConvert uses 600,000 (600 kb/s) by default.
|
1112
1298
|
# @return [Integer]
|
1113
1299
|
#
|
1300
|
+
# @!attribute [rw] rules
|
1301
|
+
# Optional. Use Automated ABR rules to specify restrictions for the
|
1302
|
+
# rendition sizes MediaConvert will create in your ABR stack. You can
|
1303
|
+
# use these rules if your ABR workflow has specific rendition size
|
1304
|
+
# requirements, but you still want MediaConvert to optimize for video
|
1305
|
+
# quality and overall file size.
|
1306
|
+
# @return [Array<Types::AutomatedAbrRule>]
|
1307
|
+
#
|
1114
1308
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/AutomatedAbrSettings AWS API Documentation
|
1115
1309
|
#
|
1116
1310
|
class AutomatedAbrSettings < Struct.new(
|
1117
1311
|
:max_abr_bitrate,
|
1118
1312
|
:max_renditions,
|
1119
|
-
:min_abr_bitrate
|
1313
|
+
:min_abr_bitrate,
|
1314
|
+
:rules)
|
1120
1315
|
SENSITIVE = []
|
1121
1316
|
include Aws::Structure
|
1122
1317
|
end
|
@@ -1132,6 +1327,32 @@ module Aws::MediaConvert
|
|
1132
1327
|
# max_abr_bitrate: 1,
|
1133
1328
|
# max_renditions: 1,
|
1134
1329
|
# min_abr_bitrate: 1,
|
1330
|
+
# rules: [
|
1331
|
+
# {
|
1332
|
+
# allowed_renditions: [
|
1333
|
+
# {
|
1334
|
+
# height: 1,
|
1335
|
+
# required: "ENABLED", # accepts ENABLED, DISABLED
|
1336
|
+
# width: 1,
|
1337
|
+
# },
|
1338
|
+
# ],
|
1339
|
+
# force_include_renditions: [
|
1340
|
+
# {
|
1341
|
+
# height: 1,
|
1342
|
+
# width: 1,
|
1343
|
+
# },
|
1344
|
+
# ],
|
1345
|
+
# min_bottom_rendition_size: {
|
1346
|
+
# height: 1,
|
1347
|
+
# width: 1,
|
1348
|
+
# },
|
1349
|
+
# min_top_rendition_size: {
|
1350
|
+
# height: 1,
|
1351
|
+
# width: 1,
|
1352
|
+
# },
|
1353
|
+
# type: "MIN_TOP_RENDITION_SIZE", # accepts MIN_TOP_RENDITION_SIZE, MIN_BOTTOM_RENDITION_SIZE, FORCE_INCLUDE_RENDITIONS, ALLOWED_RENDITIONS
|
1354
|
+
# },
|
1355
|
+
# ],
|
1135
1356
|
# },
|
1136
1357
|
# }
|
1137
1358
|
#
|
@@ -1150,7 +1371,7 @@ module Aws::MediaConvert
|
|
1150
1371
|
include Aws::Structure
|
1151
1372
|
end
|
1152
1373
|
|
1153
|
-
# Settings for quality-defined variable bitrate encoding with the
|
1374
|
+
# Settings for quality-defined variable bitrate encoding with the AV1
|
1154
1375
|
# codec. Use these settings only when you set QVBR for Rate control mode
|
1155
1376
|
# (RateControlMode).
|
1156
1377
|
#
|
@@ -1944,7 +2165,7 @@ module Aws::MediaConvert
|
|
1944
2165
|
# },
|
1945
2166
|
# webvtt_destination_settings: {
|
1946
2167
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
1947
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
2168
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
1948
2169
|
# },
|
1949
2170
|
# },
|
1950
2171
|
# language_code: "ENG", # accepts ENG, SPA, FRA, DEU, GER, ZHO, ARA, HIN, JPN, RUS, POR, ITA, URD, VIE, KOR, PAN, ABK, AAR, AFR, AKA, SQI, AMH, ARG, HYE, ASM, AVA, AVE, AYM, AZE, BAM, BAK, EUS, BEL, BEN, BIH, BIS, BOS, BRE, BUL, MYA, CAT, KHM, CHA, CHE, NYA, CHU, CHV, COR, COS, CRE, HRV, CES, DAN, DIV, NLD, DZO, ENM, EPO, EST, EWE, FAO, FIJ, FIN, FRM, FUL, GLA, GLG, LUG, KAT, ELL, GRN, GUJ, HAT, HAU, HEB, HER, HMO, HUN, ISL, IDO, IBO, IND, INA, ILE, IKU, IPK, GLE, JAV, KAL, KAN, KAU, KAS, KAZ, KIK, KIN, KIR, KOM, KON, KUA, KUR, LAO, LAT, LAV, LIM, LIN, LIT, LUB, LTZ, MKD, MLG, MSA, MAL, MLT, GLV, MRI, MAR, MAH, MON, NAU, NAV, NDE, NBL, NDO, NEP, SME, NOR, NOB, NNO, OCI, OJI, ORI, ORM, OSS, PLI, FAS, POL, PUS, QUE, QAA, RON, ROH, RUN, SMO, SAG, SAN, SRD, SRB, SNA, III, SND, SIN, SLK, SLV, SOM, SOT, SUN, SWA, SSW, SWE, TGL, TAH, TGK, TAM, TAT, TEL, THA, BOD, TIR, TON, TSO, TSN, TUR, TUK, TWI, UIG, UKR, UZB, VEN, VOL, WLN, CYM, FRY, WOL, XHO, YID, YOR, ZHA, ZUL, ORJ, QPC, TNG, SRP
|
@@ -2090,7 +2311,7 @@ module Aws::MediaConvert
|
|
2090
2311
|
# },
|
2091
2312
|
# webvtt_destination_settings: {
|
2092
2313
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
2093
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
2314
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
2094
2315
|
# },
|
2095
2316
|
# },
|
2096
2317
|
# language_code: "ENG", # accepts ENG, SPA, FRA, DEU, GER, ZHO, ARA, HIN, JPN, RUS, POR, ITA, URD, VIE, KOR, PAN, ABK, AAR, AFR, AKA, SQI, AMH, ARG, HYE, ASM, AVA, AVE, AYM, AZE, BAM, BAK, EUS, BEL, BEN, BIH, BIS, BOS, BRE, BUL, MYA, CAT, KHM, CHA, CHE, NYA, CHU, CHV, COR, COS, CRE, HRV, CES, DAN, DIV, NLD, DZO, ENM, EPO, EST, EWE, FAO, FIJ, FIN, FRM, FUL, GLA, GLG, LUG, KAT, ELL, GRN, GUJ, HAT, HAU, HEB, HER, HMO, HUN, ISL, IDO, IBO, IND, INA, ILE, IKU, IPK, GLE, JAV, KAL, KAN, KAU, KAS, KAZ, KIK, KIN, KIR, KOM, KON, KUA, KUR, LAO, LAT, LAV, LIM, LIN, LIT, LUB, LTZ, MKD, MLG, MSA, MAL, MLT, GLV, MRI, MAR, MAH, MON, NAU, NAV, NDE, NBL, NDO, NEP, SME, NOR, NOB, NNO, OCI, OJI, ORI, ORM, OSS, PLI, FAS, POL, PUS, QUE, QAA, RON, ROH, RUN, SMO, SAG, SAN, SRD, SRB, SNA, III, SND, SIN, SLK, SLV, SOM, SOT, SUN, SWA, SSW, SWE, TGL, TAH, TGK, TAM, TAT, TEL, THA, BOD, TIR, TON, TSO, TSN, TUR, TUK, TWI, UIG, UKR, UZB, VEN, VOL, WLN, CYM, FRY, WOL, XHO, YID, YOR, ZHA, ZUL, ORJ, QPC, TNG, SRP
|
@@ -2235,7 +2456,7 @@ module Aws::MediaConvert
|
|
2235
2456
|
# },
|
2236
2457
|
# webvtt_destination_settings: {
|
2237
2458
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
2238
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
2459
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
2239
2460
|
# },
|
2240
2461
|
# }
|
2241
2462
|
#
|
@@ -3136,6 +3357,7 @@ module Aws::MediaConvert
|
|
3136
3357
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", # accepts ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_NOT_AUTO_SELECT
|
3137
3358
|
# descriptive_video_service_flag: "DONT_FLAG", # accepts DONT_FLAG, FLAG
|
3138
3359
|
# i_frame_only_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
3360
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
3139
3361
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
3140
3362
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
3141
3363
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -3239,6 +3461,15 @@ module Aws::MediaConvert
|
|
3239
3461
|
# value Exclude (EXCLUDE).
|
3240
3462
|
# @return [String]
|
3241
3463
|
#
|
3464
|
+
# @!attribute [rw] klv_metadata
|
3465
|
+
# To include key-length-value metadata in this output: Set KLV
|
3466
|
+
# metadata insertion to Passthrough. MediaConvert reads KLV metadata
|
3467
|
+
# present in your input and writes each instance to a separate event
|
3468
|
+
# message box in the output, according to MISB ST1910.1. To exclude
|
3469
|
+
# this KLV metadata: Set KLV metadata insertion to None or leave
|
3470
|
+
# blank.
|
3471
|
+
# @return [String]
|
3472
|
+
#
|
3242
3473
|
# @!attribute [rw] scte_35_esam
|
3243
3474
|
# Use this setting only when you specify SCTE-35 markers from ESAM.
|
3244
3475
|
# Choose INSERT to put SCTE-35 markers in this output at the insertion
|
@@ -3272,6 +3503,7 @@ module Aws::MediaConvert
|
|
3272
3503
|
:audio_track_type,
|
3273
3504
|
:descriptive_video_service_flag,
|
3274
3505
|
:i_frame_only_manifest,
|
3506
|
+
:klv_metadata,
|
3275
3507
|
:scte_35_esam,
|
3276
3508
|
:scte_35_source,
|
3277
3509
|
:timed_metadata)
|
@@ -3403,6 +3635,7 @@ module Aws::MediaConvert
|
|
3403
3635
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", # accepts ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_NOT_AUTO_SELECT
|
3404
3636
|
# descriptive_video_service_flag: "DONT_FLAG", # accepts DONT_FLAG, FLAG
|
3405
3637
|
# i_frame_only_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
3638
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
3406
3639
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
3407
3640
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
3408
3641
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -3440,6 +3673,7 @@ module Aws::MediaConvert
|
|
3440
3673
|
# es_rate_in_pes: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
3441
3674
|
# force_ts_video_ebp_order: "FORCE", # accepts FORCE, DEFAULT
|
3442
3675
|
# fragment_time: 1.0,
|
3676
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
3443
3677
|
# max_pcr_interval: 1,
|
3444
3678
|
# min_ebp_interval: 1,
|
3445
3679
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
@@ -3504,6 +3738,7 @@ module Aws::MediaConvert
|
|
3504
3738
|
# accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
3505
3739
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
3506
3740
|
# caption_container_type: "RAW", # accepts RAW, FRAGMENTED_MP4
|
3741
|
+
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
3507
3742
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
3508
3743
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
3509
3744
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -3762,6 +3997,9 @@ module Aws::MediaConvert
|
|
3762
3997
|
# supplemental_imps: ["__stringPatternS3ASSETMAPXml"],
|
3763
3998
|
# timecode_source: "EMBEDDED", # accepts EMBEDDED, ZEROBASED, SPECIFIEDSTART
|
3764
3999
|
# timecode_start: "__stringMin11Max11Pattern01D20305D205D",
|
4000
|
+
# video_generator: {
|
4001
|
+
# duration: 1,
|
4002
|
+
# },
|
3765
4003
|
# video_selector: {
|
3766
4004
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
3767
4005
|
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
@@ -3781,6 +4019,7 @@ module Aws::MediaConvert
|
|
3781
4019
|
# white_point_x: 1,
|
3782
4020
|
# white_point_y: 1,
|
3783
4021
|
# },
|
4022
|
+
# pad_video: "DISABLED", # accepts DISABLED, BLACK
|
3784
4023
|
# pid: 1,
|
3785
4024
|
# program_number: 1,
|
3786
4025
|
# rotate: "DEGREE_0", # accepts DEGREE_0, DEGREES_90, DEGREES_180, DEGREES_270, AUTO
|
@@ -3841,6 +4080,32 @@ module Aws::MediaConvert
|
|
3841
4080
|
# max_abr_bitrate: 1,
|
3842
4081
|
# max_renditions: 1,
|
3843
4082
|
# min_abr_bitrate: 1,
|
4083
|
+
# rules: [
|
4084
|
+
# {
|
4085
|
+
# allowed_renditions: [
|
4086
|
+
# {
|
4087
|
+
# height: 1,
|
4088
|
+
# required: "ENABLED", # accepts ENABLED, DISABLED
|
4089
|
+
# width: 1,
|
4090
|
+
# },
|
4091
|
+
# ],
|
4092
|
+
# force_include_renditions: [
|
4093
|
+
# {
|
4094
|
+
# height: 1,
|
4095
|
+
# width: 1,
|
4096
|
+
# },
|
4097
|
+
# ],
|
4098
|
+
# min_bottom_rendition_size: {
|
4099
|
+
# height: 1,
|
4100
|
+
# width: 1,
|
4101
|
+
# },
|
4102
|
+
# min_top_rendition_size: {
|
4103
|
+
# height: 1,
|
4104
|
+
# width: 1,
|
4105
|
+
# },
|
4106
|
+
# type: "MIN_TOP_RENDITION_SIZE", # accepts MIN_TOP_RENDITION_SIZE, MIN_BOTTOM_RENDITION_SIZE, FORCE_INCLUDE_RENDITIONS, ALLOWED_RENDITIONS
|
4107
|
+
# },
|
4108
|
+
# ],
|
3844
4109
|
# },
|
3845
4110
|
# },
|
3846
4111
|
# custom_name: "__string",
|
@@ -4313,7 +4578,7 @@ module Aws::MediaConvert
|
|
4313
4578
|
# },
|
4314
4579
|
# webvtt_destination_settings: {
|
4315
4580
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
4316
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
4581
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
4317
4582
|
# },
|
4318
4583
|
# },
|
4319
4584
|
# language_code: "ENG", # accepts ENG, SPA, FRA, DEU, GER, ZHO, ARA, HIN, JPN, RUS, POR, ITA, URD, VIE, KOR, PAN, ABK, AAR, AFR, AKA, SQI, AMH, ARG, HYE, ASM, AVA, AVE, AYM, AZE, BAM, BAK, EUS, BEL, BEN, BIH, BIS, BOS, BRE, BUL, MYA, CAT, KHM, CHA, CHE, NYA, CHU, CHV, COR, COS, CRE, HRV, CES, DAN, DIV, NLD, DZO, ENM, EPO, EST, EWE, FAO, FIJ, FIN, FRM, FUL, GLA, GLG, LUG, KAT, ELL, GRN, GUJ, HAT, HAU, HEB, HER, HMO, HUN, ISL, IDO, IBO, IND, INA, ILE, IKU, IPK, GLE, JAV, KAL, KAN, KAU, KAS, KAZ, KIK, KIN, KIR, KOM, KON, KUA, KUR, LAO, LAT, LAV, LIM, LIN, LIT, LUB, LTZ, MKD, MLG, MSA, MAL, MLT, GLV, MRI, MAR, MAH, MON, NAU, NAV, NDE, NBL, NDO, NEP, SME, NOR, NOB, NNO, OCI, OJI, ORI, ORM, OSS, PLI, FAS, POL, PUS, QUE, QAA, RON, ROH, RUN, SMO, SAG, SAN, SRD, SRB, SNA, III, SND, SIN, SLK, SLV, SOM, SOT, SUN, SWA, SSW, SWE, TGL, TAH, TGK, TAM, TAT, TEL, THA, BOD, TIR, TON, TSO, TSN, TUR, TUK, TWI, UIG, UKR, UZB, VEN, VOL, WLN, CYM, FRY, WOL, XHO, YID, YOR, ZHA, ZUL, ORJ, QPC, TNG, SRP
|
@@ -4328,6 +4593,7 @@ module Aws::MediaConvert
|
|
4328
4593
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", # accepts ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_NOT_AUTO_SELECT
|
4329
4594
|
# descriptive_video_service_flag: "DONT_FLAG", # accepts DONT_FLAG, FLAG
|
4330
4595
|
# i_frame_only_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
4596
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
4331
4597
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
4332
4598
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
4333
4599
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -4365,6 +4631,7 @@ module Aws::MediaConvert
|
|
4365
4631
|
# es_rate_in_pes: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
4366
4632
|
# force_ts_video_ebp_order: "FORCE", # accepts FORCE, DEFAULT
|
4367
4633
|
# fragment_time: 1.0,
|
4634
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
4368
4635
|
# max_pcr_interval: 1,
|
4369
4636
|
# min_ebp_interval: 1,
|
4370
4637
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
@@ -4429,6 +4696,7 @@ module Aws::MediaConvert
|
|
4429
4696
|
# accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
4430
4697
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
4431
4698
|
# caption_container_type: "RAW", # accepts RAW, FRAGMENTED_MP4
|
4699
|
+
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
4432
4700
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
4433
4701
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
4434
4702
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -4779,7 +5047,8 @@ module Aws::MediaConvert
|
|
4779
5047
|
# max_fall: 1,
|
4780
5048
|
# },
|
4781
5049
|
# l6_mode: "PASSTHROUGH", # accepts PASSTHROUGH, RECALCULATE, SPECIFY
|
4782
|
-
#
|
5050
|
+
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
5051
|
+
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
4783
5052
|
# },
|
4784
5053
|
# hdr_10_plus: {
|
4785
5054
|
# mastering_monitor_nits: 1,
|
@@ -5177,6 +5446,7 @@ module Aws::MediaConvert
|
|
5177
5446
|
# white_point_x: 1,
|
5178
5447
|
# white_point_y: 1,
|
5179
5448
|
# },
|
5449
|
+
# pad_video: "DISABLED", # accepts DISABLED, BLACK
|
5180
5450
|
# pid: 1,
|
5181
5451
|
# program_number: 1,
|
5182
5452
|
# rotate: "DEGREE_0", # accepts DEGREE_0, DEGREES_90, DEGREES_180, DEGREES_270, AUTO
|
@@ -5237,6 +5507,32 @@ module Aws::MediaConvert
|
|
5237
5507
|
# max_abr_bitrate: 1,
|
5238
5508
|
# max_renditions: 1,
|
5239
5509
|
# min_abr_bitrate: 1,
|
5510
|
+
# rules: [
|
5511
|
+
# {
|
5512
|
+
# allowed_renditions: [
|
5513
|
+
# {
|
5514
|
+
# height: 1,
|
5515
|
+
# required: "ENABLED", # accepts ENABLED, DISABLED
|
5516
|
+
# width: 1,
|
5517
|
+
# },
|
5518
|
+
# ],
|
5519
|
+
# force_include_renditions: [
|
5520
|
+
# {
|
5521
|
+
# height: 1,
|
5522
|
+
# width: 1,
|
5523
|
+
# },
|
5524
|
+
# ],
|
5525
|
+
# min_bottom_rendition_size: {
|
5526
|
+
# height: 1,
|
5527
|
+
# width: 1,
|
5528
|
+
# },
|
5529
|
+
# min_top_rendition_size: {
|
5530
|
+
# height: 1,
|
5531
|
+
# width: 1,
|
5532
|
+
# },
|
5533
|
+
# type: "MIN_TOP_RENDITION_SIZE", # accepts MIN_TOP_RENDITION_SIZE, MIN_BOTTOM_RENDITION_SIZE, FORCE_INCLUDE_RENDITIONS, ALLOWED_RENDITIONS
|
5534
|
+
# },
|
5535
|
+
# ],
|
5240
5536
|
# },
|
5241
5537
|
# },
|
5242
5538
|
# custom_name: "__string",
|
@@ -5709,7 +6005,7 @@ module Aws::MediaConvert
|
|
5709
6005
|
# },
|
5710
6006
|
# webvtt_destination_settings: {
|
5711
6007
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
5712
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
6008
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
5713
6009
|
# },
|
5714
6010
|
# },
|
5715
6011
|
# language_code: "ENG", # accepts ENG, SPA, FRA, DEU, GER, ZHO, ARA, HIN, JPN, RUS, POR, ITA, URD, VIE, KOR, PAN, ABK, AAR, AFR, AKA, SQI, AMH, ARG, HYE, ASM, AVA, AVE, AYM, AZE, BAM, BAK, EUS, BEL, BEN, BIH, BIS, BOS, BRE, BUL, MYA, CAT, KHM, CHA, CHE, NYA, CHU, CHV, COR, COS, CRE, HRV, CES, DAN, DIV, NLD, DZO, ENM, EPO, EST, EWE, FAO, FIJ, FIN, FRM, FUL, GLA, GLG, LUG, KAT, ELL, GRN, GUJ, HAT, HAU, HEB, HER, HMO, HUN, ISL, IDO, IBO, IND, INA, ILE, IKU, IPK, GLE, JAV, KAL, KAN, KAU, KAS, KAZ, KIK, KIN, KIR, KOM, KON, KUA, KUR, LAO, LAT, LAV, LIM, LIN, LIT, LUB, LTZ, MKD, MLG, MSA, MAL, MLT, GLV, MRI, MAR, MAH, MON, NAU, NAV, NDE, NBL, NDO, NEP, SME, NOR, NOB, NNO, OCI, OJI, ORI, ORM, OSS, PLI, FAS, POL, PUS, QUE, QAA, RON, ROH, RUN, SMO, SAG, SAN, SRD, SRB, SNA, III, SND, SIN, SLK, SLV, SOM, SOT, SUN, SWA, SSW, SWE, TGL, TAH, TGK, TAM, TAT, TEL, THA, BOD, TIR, TON, TSO, TSN, TUR, TUK, TWI, UIG, UKR, UZB, VEN, VOL, WLN, CYM, FRY, WOL, XHO, YID, YOR, ZHA, ZUL, ORJ, QPC, TNG, SRP
|
@@ -5724,6 +6020,7 @@ module Aws::MediaConvert
|
|
5724
6020
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", # accepts ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_NOT_AUTO_SELECT
|
5725
6021
|
# descriptive_video_service_flag: "DONT_FLAG", # accepts DONT_FLAG, FLAG
|
5726
6022
|
# i_frame_only_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
6023
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
5727
6024
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
5728
6025
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
5729
6026
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -5761,6 +6058,7 @@ module Aws::MediaConvert
|
|
5761
6058
|
# es_rate_in_pes: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
5762
6059
|
# force_ts_video_ebp_order: "FORCE", # accepts FORCE, DEFAULT
|
5763
6060
|
# fragment_time: 1.0,
|
6061
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
5764
6062
|
# max_pcr_interval: 1,
|
5765
6063
|
# min_ebp_interval: 1,
|
5766
6064
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
@@ -5825,6 +6123,7 @@ module Aws::MediaConvert
|
|
5825
6123
|
# accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
5826
6124
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
5827
6125
|
# caption_container_type: "RAW", # accepts RAW, FRAGMENTED_MP4
|
6126
|
+
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
5828
6127
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
5829
6128
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
5830
6129
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -6175,7 +6474,8 @@ module Aws::MediaConvert
|
|
6175
6474
|
# max_fall: 1,
|
6176
6475
|
# },
|
6177
6476
|
# l6_mode: "PASSTHROUGH", # accepts PASSTHROUGH, RECALCULATE, SPECIFY
|
6178
|
-
#
|
6477
|
+
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
6478
|
+
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
6179
6479
|
# },
|
6180
6480
|
# hdr_10_plus: {
|
6181
6481
|
# mastering_monitor_nits: 1,
|
@@ -6574,7 +6874,7 @@ module Aws::MediaConvert
|
|
6574
6874
|
# },
|
6575
6875
|
# webvtt_destination_settings: {
|
6576
6876
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
6577
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
6877
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
6578
6878
|
# },
|
6579
6879
|
# },
|
6580
6880
|
# language_code: "ENG", # accepts ENG, SPA, FRA, DEU, GER, ZHO, ARA, HIN, JPN, RUS, POR, ITA, URD, VIE, KOR, PAN, ABK, AAR, AFR, AKA, SQI, AMH, ARG, HYE, ASM, AVA, AVE, AYM, AZE, BAM, BAK, EUS, BEL, BEN, BIH, BIS, BOS, BRE, BUL, MYA, CAT, KHM, CHA, CHE, NYA, CHU, CHV, COR, COS, CRE, HRV, CES, DAN, DIV, NLD, DZO, ENM, EPO, EST, EWE, FAO, FIJ, FIN, FRM, FUL, GLA, GLG, LUG, KAT, ELL, GRN, GUJ, HAT, HAU, HEB, HER, HMO, HUN, ISL, IDO, IBO, IND, INA, ILE, IKU, IPK, GLE, JAV, KAL, KAN, KAU, KAS, KAZ, KIK, KIN, KIR, KOM, KON, KUA, KUR, LAO, LAT, LAV, LIM, LIN, LIT, LUB, LTZ, MKD, MLG, MSA, MAL, MLT, GLV, MRI, MAR, MAH, MON, NAU, NAV, NDE, NBL, NDO, NEP, SME, NOR, NOB, NNO, OCI, OJI, ORI, ORM, OSS, PLI, FAS, POL, PUS, QUE, QAA, RON, ROH, RUN, SMO, SAG, SAN, SRD, SRB, SNA, III, SND, SIN, SLK, SLV, SOM, SOT, SUN, SWA, SSW, SWE, TGL, TAH, TGK, TAM, TAT, TEL, THA, BOD, TIR, TON, TSO, TSN, TUR, TUK, TWI, UIG, UKR, UZB, VEN, VOL, WLN, CYM, FRY, WOL, XHO, YID, YOR, ZHA, ZUL, ORJ, QPC, TNG, SRP
|
@@ -6589,6 +6889,7 @@ module Aws::MediaConvert
|
|
6589
6889
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", # accepts ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_NOT_AUTO_SELECT
|
6590
6890
|
# descriptive_video_service_flag: "DONT_FLAG", # accepts DONT_FLAG, FLAG
|
6591
6891
|
# i_frame_only_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
6892
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
6592
6893
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
6593
6894
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
6594
6895
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -6626,6 +6927,7 @@ module Aws::MediaConvert
|
|
6626
6927
|
# es_rate_in_pes: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
6627
6928
|
# force_ts_video_ebp_order: "FORCE", # accepts FORCE, DEFAULT
|
6628
6929
|
# fragment_time: 1.0,
|
6930
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
6629
6931
|
# max_pcr_interval: 1,
|
6630
6932
|
# min_ebp_interval: 1,
|
6631
6933
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
@@ -6690,6 +6992,7 @@ module Aws::MediaConvert
|
|
6690
6992
|
# accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
6691
6993
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
6692
6994
|
# caption_container_type: "RAW", # accepts RAW, FRAGMENTED_MP4
|
6995
|
+
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
6693
6996
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
6694
6997
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
6695
6998
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -7026,7 +7329,8 @@ module Aws::MediaConvert
|
|
7026
7329
|
# max_fall: 1,
|
7027
7330
|
# },
|
7028
7331
|
# l6_mode: "PASSTHROUGH", # accepts PASSTHROUGH, RECALCULATE, SPECIFY
|
7029
|
-
#
|
7332
|
+
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
7333
|
+
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
7030
7334
|
# },
|
7031
7335
|
# hdr_10_plus: {
|
7032
7336
|
# mastering_monitor_nits: 1,
|
@@ -7889,9 +8193,8 @@ module Aws::MediaConvert
|
|
7889
8193
|
#
|
7890
8194
|
class DisassociateCertificateResponse < Aws::EmptyStructure; end
|
7891
8195
|
|
7892
|
-
# With AWS Elemental MediaConvert, you can create profile 5 Dolby
|
7893
|
-
# outputs from MXF and IMF sources
|
7894
|
-
# frame-interleaved Dolby Vision metadata.
|
8196
|
+
# With AWS Elemental MediaConvert, you can create profile 5 or 8.1 Dolby
|
8197
|
+
# Vision outputs from MXF and IMF sources.
|
7895
8198
|
#
|
7896
8199
|
# @note When making an API call, you may pass DolbyVision
|
7897
8200
|
# data as a hash:
|
@@ -7902,7 +8205,8 @@ module Aws::MediaConvert
|
|
7902
8205
|
# max_fall: 1,
|
7903
8206
|
# },
|
7904
8207
|
# l6_mode: "PASSTHROUGH", # accepts PASSTHROUGH, RECALCULATE, SPECIFY
|
7905
|
-
#
|
8208
|
+
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
8209
|
+
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
7906
8210
|
# }
|
7907
8211
|
#
|
7908
8212
|
# @!attribute [rw] l6_metadata
|
@@ -7916,10 +8220,25 @@ module Aws::MediaConvert
|
|
7916
8220
|
# Vision MaxCLL and MaxFALL properies.
|
7917
8221
|
# @return [String]
|
7918
8222
|
#
|
8223
|
+
# @!attribute [rw] mapping
|
8224
|
+
# Required when you set Dolby Vision Profile to Profile 8.1. When you
|
8225
|
+
# set Content mapping to None, content mapping is not applied to the
|
8226
|
+
# HDR10-compatible signal. Depending on the source peak nit level,
|
8227
|
+
# clipping might occur on HDR devices without Dolby Vision. When you
|
8228
|
+
# set Content mapping to HDR10 1000, the transcoder creates a 1,000
|
8229
|
+
# nits peak HDR10-compatible signal by applying static content mapping
|
8230
|
+
# to the source. This mode is speed-optimized for PQ10 sources with
|
8231
|
+
# metadata that is created from analysis. For graded Dolby Vision
|
8232
|
+
# content, be aware that creative intent might not be guaranteed with
|
8233
|
+
# extreme 1,000 nits trims.
|
8234
|
+
# @return [String]
|
8235
|
+
#
|
7919
8236
|
# @!attribute [rw] profile
|
7920
|
-
#
|
7921
|
-
#
|
7922
|
-
#
|
8237
|
+
# Required when you use Dolby Vision processing. Set Profile to
|
8238
|
+
# Profile 5 to only include frame-interleaved Dolby Vision metadata in
|
8239
|
+
# your output. Set Profile to Profile 8.1 to include both
|
8240
|
+
# frame-interleaved Dolby Vision metadata and HDR10 metadata in your
|
8241
|
+
# output.
|
7923
8242
|
# @return [String]
|
7924
8243
|
#
|
7925
8244
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/DolbyVision AWS API Documentation
|
@@ -7927,6 +8246,7 @@ module Aws::MediaConvert
|
|
7927
8246
|
class DolbyVision < Struct.new(
|
7928
8247
|
:l6_metadata,
|
7929
8248
|
:l6_mode,
|
8249
|
+
:mapping,
|
7930
8250
|
:profile)
|
7931
8251
|
SENSITIVE = []
|
7932
8252
|
include Aws::Structure
|
@@ -9287,6 +9607,46 @@ module Aws::MediaConvert
|
|
9287
9607
|
include Aws::Structure
|
9288
9608
|
end
|
9289
9609
|
|
9610
|
+
# Use Force include renditions to specify one or more resolutions to
|
9611
|
+
# include your ABR stack. * (Recommended) To optimize automated ABR,
|
9612
|
+
# specify as few resolutions as possible. * (Required) The number of
|
9613
|
+
# resolutions that you specify must be equal to, or less than, the Max
|
9614
|
+
# renditions setting. * If you specify a Min top rendition size rule,
|
9615
|
+
# specify at least one resolution that is equal to, or greater than, Min
|
9616
|
+
# top rendition size. * If you specify a Min bottom rendition size
|
9617
|
+
# rule, only specify resolutions that are equal to, or greater than, Min
|
9618
|
+
# bottom rendition size. * If you specify a Force include renditions
|
9619
|
+
# rule, do not specify a separate rule for Allowed renditions. * Note:
|
9620
|
+
# The ABR stack may include other resolutions that you do not specify
|
9621
|
+
# here, depending on the Max renditions setting.
|
9622
|
+
#
|
9623
|
+
# @note When making an API call, you may pass ForceIncludeRenditionSize
|
9624
|
+
# data as a hash:
|
9625
|
+
#
|
9626
|
+
# {
|
9627
|
+
# height: 1,
|
9628
|
+
# width: 1,
|
9629
|
+
# }
|
9630
|
+
#
|
9631
|
+
# @!attribute [rw] height
|
9632
|
+
# Use Height to define the video resolution height, in pixels, for
|
9633
|
+
# this rule.
|
9634
|
+
# @return [Integer]
|
9635
|
+
#
|
9636
|
+
# @!attribute [rw] width
|
9637
|
+
# Use Width to define the video resolution width, in pixels, for this
|
9638
|
+
# rule.
|
9639
|
+
# @return [Integer]
|
9640
|
+
#
|
9641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ForceIncludeRenditionSize AWS API Documentation
|
9642
|
+
#
|
9643
|
+
class ForceIncludeRenditionSize < Struct.new(
|
9644
|
+
:height,
|
9645
|
+
:width)
|
9646
|
+
SENSITIVE = []
|
9647
|
+
include Aws::Structure
|
9648
|
+
end
|
9649
|
+
|
9290
9650
|
# Required when you set (Codec) under (VideoDescription)>(CodecSettings)
|
9291
9651
|
# to the value FRAME\_CAPTURE.
|
9292
9652
|
#
|
@@ -9517,7 +9877,7 @@ module Aws::MediaConvert
|
|
9517
9877
|
include Aws::Structure
|
9518
9878
|
end
|
9519
9879
|
|
9520
|
-
# Settings for quality-defined variable bitrate encoding with the H.
|
9880
|
+
# Settings for quality-defined variable bitrate encoding with the H.264
|
9521
9881
|
# codec. Use these settings only when you set QVBR for Rate control mode
|
9522
9882
|
# (RateControlMode).
|
9523
9883
|
#
|
@@ -11675,14 +12035,14 @@ module Aws::MediaConvert
|
|
11675
12035
|
# }
|
11676
12036
|
#
|
11677
12037
|
# @!attribute [rw] accessibility
|
11678
|
-
# Set Accessibility subtitles
|
11679
|
-
#
|
11680
|
-
#
|
11681
|
-
#
|
11682
|
-
#
|
12038
|
+
# Set Accessibility subtitles to Enabled if the ISMC or WebVTT
|
12039
|
+
# captions track is intended to provide accessibility for people who
|
12040
|
+
# are deaf or hard of hearing. When you enable this feature,
|
12041
|
+
# MediaConvert adds the following attributes under EXT-X-MEDIA in the
|
12042
|
+
# HLS or CMAF manifest for this track:
|
11683
12043
|
# CHARACTERISTICS="public.accessibility.describes-spoken-dialog,public.accessibility.describes-music-and-sound"
|
11684
|
-
# and AUTOSELECT="YES". Keep the default value, Disabled
|
11685
|
-
#
|
12044
|
+
# and AUTOSELECT="YES". Keep the default value, Disabled, if the
|
12045
|
+
# captions track is not intended to provide such accessibility.
|
11686
12046
|
# MediaConvert will not add the above attributes.
|
11687
12047
|
# @return [String]
|
11688
12048
|
#
|
@@ -11846,6 +12206,9 @@ module Aws::MediaConvert
|
|
11846
12206
|
# supplemental_imps: ["__stringPatternS3ASSETMAPXml"],
|
11847
12207
|
# timecode_source: "EMBEDDED", # accepts EMBEDDED, ZEROBASED, SPECIFIEDSTART
|
11848
12208
|
# timecode_start: "__stringMin11Max11Pattern01D20305D205D",
|
12209
|
+
# video_generator: {
|
12210
|
+
# duration: 1,
|
12211
|
+
# },
|
11849
12212
|
# video_selector: {
|
11850
12213
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
11851
12214
|
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
@@ -11865,6 +12228,7 @@ module Aws::MediaConvert
|
|
11865
12228
|
# white_point_x: 1,
|
11866
12229
|
# white_point_y: 1,
|
11867
12230
|
# },
|
12231
|
+
# pad_video: "DISABLED", # accepts DISABLED, BLACK
|
11868
12232
|
# pid: 1,
|
11869
12233
|
# program_number: 1,
|
11870
12234
|
# rotate: "DEGREE_0", # accepts DEGREE_0, DEGREES_90, DEGREES_180, DEGREES_270, AUTO
|
@@ -12048,6 +12412,15 @@ module Aws::MediaConvert
|
|
12048
12412
|
# https://docs.aws.amazon.com/console/mediaconvert/timecode.
|
12049
12413
|
# @return [String]
|
12050
12414
|
#
|
12415
|
+
# @!attribute [rw] video_generator
|
12416
|
+
# Use this setting if you do not have a video input or if you want to
|
12417
|
+
# add black video frames before, or after, other inputs. When you
|
12418
|
+
# include Video generator, MediaConvert creates a video input with
|
12419
|
+
# black frames and without an audio track. You can specify a value for
|
12420
|
+
# Video generator, or you can specify an Input file, but you cannot
|
12421
|
+
# specify both.
|
12422
|
+
# @return [Types::InputVideoGenerator]
|
12423
|
+
#
|
12051
12424
|
# @!attribute [rw] video_selector
|
12052
12425
|
# Input video selectors contain the video settings for the input. Each
|
12053
12426
|
# of your inputs can have up to one video selector.
|
@@ -12076,6 +12449,7 @@ module Aws::MediaConvert
|
|
12076
12449
|
:supplemental_imps,
|
12077
12450
|
:timecode_source,
|
12078
12451
|
:timecode_start,
|
12452
|
+
:video_generator,
|
12079
12453
|
:video_selector)
|
12080
12454
|
SENSITIVE = []
|
12081
12455
|
include Aws::Structure
|
@@ -12331,6 +12705,7 @@ module Aws::MediaConvert
|
|
12331
12705
|
# white_point_x: 1,
|
12332
12706
|
# white_point_y: 1,
|
12333
12707
|
# },
|
12708
|
+
# pad_video: "DISABLED", # accepts DISABLED, BLACK
|
12334
12709
|
# pid: 1,
|
12335
12710
|
# program_number: 1,
|
12336
12711
|
# rotate: "DEGREE_0", # accepts DEGREE_0, DEGREES_90, DEGREES_180, DEGREES_270, AUTO
|
@@ -12516,6 +12891,34 @@ module Aws::MediaConvert
|
|
12516
12891
|
include Aws::Structure
|
12517
12892
|
end
|
12518
12893
|
|
12894
|
+
# Use this setting if you do not have a video input or if you want to
|
12895
|
+
# add black video frames before, or after, other inputs. When you
|
12896
|
+
# include Video generator, MediaConvert creates a video input with black
|
12897
|
+
# frames and without an audio track. You can specify a value for Video
|
12898
|
+
# generator, or you can specify an Input file, but you cannot specify
|
12899
|
+
# both.
|
12900
|
+
#
|
12901
|
+
# @note When making an API call, you may pass InputVideoGenerator
|
12902
|
+
# data as a hash:
|
12903
|
+
#
|
12904
|
+
# {
|
12905
|
+
# duration: 1,
|
12906
|
+
# }
|
12907
|
+
#
|
12908
|
+
# @!attribute [rw] duration
|
12909
|
+
# Specify an integer value for Black video duration from 50 to
|
12910
|
+
# 86400000 to generate a black video input for that many milliseconds.
|
12911
|
+
# Required when you include Video generator.
|
12912
|
+
# @return [Integer]
|
12913
|
+
#
|
12914
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/InputVideoGenerator AWS API Documentation
|
12915
|
+
#
|
12916
|
+
class InputVideoGenerator < Struct.new(
|
12917
|
+
:duration)
|
12918
|
+
SENSITIVE = []
|
12919
|
+
include Aws::Structure
|
12920
|
+
end
|
12921
|
+
|
12519
12922
|
# These settings apply to a specific graphic overlay. You can include
|
12520
12923
|
# multiple overlays in your job.
|
12521
12924
|
#
|
@@ -12996,6 +13399,9 @@ module Aws::MediaConvert
|
|
12996
13399
|
# supplemental_imps: ["__stringPatternS3ASSETMAPXml"],
|
12997
13400
|
# timecode_source: "EMBEDDED", # accepts EMBEDDED, ZEROBASED, SPECIFIEDSTART
|
12998
13401
|
# timecode_start: "__stringMin11Max11Pattern01D20305D205D",
|
13402
|
+
# video_generator: {
|
13403
|
+
# duration: 1,
|
13404
|
+
# },
|
12999
13405
|
# video_selector: {
|
13000
13406
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
13001
13407
|
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
@@ -13015,6 +13421,7 @@ module Aws::MediaConvert
|
|
13015
13421
|
# white_point_x: 1,
|
13016
13422
|
# white_point_y: 1,
|
13017
13423
|
# },
|
13424
|
+
# pad_video: "DISABLED", # accepts DISABLED, BLACK
|
13018
13425
|
# pid: 1,
|
13019
13426
|
# program_number: 1,
|
13020
13427
|
# rotate: "DEGREE_0", # accepts DEGREE_0, DEGREES_90, DEGREES_180, DEGREES_270, AUTO
|
@@ -13075,6 +13482,32 @@ module Aws::MediaConvert
|
|
13075
13482
|
# max_abr_bitrate: 1,
|
13076
13483
|
# max_renditions: 1,
|
13077
13484
|
# min_abr_bitrate: 1,
|
13485
|
+
# rules: [
|
13486
|
+
# {
|
13487
|
+
# allowed_renditions: [
|
13488
|
+
# {
|
13489
|
+
# height: 1,
|
13490
|
+
# required: "ENABLED", # accepts ENABLED, DISABLED
|
13491
|
+
# width: 1,
|
13492
|
+
# },
|
13493
|
+
# ],
|
13494
|
+
# force_include_renditions: [
|
13495
|
+
# {
|
13496
|
+
# height: 1,
|
13497
|
+
# width: 1,
|
13498
|
+
# },
|
13499
|
+
# ],
|
13500
|
+
# min_bottom_rendition_size: {
|
13501
|
+
# height: 1,
|
13502
|
+
# width: 1,
|
13503
|
+
# },
|
13504
|
+
# min_top_rendition_size: {
|
13505
|
+
# height: 1,
|
13506
|
+
# width: 1,
|
13507
|
+
# },
|
13508
|
+
# type: "MIN_TOP_RENDITION_SIZE", # accepts MIN_TOP_RENDITION_SIZE, MIN_BOTTOM_RENDITION_SIZE, FORCE_INCLUDE_RENDITIONS, ALLOWED_RENDITIONS
|
13509
|
+
# },
|
13510
|
+
# ],
|
13078
13511
|
# },
|
13079
13512
|
# },
|
13080
13513
|
# custom_name: "__string",
|
@@ -13547,7 +13980,7 @@ module Aws::MediaConvert
|
|
13547
13980
|
# },
|
13548
13981
|
# webvtt_destination_settings: {
|
13549
13982
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
13550
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
13983
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
13551
13984
|
# },
|
13552
13985
|
# },
|
13553
13986
|
# language_code: "ENG", # accepts ENG, SPA, FRA, DEU, GER, ZHO, ARA, HIN, JPN, RUS, POR, ITA, URD, VIE, KOR, PAN, ABK, AAR, AFR, AKA, SQI, AMH, ARG, HYE, ASM, AVA, AVE, AYM, AZE, BAM, BAK, EUS, BEL, BEN, BIH, BIS, BOS, BRE, BUL, MYA, CAT, KHM, CHA, CHE, NYA, CHU, CHV, COR, COS, CRE, HRV, CES, DAN, DIV, NLD, DZO, ENM, EPO, EST, EWE, FAO, FIJ, FIN, FRM, FUL, GLA, GLG, LUG, KAT, ELL, GRN, GUJ, HAT, HAU, HEB, HER, HMO, HUN, ISL, IDO, IBO, IND, INA, ILE, IKU, IPK, GLE, JAV, KAL, KAN, KAU, KAS, KAZ, KIK, KIN, KIR, KOM, KON, KUA, KUR, LAO, LAT, LAV, LIM, LIN, LIT, LUB, LTZ, MKD, MLG, MSA, MAL, MLT, GLV, MRI, MAR, MAH, MON, NAU, NAV, NDE, NBL, NDO, NEP, SME, NOR, NOB, NNO, OCI, OJI, ORI, ORM, OSS, PLI, FAS, POL, PUS, QUE, QAA, RON, ROH, RUN, SMO, SAG, SAN, SRD, SRB, SNA, III, SND, SIN, SLK, SLV, SOM, SOT, SUN, SWA, SSW, SWE, TGL, TAH, TGK, TAM, TAT, TEL, THA, BOD, TIR, TON, TSO, TSN, TUR, TUK, TWI, UIG, UKR, UZB, VEN, VOL, WLN, CYM, FRY, WOL, XHO, YID, YOR, ZHA, ZUL, ORJ, QPC, TNG, SRP
|
@@ -13562,6 +13995,7 @@ module Aws::MediaConvert
|
|
13562
13995
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", # accepts ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_NOT_AUTO_SELECT
|
13563
13996
|
# descriptive_video_service_flag: "DONT_FLAG", # accepts DONT_FLAG, FLAG
|
13564
13997
|
# i_frame_only_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
13998
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
13565
13999
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
13566
14000
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
13567
14001
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -13599,6 +14033,7 @@ module Aws::MediaConvert
|
|
13599
14033
|
# es_rate_in_pes: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
13600
14034
|
# force_ts_video_ebp_order: "FORCE", # accepts FORCE, DEFAULT
|
13601
14035
|
# fragment_time: 1.0,
|
14036
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
13602
14037
|
# max_pcr_interval: 1,
|
13603
14038
|
# min_ebp_interval: 1,
|
13604
14039
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
@@ -13663,6 +14098,7 @@ module Aws::MediaConvert
|
|
13663
14098
|
# accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
13664
14099
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
13665
14100
|
# caption_container_type: "RAW", # accepts RAW, FRAGMENTED_MP4
|
14101
|
+
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
13666
14102
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
13667
14103
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
13668
14104
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -14013,7 +14449,8 @@ module Aws::MediaConvert
|
|
14013
14449
|
# max_fall: 1,
|
14014
14450
|
# },
|
14015
14451
|
# l6_mode: "PASSTHROUGH", # accepts PASSTHROUGH, RECALCULATE, SPECIFY
|
14016
|
-
#
|
14452
|
+
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
14453
|
+
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
14017
14454
|
# },
|
14018
14455
|
# hdr_10_plus: {
|
14019
14456
|
# mastering_monitor_nits: 1,
|
@@ -14461,6 +14898,7 @@ module Aws::MediaConvert
|
|
14461
14898
|
# white_point_x: 1,
|
14462
14899
|
# white_point_y: 1,
|
14463
14900
|
# },
|
14901
|
+
# pad_video: "DISABLED", # accepts DISABLED, BLACK
|
14464
14902
|
# pid: 1,
|
14465
14903
|
# program_number: 1,
|
14466
14904
|
# rotate: "DEGREE_0", # accepts DEGREE_0, DEGREES_90, DEGREES_180, DEGREES_270, AUTO
|
@@ -14521,6 +14959,32 @@ module Aws::MediaConvert
|
|
14521
14959
|
# max_abr_bitrate: 1,
|
14522
14960
|
# max_renditions: 1,
|
14523
14961
|
# min_abr_bitrate: 1,
|
14962
|
+
# rules: [
|
14963
|
+
# {
|
14964
|
+
# allowed_renditions: [
|
14965
|
+
# {
|
14966
|
+
# height: 1,
|
14967
|
+
# required: "ENABLED", # accepts ENABLED, DISABLED
|
14968
|
+
# width: 1,
|
14969
|
+
# },
|
14970
|
+
# ],
|
14971
|
+
# force_include_renditions: [
|
14972
|
+
# {
|
14973
|
+
# height: 1,
|
14974
|
+
# width: 1,
|
14975
|
+
# },
|
14976
|
+
# ],
|
14977
|
+
# min_bottom_rendition_size: {
|
14978
|
+
# height: 1,
|
14979
|
+
# width: 1,
|
14980
|
+
# },
|
14981
|
+
# min_top_rendition_size: {
|
14982
|
+
# height: 1,
|
14983
|
+
# width: 1,
|
14984
|
+
# },
|
14985
|
+
# type: "MIN_TOP_RENDITION_SIZE", # accepts MIN_TOP_RENDITION_SIZE, MIN_BOTTOM_RENDITION_SIZE, FORCE_INCLUDE_RENDITIONS, ALLOWED_RENDITIONS
|
14986
|
+
# },
|
14987
|
+
# ],
|
14524
14988
|
# },
|
14525
14989
|
# },
|
14526
14990
|
# custom_name: "__string",
|
@@ -14993,7 +15457,7 @@ module Aws::MediaConvert
|
|
14993
15457
|
# },
|
14994
15458
|
# webvtt_destination_settings: {
|
14995
15459
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
14996
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
15460
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
14997
15461
|
# },
|
14998
15462
|
# },
|
14999
15463
|
# language_code: "ENG", # accepts ENG, SPA, FRA, DEU, GER, ZHO, ARA, HIN, JPN, RUS, POR, ITA, URD, VIE, KOR, PAN, ABK, AAR, AFR, AKA, SQI, AMH, ARG, HYE, ASM, AVA, AVE, AYM, AZE, BAM, BAK, EUS, BEL, BEN, BIH, BIS, BOS, BRE, BUL, MYA, CAT, KHM, CHA, CHE, NYA, CHU, CHV, COR, COS, CRE, HRV, CES, DAN, DIV, NLD, DZO, ENM, EPO, EST, EWE, FAO, FIJ, FIN, FRM, FUL, GLA, GLG, LUG, KAT, ELL, GRN, GUJ, HAT, HAU, HEB, HER, HMO, HUN, ISL, IDO, IBO, IND, INA, ILE, IKU, IPK, GLE, JAV, KAL, KAN, KAU, KAS, KAZ, KIK, KIN, KIR, KOM, KON, KUA, KUR, LAO, LAT, LAV, LIM, LIN, LIT, LUB, LTZ, MKD, MLG, MSA, MAL, MLT, GLV, MRI, MAR, MAH, MON, NAU, NAV, NDE, NBL, NDO, NEP, SME, NOR, NOB, NNO, OCI, OJI, ORI, ORM, OSS, PLI, FAS, POL, PUS, QUE, QAA, RON, ROH, RUN, SMO, SAG, SAN, SRD, SRB, SNA, III, SND, SIN, SLK, SLV, SOM, SOT, SUN, SWA, SSW, SWE, TGL, TAH, TGK, TAM, TAT, TEL, THA, BOD, TIR, TON, TSO, TSN, TUR, TUK, TWI, UIG, UKR, UZB, VEN, VOL, WLN, CYM, FRY, WOL, XHO, YID, YOR, ZHA, ZUL, ORJ, QPC, TNG, SRP
|
@@ -15008,6 +15472,7 @@ module Aws::MediaConvert
|
|
15008
15472
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", # accepts ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_NOT_AUTO_SELECT
|
15009
15473
|
# descriptive_video_service_flag: "DONT_FLAG", # accepts DONT_FLAG, FLAG
|
15010
15474
|
# i_frame_only_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
15475
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
15011
15476
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
15012
15477
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
15013
15478
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -15045,6 +15510,7 @@ module Aws::MediaConvert
|
|
15045
15510
|
# es_rate_in_pes: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
15046
15511
|
# force_ts_video_ebp_order: "FORCE", # accepts FORCE, DEFAULT
|
15047
15512
|
# fragment_time: 1.0,
|
15513
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
15048
15514
|
# max_pcr_interval: 1,
|
15049
15515
|
# min_ebp_interval: 1,
|
15050
15516
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
@@ -15109,6 +15575,7 @@ module Aws::MediaConvert
|
|
15109
15575
|
# accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
15110
15576
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
15111
15577
|
# caption_container_type: "RAW", # accepts RAW, FRAGMENTED_MP4
|
15578
|
+
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
15112
15579
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
15113
15580
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
15114
15581
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -15459,7 +15926,8 @@ module Aws::MediaConvert
|
|
15459
15926
|
# max_fall: 1,
|
15460
15927
|
# },
|
15461
15928
|
# l6_mode: "PASSTHROUGH", # accepts PASSTHROUGH, RECALCULATE, SPECIFY
|
15462
|
-
#
|
15929
|
+
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
15930
|
+
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
15463
15931
|
# },
|
15464
15932
|
# hdr_10_plus: {
|
15465
15933
|
# mastering_monitor_nits: 1,
|
@@ -16182,6 +16650,7 @@ module Aws::MediaConvert
|
|
16182
16650
|
# es_rate_in_pes: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
16183
16651
|
# force_ts_video_ebp_order: "FORCE", # accepts FORCE, DEFAULT
|
16184
16652
|
# fragment_time: 1.0,
|
16653
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
16185
16654
|
# max_pcr_interval: 1,
|
16186
16655
|
# min_ebp_interval: 1,
|
16187
16656
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
@@ -16329,6 +16798,14 @@ module Aws::MediaConvert
|
|
16329
16798
|
# markers.
|
16330
16799
|
# @return [Float]
|
16331
16800
|
#
|
16801
|
+
# @!attribute [rw] klv_metadata
|
16802
|
+
# To include key-length-value metadata in this output: Set KLV
|
16803
|
+
# metadata insertion to Passthrough. MediaConvert reads KLV metadata
|
16804
|
+
# present in your input and passes it through to the output transport
|
16805
|
+
# stream. To exclude this KLV metadata: Set KLV metadata insertion to
|
16806
|
+
# None or leave blank.
|
16807
|
+
# @return [String]
|
16808
|
+
#
|
16332
16809
|
# @!attribute [rw] max_pcr_interval
|
16333
16810
|
# Specify the maximum time, in milliseconds, between Program Clock
|
16334
16811
|
# References (PCRs) inserted into the transport stream.
|
@@ -16459,8 +16936,8 @@ module Aws::MediaConvert
|
|
16459
16936
|
# @return [Float]
|
16460
16937
|
#
|
16461
16938
|
# @!attribute [rw] timed_metadata_pid
|
16462
|
-
#
|
16463
|
-
#
|
16939
|
+
# Packet Identifier (PID) of the ID3 metadata stream in the transport
|
16940
|
+
# stream.
|
16464
16941
|
# @return [Integer]
|
16465
16942
|
#
|
16466
16943
|
# @!attribute [rw] transport_stream_id
|
@@ -16495,6 +16972,7 @@ module Aws::MediaConvert
|
|
16495
16972
|
:es_rate_in_pes,
|
16496
16973
|
:force_ts_video_ebp_order,
|
16497
16974
|
:fragment_time,
|
16975
|
+
:klv_metadata,
|
16498
16976
|
:max_pcr_interval,
|
16499
16977
|
:min_ebp_interval,
|
16500
16978
|
:nielsen_id_3,
|
@@ -16699,6 +17177,76 @@ module Aws::MediaConvert
|
|
16699
17177
|
include Aws::Structure
|
16700
17178
|
end
|
16701
17179
|
|
17180
|
+
# Use Min bottom rendition size to specify a minimum size for the lowest
|
17181
|
+
# resolution in your ABR stack. * The lowest resolution in your ABR
|
17182
|
+
# stack will be equal to or greater than the value that you enter. For
|
17183
|
+
# example: If you specify 640x360 the lowest resolution in your ABR
|
17184
|
+
# stack will be equal to or greater than to 640x360. * If you specify a
|
17185
|
+
# Min top rendition size rule, the value that you specify for Min bottom
|
17186
|
+
# rendition size must be less than, or equal to, Min top rendition size.
|
17187
|
+
#
|
17188
|
+
# @note When making an API call, you may pass MinBottomRenditionSize
|
17189
|
+
# data as a hash:
|
17190
|
+
#
|
17191
|
+
# {
|
17192
|
+
# height: 1,
|
17193
|
+
# width: 1,
|
17194
|
+
# }
|
17195
|
+
#
|
17196
|
+
# @!attribute [rw] height
|
17197
|
+
# Use Height to define the video resolution height, in pixels, for
|
17198
|
+
# this rule.
|
17199
|
+
# @return [Integer]
|
17200
|
+
#
|
17201
|
+
# @!attribute [rw] width
|
17202
|
+
# Use Width to define the video resolution width, in pixels, for this
|
17203
|
+
# rule.
|
17204
|
+
# @return [Integer]
|
17205
|
+
#
|
17206
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/MinBottomRenditionSize AWS API Documentation
|
17207
|
+
#
|
17208
|
+
class MinBottomRenditionSize < Struct.new(
|
17209
|
+
:height,
|
17210
|
+
:width)
|
17211
|
+
SENSITIVE = []
|
17212
|
+
include Aws::Structure
|
17213
|
+
end
|
17214
|
+
|
17215
|
+
# Use Min top rendition size to specify a minimum size for the highest
|
17216
|
+
# resolution in your ABR stack. * The highest resolution in your ABR
|
17217
|
+
# stack will be equal to or greater than the value that you enter. For
|
17218
|
+
# example: If you specify 1280x720 the highest resolution in your ABR
|
17219
|
+
# stack will be equal to or greater than 1280x720. * If you specify a
|
17220
|
+
# value for Max resolution, the value that you specify for Min top
|
17221
|
+
# rendition size must be less than, or equal to, Max resolution.
|
17222
|
+
#
|
17223
|
+
# @note When making an API call, you may pass MinTopRenditionSize
|
17224
|
+
# data as a hash:
|
17225
|
+
#
|
17226
|
+
# {
|
17227
|
+
# height: 1,
|
17228
|
+
# width: 1,
|
17229
|
+
# }
|
17230
|
+
#
|
17231
|
+
# @!attribute [rw] height
|
17232
|
+
# Use Height to define the video resolution height, in pixels, for
|
17233
|
+
# this rule.
|
17234
|
+
# @return [Integer]
|
17235
|
+
#
|
17236
|
+
# @!attribute [rw] width
|
17237
|
+
# Use Width to define the video resolution width, in pixels, for this
|
17238
|
+
# rule.
|
17239
|
+
# @return [Integer]
|
17240
|
+
#
|
17241
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/MinTopRenditionSize AWS API Documentation
|
17242
|
+
#
|
17243
|
+
class MinTopRenditionSize < Struct.new(
|
17244
|
+
:height,
|
17245
|
+
:width)
|
17246
|
+
SENSITIVE = []
|
17247
|
+
include Aws::Structure
|
17248
|
+
end
|
17249
|
+
|
16702
17250
|
# Overlay motion graphics on top of your video. The motion graphics that
|
16703
17251
|
# you specify here appear on all outputs in all output groups. For more
|
16704
17252
|
# information, see
|
@@ -17096,6 +17644,7 @@ module Aws::MediaConvert
|
|
17096
17644
|
# accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
17097
17645
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
17098
17646
|
# caption_container_type: "RAW", # accepts RAW, FRAGMENTED_MP4
|
17647
|
+
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
17099
17648
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
17100
17649
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
17101
17650
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -17134,6 +17683,15 @@ module Aws::MediaConvert
|
|
17134
17683
|
# from your video and audio fragmented MP4 files.
|
17135
17684
|
# @return [String]
|
17136
17685
|
#
|
17686
|
+
# @!attribute [rw] klv_metadata
|
17687
|
+
# To include key-length-value metadata in this output: Set KLV
|
17688
|
+
# metadata insertion to Passthrough. MediaConvert reads KLV metadata
|
17689
|
+
# present in your input and writes each instance to a separate event
|
17690
|
+
# message box in the output, according to MISB ST1910.1. To exclude
|
17691
|
+
# this KLV metadata: Set KLV metadata insertion to None or leave
|
17692
|
+
# blank.
|
17693
|
+
# @return [String]
|
17694
|
+
#
|
17137
17695
|
# @!attribute [rw] scte_35_esam
|
17138
17696
|
# Use this setting only when you specify SCTE-35 markers from ESAM.
|
17139
17697
|
# Choose INSERT to put SCTE-35 markers in this output at the insertion
|
@@ -17164,6 +17722,7 @@ module Aws::MediaConvert
|
|
17164
17722
|
:accessibility_caption_hints,
|
17165
17723
|
:audio_duration,
|
17166
17724
|
:caption_container_type,
|
17725
|
+
:klv_metadata,
|
17167
17726
|
:scte_35_esam,
|
17168
17727
|
:scte_35_source,
|
17169
17728
|
:timed_metadata)
|
@@ -18537,7 +19096,7 @@ module Aws::MediaConvert
|
|
18537
19096
|
# },
|
18538
19097
|
# webvtt_destination_settings: {
|
18539
19098
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
18540
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
19099
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
18541
19100
|
# },
|
18542
19101
|
# },
|
18543
19102
|
# language_code: "ENG", # accepts ENG, SPA, FRA, DEU, GER, ZHO, ARA, HIN, JPN, RUS, POR, ITA, URD, VIE, KOR, PAN, ABK, AAR, AFR, AKA, SQI, AMH, ARG, HYE, ASM, AVA, AVE, AYM, AZE, BAM, BAK, EUS, BEL, BEN, BIH, BIS, BOS, BRE, BUL, MYA, CAT, KHM, CHA, CHE, NYA, CHU, CHV, COR, COS, CRE, HRV, CES, DAN, DIV, NLD, DZO, ENM, EPO, EST, EWE, FAO, FIJ, FIN, FRM, FUL, GLA, GLG, LUG, KAT, ELL, GRN, GUJ, HAT, HAU, HEB, HER, HMO, HUN, ISL, IDO, IBO, IND, INA, ILE, IKU, IPK, GLE, JAV, KAL, KAN, KAU, KAS, KAZ, KIK, KIN, KIR, KOM, KON, KUA, KUR, LAO, LAT, LAV, LIM, LIN, LIT, LUB, LTZ, MKD, MLG, MSA, MAL, MLT, GLV, MRI, MAR, MAH, MON, NAU, NAV, NDE, NBL, NDO, NEP, SME, NOR, NOB, NNO, OCI, OJI, ORI, ORM, OSS, PLI, FAS, POL, PUS, QUE, QAA, RON, ROH, RUN, SMO, SAG, SAN, SRD, SRB, SNA, III, SND, SIN, SLK, SLV, SOM, SOT, SUN, SWA, SSW, SWE, TGL, TAH, TGK, TAM, TAT, TEL, THA, BOD, TIR, TON, TSO, TSN, TUR, TUK, TWI, UIG, UKR, UZB, VEN, VOL, WLN, CYM, FRY, WOL, XHO, YID, YOR, ZHA, ZUL, ORJ, QPC, TNG, SRP
|
@@ -18552,6 +19111,7 @@ module Aws::MediaConvert
|
|
18552
19111
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", # accepts ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_NOT_AUTO_SELECT
|
18553
19112
|
# descriptive_video_service_flag: "DONT_FLAG", # accepts DONT_FLAG, FLAG
|
18554
19113
|
# i_frame_only_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
19114
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
18555
19115
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
18556
19116
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
18557
19117
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -18589,6 +19149,7 @@ module Aws::MediaConvert
|
|
18589
19149
|
# es_rate_in_pes: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
18590
19150
|
# force_ts_video_ebp_order: "FORCE", # accepts FORCE, DEFAULT
|
18591
19151
|
# fragment_time: 1.0,
|
19152
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
18592
19153
|
# max_pcr_interval: 1,
|
18593
19154
|
# min_ebp_interval: 1,
|
18594
19155
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
@@ -18653,6 +19214,7 @@ module Aws::MediaConvert
|
|
18653
19214
|
# accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
18654
19215
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
18655
19216
|
# caption_container_type: "RAW", # accepts RAW, FRAGMENTED_MP4
|
19217
|
+
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
18656
19218
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
18657
19219
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
18658
19220
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -19003,7 +19565,8 @@ module Aws::MediaConvert
|
|
19003
19565
|
# max_fall: 1,
|
19004
19566
|
# },
|
19005
19567
|
# l6_mode: "PASSTHROUGH", # accepts PASSTHROUGH, RECALCULATE, SPECIFY
|
19006
|
-
#
|
19568
|
+
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
19569
|
+
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
19007
19570
|
# },
|
19008
19571
|
# hdr_10_plus: {
|
19009
19572
|
# mastering_monitor_nits: 1,
|
@@ -19193,6 +19756,32 @@ module Aws::MediaConvert
|
|
19193
19756
|
# max_abr_bitrate: 1,
|
19194
19757
|
# max_renditions: 1,
|
19195
19758
|
# min_abr_bitrate: 1,
|
19759
|
+
# rules: [
|
19760
|
+
# {
|
19761
|
+
# allowed_renditions: [
|
19762
|
+
# {
|
19763
|
+
# height: 1,
|
19764
|
+
# required: "ENABLED", # accepts ENABLED, DISABLED
|
19765
|
+
# width: 1,
|
19766
|
+
# },
|
19767
|
+
# ],
|
19768
|
+
# force_include_renditions: [
|
19769
|
+
# {
|
19770
|
+
# height: 1,
|
19771
|
+
# width: 1,
|
19772
|
+
# },
|
19773
|
+
# ],
|
19774
|
+
# min_bottom_rendition_size: {
|
19775
|
+
# height: 1,
|
19776
|
+
# width: 1,
|
19777
|
+
# },
|
19778
|
+
# min_top_rendition_size: {
|
19779
|
+
# height: 1,
|
19780
|
+
# width: 1,
|
19781
|
+
# },
|
19782
|
+
# type: "MIN_TOP_RENDITION_SIZE", # accepts MIN_TOP_RENDITION_SIZE, MIN_BOTTOM_RENDITION_SIZE, FORCE_INCLUDE_RENDITIONS, ALLOWED_RENDITIONS
|
19783
|
+
# },
|
19784
|
+
# ],
|
19196
19785
|
# },
|
19197
19786
|
# },
|
19198
19787
|
# custom_name: "__string",
|
@@ -19665,7 +20254,7 @@ module Aws::MediaConvert
|
|
19665
20254
|
# },
|
19666
20255
|
# webvtt_destination_settings: {
|
19667
20256
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
19668
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
20257
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
19669
20258
|
# },
|
19670
20259
|
# },
|
19671
20260
|
# language_code: "ENG", # accepts ENG, SPA, FRA, DEU, GER, ZHO, ARA, HIN, JPN, RUS, POR, ITA, URD, VIE, KOR, PAN, ABK, AAR, AFR, AKA, SQI, AMH, ARG, HYE, ASM, AVA, AVE, AYM, AZE, BAM, BAK, EUS, BEL, BEN, BIH, BIS, BOS, BRE, BUL, MYA, CAT, KHM, CHA, CHE, NYA, CHU, CHV, COR, COS, CRE, HRV, CES, DAN, DIV, NLD, DZO, ENM, EPO, EST, EWE, FAO, FIJ, FIN, FRM, FUL, GLA, GLG, LUG, KAT, ELL, GRN, GUJ, HAT, HAU, HEB, HER, HMO, HUN, ISL, IDO, IBO, IND, INA, ILE, IKU, IPK, GLE, JAV, KAL, KAN, KAU, KAS, KAZ, KIK, KIN, KIR, KOM, KON, KUA, KUR, LAO, LAT, LAV, LIM, LIN, LIT, LUB, LTZ, MKD, MLG, MSA, MAL, MLT, GLV, MRI, MAR, MAH, MON, NAU, NAV, NDE, NBL, NDO, NEP, SME, NOR, NOB, NNO, OCI, OJI, ORI, ORM, OSS, PLI, FAS, POL, PUS, QUE, QAA, RON, ROH, RUN, SMO, SAG, SAN, SRD, SRB, SNA, III, SND, SIN, SLK, SLV, SOM, SOT, SUN, SWA, SSW, SWE, TGL, TAH, TGK, TAM, TAT, TEL, THA, BOD, TIR, TON, TSO, TSN, TUR, TUK, TWI, UIG, UKR, UZB, VEN, VOL, WLN, CYM, FRY, WOL, XHO, YID, YOR, ZHA, ZUL, ORJ, QPC, TNG, SRP
|
@@ -19680,6 +20269,7 @@ module Aws::MediaConvert
|
|
19680
20269
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", # accepts ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_NOT_AUTO_SELECT
|
19681
20270
|
# descriptive_video_service_flag: "DONT_FLAG", # accepts DONT_FLAG, FLAG
|
19682
20271
|
# i_frame_only_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
20272
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
19683
20273
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
19684
20274
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
19685
20275
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -19717,6 +20307,7 @@ module Aws::MediaConvert
|
|
19717
20307
|
# es_rate_in_pes: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
19718
20308
|
# force_ts_video_ebp_order: "FORCE", # accepts FORCE, DEFAULT
|
19719
20309
|
# fragment_time: 1.0,
|
20310
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
19720
20311
|
# max_pcr_interval: 1,
|
19721
20312
|
# min_ebp_interval: 1,
|
19722
20313
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
@@ -19781,6 +20372,7 @@ module Aws::MediaConvert
|
|
19781
20372
|
# accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
19782
20373
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
19783
20374
|
# caption_container_type: "RAW", # accepts RAW, FRAGMENTED_MP4
|
20375
|
+
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
19784
20376
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
19785
20377
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
19786
20378
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -20131,7 +20723,8 @@ module Aws::MediaConvert
|
|
20131
20723
|
# max_fall: 1,
|
20132
20724
|
# },
|
20133
20725
|
# l6_mode: "PASSTHROUGH", # accepts PASSTHROUGH, RECALCULATE, SPECIFY
|
20134
|
-
#
|
20726
|
+
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
20727
|
+
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
20135
20728
|
# },
|
20136
20729
|
# hdr_10_plus: {
|
20137
20730
|
# mastering_monitor_nits: 1,
|
@@ -20932,7 +21525,7 @@ module Aws::MediaConvert
|
|
20932
21525
|
# },
|
20933
21526
|
# webvtt_destination_settings: {
|
20934
21527
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
20935
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
21528
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
20936
21529
|
# },
|
20937
21530
|
# },
|
20938
21531
|
# language_code: "ENG", # accepts ENG, SPA, FRA, DEU, GER, ZHO, ARA, HIN, JPN, RUS, POR, ITA, URD, VIE, KOR, PAN, ABK, AAR, AFR, AKA, SQI, AMH, ARG, HYE, ASM, AVA, AVE, AYM, AZE, BAM, BAK, EUS, BEL, BEN, BIH, BIS, BOS, BRE, BUL, MYA, CAT, KHM, CHA, CHE, NYA, CHU, CHV, COR, COS, CRE, HRV, CES, DAN, DIV, NLD, DZO, ENM, EPO, EST, EWE, FAO, FIJ, FIN, FRM, FUL, GLA, GLG, LUG, KAT, ELL, GRN, GUJ, HAT, HAU, HEB, HER, HMO, HUN, ISL, IDO, IBO, IND, INA, ILE, IKU, IPK, GLE, JAV, KAL, KAN, KAU, KAS, KAZ, KIK, KIN, KIR, KOM, KON, KUA, KUR, LAO, LAT, LAV, LIM, LIN, LIT, LUB, LTZ, MKD, MLG, MSA, MAL, MLT, GLV, MRI, MAR, MAH, MON, NAU, NAV, NDE, NBL, NDO, NEP, SME, NOR, NOB, NNO, OCI, OJI, ORI, ORM, OSS, PLI, FAS, POL, PUS, QUE, QAA, RON, ROH, RUN, SMO, SAG, SAN, SRD, SRB, SNA, III, SND, SIN, SLK, SLV, SOM, SOT, SUN, SWA, SSW, SWE, TGL, TAH, TGK, TAM, TAT, TEL, THA, BOD, TIR, TON, TSO, TSN, TUR, TUK, TWI, UIG, UKR, UZB, VEN, VOL, WLN, CYM, FRY, WOL, XHO, YID, YOR, ZHA, ZUL, ORJ, QPC, TNG, SRP
|
@@ -20947,6 +21540,7 @@ module Aws::MediaConvert
|
|
20947
21540
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", # accepts ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_NOT_AUTO_SELECT
|
20948
21541
|
# descriptive_video_service_flag: "DONT_FLAG", # accepts DONT_FLAG, FLAG
|
20949
21542
|
# i_frame_only_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
21543
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
20950
21544
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
20951
21545
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
20952
21546
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -20984,6 +21578,7 @@ module Aws::MediaConvert
|
|
20984
21578
|
# es_rate_in_pes: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
20985
21579
|
# force_ts_video_ebp_order: "FORCE", # accepts FORCE, DEFAULT
|
20986
21580
|
# fragment_time: 1.0,
|
21581
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
20987
21582
|
# max_pcr_interval: 1,
|
20988
21583
|
# min_ebp_interval: 1,
|
20989
21584
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
@@ -21048,6 +21643,7 @@ module Aws::MediaConvert
|
|
21048
21643
|
# accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
21049
21644
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
21050
21645
|
# caption_container_type: "RAW", # accepts RAW, FRAGMENTED_MP4
|
21646
|
+
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
21051
21647
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
21052
21648
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
21053
21649
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -21384,7 +21980,8 @@ module Aws::MediaConvert
|
|
21384
21980
|
# max_fall: 1,
|
21385
21981
|
# },
|
21386
21982
|
# l6_mode: "PASSTHROUGH", # accepts PASSTHROUGH, RECALCULATE, SPECIFY
|
21387
|
-
#
|
21983
|
+
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
21984
|
+
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
21388
21985
|
# },
|
21389
21986
|
# hdr_10_plus: {
|
21390
21987
|
# mastering_monitor_nits: 1,
|
@@ -22967,6 +23564,7 @@ module Aws::MediaConvert
|
|
22967
23564
|
# white_point_x: 1,
|
22968
23565
|
# white_point_y: 1,
|
22969
23566
|
# },
|
23567
|
+
# pad_video: "DISABLED", # accepts DISABLED, BLACK
|
22970
23568
|
# pid: 1,
|
22971
23569
|
# program_number: 1,
|
22972
23570
|
# rotate: "DEGREE_0", # accepts DEGREE_0, DEGREES_90, DEGREES_180, DEGREES_270, AUTO
|
@@ -23027,6 +23625,32 @@ module Aws::MediaConvert
|
|
23027
23625
|
# max_abr_bitrate: 1,
|
23028
23626
|
# max_renditions: 1,
|
23029
23627
|
# min_abr_bitrate: 1,
|
23628
|
+
# rules: [
|
23629
|
+
# {
|
23630
|
+
# allowed_renditions: [
|
23631
|
+
# {
|
23632
|
+
# height: 1,
|
23633
|
+
# required: "ENABLED", # accepts ENABLED, DISABLED
|
23634
|
+
# width: 1,
|
23635
|
+
# },
|
23636
|
+
# ],
|
23637
|
+
# force_include_renditions: [
|
23638
|
+
# {
|
23639
|
+
# height: 1,
|
23640
|
+
# width: 1,
|
23641
|
+
# },
|
23642
|
+
# ],
|
23643
|
+
# min_bottom_rendition_size: {
|
23644
|
+
# height: 1,
|
23645
|
+
# width: 1,
|
23646
|
+
# },
|
23647
|
+
# min_top_rendition_size: {
|
23648
|
+
# height: 1,
|
23649
|
+
# width: 1,
|
23650
|
+
# },
|
23651
|
+
# type: "MIN_TOP_RENDITION_SIZE", # accepts MIN_TOP_RENDITION_SIZE, MIN_BOTTOM_RENDITION_SIZE, FORCE_INCLUDE_RENDITIONS, ALLOWED_RENDITIONS
|
23652
|
+
# },
|
23653
|
+
# ],
|
23030
23654
|
# },
|
23031
23655
|
# },
|
23032
23656
|
# custom_name: "__string",
|
@@ -23499,7 +24123,7 @@ module Aws::MediaConvert
|
|
23499
24123
|
# },
|
23500
24124
|
# webvtt_destination_settings: {
|
23501
24125
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
23502
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
24126
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
23503
24127
|
# },
|
23504
24128
|
# },
|
23505
24129
|
# language_code: "ENG", # accepts ENG, SPA, FRA, DEU, GER, ZHO, ARA, HIN, JPN, RUS, POR, ITA, URD, VIE, KOR, PAN, ABK, AAR, AFR, AKA, SQI, AMH, ARG, HYE, ASM, AVA, AVE, AYM, AZE, BAM, BAK, EUS, BEL, BEN, BIH, BIS, BOS, BRE, BUL, MYA, CAT, KHM, CHA, CHE, NYA, CHU, CHV, COR, COS, CRE, HRV, CES, DAN, DIV, NLD, DZO, ENM, EPO, EST, EWE, FAO, FIJ, FIN, FRM, FUL, GLA, GLG, LUG, KAT, ELL, GRN, GUJ, HAT, HAU, HEB, HER, HMO, HUN, ISL, IDO, IBO, IND, INA, ILE, IKU, IPK, GLE, JAV, KAL, KAN, KAU, KAS, KAZ, KIK, KIN, KIR, KOM, KON, KUA, KUR, LAO, LAT, LAV, LIM, LIN, LIT, LUB, LTZ, MKD, MLG, MSA, MAL, MLT, GLV, MRI, MAR, MAH, MON, NAU, NAV, NDE, NBL, NDO, NEP, SME, NOR, NOB, NNO, OCI, OJI, ORI, ORM, OSS, PLI, FAS, POL, PUS, QUE, QAA, RON, ROH, RUN, SMO, SAG, SAN, SRD, SRB, SNA, III, SND, SIN, SLK, SLV, SOM, SOT, SUN, SWA, SSW, SWE, TGL, TAH, TGK, TAM, TAT, TEL, THA, BOD, TIR, TON, TSO, TSN, TUR, TUK, TWI, UIG, UKR, UZB, VEN, VOL, WLN, CYM, FRY, WOL, XHO, YID, YOR, ZHA, ZUL, ORJ, QPC, TNG, SRP
|
@@ -23514,6 +24138,7 @@ module Aws::MediaConvert
|
|
23514
24138
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", # accepts ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_NOT_AUTO_SELECT
|
23515
24139
|
# descriptive_video_service_flag: "DONT_FLAG", # accepts DONT_FLAG, FLAG
|
23516
24140
|
# i_frame_only_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
24141
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
23517
24142
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
23518
24143
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
23519
24144
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -23551,6 +24176,7 @@ module Aws::MediaConvert
|
|
23551
24176
|
# es_rate_in_pes: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
23552
24177
|
# force_ts_video_ebp_order: "FORCE", # accepts FORCE, DEFAULT
|
23553
24178
|
# fragment_time: 1.0,
|
24179
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
23554
24180
|
# max_pcr_interval: 1,
|
23555
24181
|
# min_ebp_interval: 1,
|
23556
24182
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
@@ -23615,6 +24241,7 @@ module Aws::MediaConvert
|
|
23615
24241
|
# accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
23616
24242
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
23617
24243
|
# caption_container_type: "RAW", # accepts RAW, FRAGMENTED_MP4
|
24244
|
+
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
23618
24245
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
23619
24246
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
23620
24247
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -23965,7 +24592,8 @@ module Aws::MediaConvert
|
|
23965
24592
|
# max_fall: 1,
|
23966
24593
|
# },
|
23967
24594
|
# l6_mode: "PASSTHROUGH", # accepts PASSTHROUGH, RECALCULATE, SPECIFY
|
23968
|
-
#
|
24595
|
+
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
24596
|
+
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
23969
24597
|
# },
|
23970
24598
|
# hdr_10_plus: {
|
23971
24599
|
# mastering_monitor_nits: 1,
|
@@ -24351,7 +24979,7 @@ module Aws::MediaConvert
|
|
24351
24979
|
# },
|
24352
24980
|
# webvtt_destination_settings: {
|
24353
24981
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
24354
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
24982
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
24355
24983
|
# },
|
24356
24984
|
# },
|
24357
24985
|
# language_code: "ENG", # accepts ENG, SPA, FRA, DEU, GER, ZHO, ARA, HIN, JPN, RUS, POR, ITA, URD, VIE, KOR, PAN, ABK, AAR, AFR, AKA, SQI, AMH, ARG, HYE, ASM, AVA, AVE, AYM, AZE, BAM, BAK, EUS, BEL, BEN, BIH, BIS, BOS, BRE, BUL, MYA, CAT, KHM, CHA, CHE, NYA, CHU, CHV, COR, COS, CRE, HRV, CES, DAN, DIV, NLD, DZO, ENM, EPO, EST, EWE, FAO, FIJ, FIN, FRM, FUL, GLA, GLG, LUG, KAT, ELL, GRN, GUJ, HAT, HAU, HEB, HER, HMO, HUN, ISL, IDO, IBO, IND, INA, ILE, IKU, IPK, GLE, JAV, KAL, KAN, KAU, KAS, KAZ, KIK, KIN, KIR, KOM, KON, KUA, KUR, LAO, LAT, LAV, LIM, LIN, LIT, LUB, LTZ, MKD, MLG, MSA, MAL, MLT, GLV, MRI, MAR, MAH, MON, NAU, NAV, NDE, NBL, NDO, NEP, SME, NOR, NOB, NNO, OCI, OJI, ORI, ORM, OSS, PLI, FAS, POL, PUS, QUE, QAA, RON, ROH, RUN, SMO, SAG, SAN, SRD, SRB, SNA, III, SND, SIN, SLK, SLV, SOM, SOT, SUN, SWA, SSW, SWE, TGL, TAH, TGK, TAM, TAT, TEL, THA, BOD, TIR, TON, TSO, TSN, TUR, TUK, TWI, UIG, UKR, UZB, VEN, VOL, WLN, CYM, FRY, WOL, XHO, YID, YOR, ZHA, ZUL, ORJ, QPC, TNG, SRP
|
@@ -24366,6 +24994,7 @@ module Aws::MediaConvert
|
|
24366
24994
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", # accepts ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_NOT_AUTO_SELECT
|
24367
24995
|
# descriptive_video_service_flag: "DONT_FLAG", # accepts DONT_FLAG, FLAG
|
24368
24996
|
# i_frame_only_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
24997
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
24369
24998
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
24370
24999
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
24371
25000
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -24403,6 +25032,7 @@ module Aws::MediaConvert
|
|
24403
25032
|
# es_rate_in_pes: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
24404
25033
|
# force_ts_video_ebp_order: "FORCE", # accepts FORCE, DEFAULT
|
24405
25034
|
# fragment_time: 1.0,
|
25035
|
+
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
24406
25036
|
# max_pcr_interval: 1,
|
24407
25037
|
# min_ebp_interval: 1,
|
24408
25038
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
@@ -24467,6 +25097,7 @@ module Aws::MediaConvert
|
|
24467
25097
|
# accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
24468
25098
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
24469
25099
|
# caption_container_type: "RAW", # accepts RAW, FRAGMENTED_MP4
|
25100
|
+
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
24470
25101
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
24471
25102
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
24472
25103
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
@@ -24803,7 +25434,8 @@ module Aws::MediaConvert
|
|
24803
25434
|
# max_fall: 1,
|
24804
25435
|
# },
|
24805
25436
|
# l6_mode: "PASSTHROUGH", # accepts PASSTHROUGH, RECALCULATE, SPECIFY
|
24806
|
-
#
|
25437
|
+
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
25438
|
+
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
24807
25439
|
# },
|
24808
25440
|
# hdr_10_plus: {
|
24809
25441
|
# mastering_monitor_nits: 1,
|
@@ -25810,7 +26442,8 @@ module Aws::MediaConvert
|
|
25810
26442
|
# max_fall: 1,
|
25811
26443
|
# },
|
25812
26444
|
# l6_mode: "PASSTHROUGH", # accepts PASSTHROUGH, RECALCULATE, SPECIFY
|
25813
|
-
#
|
26445
|
+
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
26446
|
+
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
25814
26447
|
# },
|
25815
26448
|
# hdr_10_plus: {
|
25816
26449
|
# mastering_monitor_nits: 1,
|
@@ -26077,7 +26710,8 @@ module Aws::MediaConvert
|
|
26077
26710
|
# max_fall: 1,
|
26078
26711
|
# },
|
26079
26712
|
# l6_mode: "PASSTHROUGH", # accepts PASSTHROUGH, RECALCULATE, SPECIFY
|
26080
|
-
#
|
26713
|
+
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
26714
|
+
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
26081
26715
|
# },
|
26082
26716
|
# hdr_10_plus: {
|
26083
26717
|
# mastering_monitor_nits: 1,
|
@@ -26219,6 +26853,7 @@ module Aws::MediaConvert
|
|
26219
26853
|
# white_point_x: 1,
|
26220
26854
|
# white_point_y: 1,
|
26221
26855
|
# },
|
26856
|
+
# pad_video: "DISABLED", # accepts DISABLED, BLACK
|
26222
26857
|
# pid: 1,
|
26223
26858
|
# program_number: 1,
|
26224
26859
|
# rotate: "DEGREE_0", # accepts DEGREE_0, DEGREES_90, DEGREES_180, DEGREES_270, AUTO
|
@@ -26289,6 +26924,18 @@ module Aws::MediaConvert
|
|
26289
26924
|
# https://docs.aws.amazon.com/console/mediaconvert/hdr.
|
26290
26925
|
# @return [Types::Hdr10Metadata]
|
26291
26926
|
#
|
26927
|
+
# @!attribute [rw] pad_video
|
26928
|
+
# Use this setting if your input has video and audio durations that
|
26929
|
+
# don't align, and your output or player has strict alignment
|
26930
|
+
# requirements. Examples: Input audio track has a delayed start. Input
|
26931
|
+
# video track ends before audio ends. When you set Pad video
|
26932
|
+
# (padVideo) to Black (BLACK), MediaConvert generates black video
|
26933
|
+
# frames so that output video and audio durations match. Black video
|
26934
|
+
# frames are added at the beginning or end, depending on your input.
|
26935
|
+
# To keep the default behavior and not generate black video, set Pad
|
26936
|
+
# video to Disabled (DISABLED) or leave blank.
|
26937
|
+
# @return [String]
|
26938
|
+
#
|
26292
26939
|
# @!attribute [rw] pid
|
26293
26940
|
# Use PID (Pid) to select specific video data from an input file.
|
26294
26941
|
# Specify this value as an integer; the system automatically converts
|
@@ -26337,6 +26984,7 @@ module Aws::MediaConvert
|
|
26337
26984
|
:color_space_usage,
|
26338
26985
|
:embedded_timecode_override,
|
26339
26986
|
:hdr_10_metadata,
|
26987
|
+
:pad_video,
|
26340
26988
|
:pid,
|
26341
26989
|
:program_number,
|
26342
26990
|
:rotate,
|
@@ -26749,29 +27397,33 @@ module Aws::MediaConvert
|
|
26749
27397
|
#
|
26750
27398
|
# {
|
26751
27399
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
26752
|
-
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
27400
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED, STRICT
|
26753
27401
|
# }
|
26754
27402
|
#
|
26755
27403
|
# @!attribute [rw] accessibility
|
26756
|
-
# Set Accessibility subtitles
|
26757
|
-
#
|
26758
|
-
#
|
26759
|
-
#
|
26760
|
-
#
|
27404
|
+
# Set Accessibility subtitles to Enabled if the ISMC or WebVTT
|
27405
|
+
# captions track is intended to provide accessibility for people who
|
27406
|
+
# are deaf or hard of hearing. When you enable this feature,
|
27407
|
+
# MediaConvert adds the following attributes under EXT-X-MEDIA in the
|
27408
|
+
# HLS or CMAF manifest for this track:
|
26761
27409
|
# CHARACTERISTICS="public.accessibility.describes-spoken-dialog,public.accessibility.describes-music-and-sound"
|
26762
|
-
# and AUTOSELECT="YES". Keep the default value, Disabled
|
26763
|
-
#
|
27410
|
+
# and AUTOSELECT="YES". Keep the default value, Disabled, if the
|
27411
|
+
# captions track is not intended to provide such accessibility.
|
26764
27412
|
# MediaConvert will not add the above attributes.
|
26765
27413
|
# @return [String]
|
26766
27414
|
#
|
26767
27415
|
# @!attribute [rw] style_passthrough
|
26768
|
-
#
|
26769
|
-
#
|
26770
|
-
#
|
26771
|
-
#
|
26772
|
-
#
|
26773
|
-
#
|
26774
|
-
#
|
27416
|
+
# To use the available style, color, and position information from
|
27417
|
+
# your input captions: Set Style passthrough (stylePassthrough) to
|
27418
|
+
# Enabled (ENABLED). MediaConvert uses default settings when style and
|
27419
|
+
# position information is missing from your input captions. To
|
27420
|
+
# recreate the input captions exactly: Set Style passthrough to Strict
|
27421
|
+
# (STRICT). MediaConvert automatically applies timing adjustments,
|
27422
|
+
# including adjustments for frame rate conversion, ad avails, and
|
27423
|
+
# input clipping. Your input captions format must be WebVTT. To ignore
|
27424
|
+
# the style and position information from your input captions and use
|
27425
|
+
# simplified output captions: Set Style passthrough to Disabled
|
27426
|
+
# (DISABLED), or leave blank.
|
26775
27427
|
# @return [String]
|
26776
27428
|
#
|
26777
27429
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/WebvttDestinationSettings AWS API Documentation
|