aws-sdk-mediaconvert 1.171.0 → 1.173.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +63 -1
- data/lib/aws-sdk-mediaconvert/client_api.rb +27 -2
- data/lib/aws-sdk-mediaconvert/types.rb +210 -31
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- data/sig/client.rbs +86 -9
- data/sig/types.rbs +25 -3
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -185,7 +185,8 @@ module Aws
|
|
|
185
185
|
channels_in: ::Integer?,
|
|
186
186
|
channels_out: ::Integer?
|
|
187
187
|
}?,
|
|
188
|
-
selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM")?,
|
|
188
|
+
selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM" | "STREAM")?,
|
|
189
|
+
streams: Array[::Integer]?,
|
|
189
190
|
tracks: Array[::Integer]?
|
|
190
191
|
}]?,
|
|
191
192
|
caption_selectors: Hash[::String, {
|
|
@@ -224,6 +225,7 @@ module Aws
|
|
|
224
225
|
page_number: ::String?
|
|
225
226
|
}?,
|
|
226
227
|
track_source_settings: {
|
|
228
|
+
stream_number: ::Integer?,
|
|
227
229
|
track_number: ::Integer?
|
|
228
230
|
}?,
|
|
229
231
|
webvtt_hls_source_settings: {
|
|
@@ -321,6 +323,7 @@ module Aws
|
|
|
321
323
|
end_timecode: ::String?,
|
|
322
324
|
initial_position: {
|
|
323
325
|
height: ::Integer?,
|
|
326
|
+
opacity: ::Integer?,
|
|
324
327
|
unit: ("PIXELS" | "PERCENTAGE")?,
|
|
325
328
|
width: ::Integer?,
|
|
326
329
|
x_position: ::Integer?,
|
|
@@ -343,6 +346,7 @@ module Aws
|
|
|
343
346
|
{
|
|
344
347
|
end_position: {
|
|
345
348
|
height: ::Integer?,
|
|
349
|
+
opacity: ::Integer?,
|
|
346
350
|
unit: ("PIXELS" | "PERCENTAGE")?,
|
|
347
351
|
width: ::Integer?,
|
|
348
352
|
x_position: ::Integer?,
|
|
@@ -480,7 +484,7 @@ module Aws
|
|
|
480
484
|
client_cache: ("DISABLED" | "ENABLED")?,
|
|
481
485
|
codec_specification: ("RFC_6381" | "RFC_4281")?,
|
|
482
486
|
dash_i_frame_trick_play_name_modifier: ::String?,
|
|
483
|
-
dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
|
|
487
|
+
dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")?,
|
|
484
488
|
destination: ::String?,
|
|
485
489
|
destination_settings: {
|
|
486
490
|
s3_settings: {
|
|
@@ -555,7 +559,7 @@ module Aws
|
|
|
555
559
|
audio_channel_config_scheme_id_uri: ("MPEG_CHANNEL_CONFIGURATION" | "DOLBY_CHANNEL_CONFIGURATION")?,
|
|
556
560
|
base_url: ::String?,
|
|
557
561
|
dash_i_frame_trick_play_name_modifier: ::String?,
|
|
558
|
-
dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
|
|
562
|
+
dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")?,
|
|
559
563
|
destination: ::String?,
|
|
560
564
|
destination_settings: {
|
|
561
565
|
s3_settings: {
|
|
@@ -766,6 +770,9 @@ module Aws
|
|
|
766
770
|
target_lkfs: ::Float?,
|
|
767
771
|
true_peak_limiter_threshold: ::Float?
|
|
768
772
|
}?,
|
|
773
|
+
audio_pitch_correction_settings: {
|
|
774
|
+
slow_pal_pitch_correction: ("DISABLED" | "ENABLED")?
|
|
775
|
+
}?,
|
|
769
776
|
audio_source_name: ::String?,
|
|
770
777
|
audio_type: ::Integer?,
|
|
771
778
|
audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
|
@@ -1002,12 +1009,15 @@ module Aws
|
|
|
1002
1009
|
audio_group_id: ::String?,
|
|
1003
1010
|
audio_rendition_sets: ::String?,
|
|
1004
1011
|
audio_track_type: ("ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" | "ALTERNATE_AUDIO_AUTO_SELECT" | "ALTERNATE_AUDIO_NOT_AUTO_SELECT" | "AUDIO_ONLY_VARIANT_STREAM")?,
|
|
1012
|
+
c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
1013
|
+
certificate_secret: ::String?,
|
|
1005
1014
|
descriptive_video_service_flag: ("DONT_FLAG" | "FLAG")?,
|
|
1006
1015
|
i_frame_only_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
1007
1016
|
klv_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
1008
1017
|
manifest_metadata_signaling: ("ENABLED" | "DISABLED")?,
|
|
1009
1018
|
scte_35_esam: ("INSERT" | "NONE")?,
|
|
1010
1019
|
scte_35_source: ("PASSTHROUGH" | "NONE")?,
|
|
1020
|
+
signing_kms_key: ::String?,
|
|
1011
1021
|
timed_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
1012
1022
|
timed_metadata_box_version: ("VERSION_0" | "VERSION_1")?,
|
|
1013
1023
|
timed_metadata_scheme_id_uri: ::String?,
|
|
@@ -1120,11 +1130,14 @@ module Aws
|
|
|
1120
1130
|
mpd_settings: {
|
|
1121
1131
|
accessibility_caption_hints: ("INCLUDE" | "EXCLUDE")?,
|
|
1122
1132
|
audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
|
|
1133
|
+
c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
1123
1134
|
caption_container_type: ("RAW" | "FRAGMENTED_MP4")?,
|
|
1135
|
+
certificate_secret: ::String?,
|
|
1124
1136
|
klv_metadata: ("NONE" | "PASSTHROUGH")?,
|
|
1125
1137
|
manifest_metadata_signaling: ("ENABLED" | "DISABLED")?,
|
|
1126
1138
|
scte_35_esam: ("INSERT" | "NONE")?,
|
|
1127
1139
|
scte_35_source: ("PASSTHROUGH" | "NONE")?,
|
|
1140
|
+
signing_kms_key: ::String?,
|
|
1128
1141
|
timed_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
1129
1142
|
timed_metadata_box_version: ("VERSION_0" | "VERSION_1")?,
|
|
1130
1143
|
timed_metadata_scheme_id_uri: ::String?,
|
|
@@ -1351,6 +1364,10 @@ module Aws
|
|
|
1351
1364
|
telecine: ("NONE" | "SOFT" | "HARD")?,
|
|
1352
1365
|
temporal_adaptive_quantization: ("DISABLED" | "ENABLED")?
|
|
1353
1366
|
}?,
|
|
1367
|
+
passthrough_settings: {
|
|
1368
|
+
frame_control: ("NEAREST_IDRFRAME" | "NEAREST_IFRAME")?,
|
|
1369
|
+
video_selector_mode: ("AUTO" | "REMUX_ALL")?
|
|
1370
|
+
}?,
|
|
1354
1371
|
prores_settings: {
|
|
1355
1372
|
chroma_sampling: ("PRESERVE_444_SAMPLING" | "SUBSAMPLE_TO_422")?,
|
|
1356
1373
|
codec_profile: ("APPLE_PRORES_422" | "APPLE_PRORES_422_HQ" | "APPLE_PRORES_422_LT" | "APPLE_PRORES_422_PROXY" | "APPLE_PRORES_4444" | "APPLE_PRORES_4444_XQ")?,
|
|
@@ -1700,7 +1717,8 @@ module Aws
|
|
|
1700
1717
|
channels_in: ::Integer?,
|
|
1701
1718
|
channels_out: ::Integer?
|
|
1702
1719
|
}?,
|
|
1703
|
-
selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM")?,
|
|
1720
|
+
selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM" | "STREAM")?,
|
|
1721
|
+
streams: Array[::Integer]?,
|
|
1704
1722
|
tracks: Array[::Integer]?
|
|
1705
1723
|
}]?,
|
|
1706
1724
|
caption_selectors: Hash[::String, {
|
|
@@ -1739,6 +1757,7 @@ module Aws
|
|
|
1739
1757
|
page_number: ::String?
|
|
1740
1758
|
}?,
|
|
1741
1759
|
track_source_settings: {
|
|
1760
|
+
stream_number: ::Integer?,
|
|
1742
1761
|
track_number: ::Integer?
|
|
1743
1762
|
}?,
|
|
1744
1763
|
webvtt_hls_source_settings: {
|
|
@@ -1813,6 +1832,7 @@ module Aws
|
|
|
1813
1832
|
end_timecode: ::String?,
|
|
1814
1833
|
initial_position: {
|
|
1815
1834
|
height: ::Integer?,
|
|
1835
|
+
opacity: ::Integer?,
|
|
1816
1836
|
unit: ("PIXELS" | "PERCENTAGE")?,
|
|
1817
1837
|
width: ::Integer?,
|
|
1818
1838
|
x_position: ::Integer?,
|
|
@@ -1835,6 +1855,7 @@ module Aws
|
|
|
1835
1855
|
{
|
|
1836
1856
|
end_position: {
|
|
1837
1857
|
height: ::Integer?,
|
|
1858
|
+
opacity: ::Integer?,
|
|
1838
1859
|
unit: ("PIXELS" | "PERCENTAGE")?,
|
|
1839
1860
|
width: ::Integer?,
|
|
1840
1861
|
x_position: ::Integer?,
|
|
@@ -1972,7 +1993,7 @@ module Aws
|
|
|
1972
1993
|
client_cache: ("DISABLED" | "ENABLED")?,
|
|
1973
1994
|
codec_specification: ("RFC_6381" | "RFC_4281")?,
|
|
1974
1995
|
dash_i_frame_trick_play_name_modifier: ::String?,
|
|
1975
|
-
dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
|
|
1996
|
+
dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")?,
|
|
1976
1997
|
destination: ::String?,
|
|
1977
1998
|
destination_settings: {
|
|
1978
1999
|
s3_settings: {
|
|
@@ -2047,7 +2068,7 @@ module Aws
|
|
|
2047
2068
|
audio_channel_config_scheme_id_uri: ("MPEG_CHANNEL_CONFIGURATION" | "DOLBY_CHANNEL_CONFIGURATION")?,
|
|
2048
2069
|
base_url: ::String?,
|
|
2049
2070
|
dash_i_frame_trick_play_name_modifier: ::String?,
|
|
2050
|
-
dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
|
|
2071
|
+
dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")?,
|
|
2051
2072
|
destination: ::String?,
|
|
2052
2073
|
destination_settings: {
|
|
2053
2074
|
s3_settings: {
|
|
@@ -2258,6 +2279,9 @@ module Aws
|
|
|
2258
2279
|
target_lkfs: ::Float?,
|
|
2259
2280
|
true_peak_limiter_threshold: ::Float?
|
|
2260
2281
|
}?,
|
|
2282
|
+
audio_pitch_correction_settings: {
|
|
2283
|
+
slow_pal_pitch_correction: ("DISABLED" | "ENABLED")?
|
|
2284
|
+
}?,
|
|
2261
2285
|
audio_source_name: ::String?,
|
|
2262
2286
|
audio_type: ::Integer?,
|
|
2263
2287
|
audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
|
@@ -2494,12 +2518,15 @@ module Aws
|
|
|
2494
2518
|
audio_group_id: ::String?,
|
|
2495
2519
|
audio_rendition_sets: ::String?,
|
|
2496
2520
|
audio_track_type: ("ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" | "ALTERNATE_AUDIO_AUTO_SELECT" | "ALTERNATE_AUDIO_NOT_AUTO_SELECT" | "AUDIO_ONLY_VARIANT_STREAM")?,
|
|
2521
|
+
c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
2522
|
+
certificate_secret: ::String?,
|
|
2497
2523
|
descriptive_video_service_flag: ("DONT_FLAG" | "FLAG")?,
|
|
2498
2524
|
i_frame_only_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
2499
2525
|
klv_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
2500
2526
|
manifest_metadata_signaling: ("ENABLED" | "DISABLED")?,
|
|
2501
2527
|
scte_35_esam: ("INSERT" | "NONE")?,
|
|
2502
2528
|
scte_35_source: ("PASSTHROUGH" | "NONE")?,
|
|
2529
|
+
signing_kms_key: ::String?,
|
|
2503
2530
|
timed_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
2504
2531
|
timed_metadata_box_version: ("VERSION_0" | "VERSION_1")?,
|
|
2505
2532
|
timed_metadata_scheme_id_uri: ::String?,
|
|
@@ -2612,11 +2639,14 @@ module Aws
|
|
|
2612
2639
|
mpd_settings: {
|
|
2613
2640
|
accessibility_caption_hints: ("INCLUDE" | "EXCLUDE")?,
|
|
2614
2641
|
audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
|
|
2642
|
+
c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
2615
2643
|
caption_container_type: ("RAW" | "FRAGMENTED_MP4")?,
|
|
2644
|
+
certificate_secret: ::String?,
|
|
2616
2645
|
klv_metadata: ("NONE" | "PASSTHROUGH")?,
|
|
2617
2646
|
manifest_metadata_signaling: ("ENABLED" | "DISABLED")?,
|
|
2618
2647
|
scte_35_esam: ("INSERT" | "NONE")?,
|
|
2619
2648
|
scte_35_source: ("PASSTHROUGH" | "NONE")?,
|
|
2649
|
+
signing_kms_key: ::String?,
|
|
2620
2650
|
timed_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
2621
2651
|
timed_metadata_box_version: ("VERSION_0" | "VERSION_1")?,
|
|
2622
2652
|
timed_metadata_scheme_id_uri: ::String?,
|
|
@@ -2843,6 +2873,10 @@ module Aws
|
|
|
2843
2873
|
telecine: ("NONE" | "SOFT" | "HARD")?,
|
|
2844
2874
|
temporal_adaptive_quantization: ("DISABLED" | "ENABLED")?
|
|
2845
2875
|
}?,
|
|
2876
|
+
passthrough_settings: {
|
|
2877
|
+
frame_control: ("NEAREST_IDRFRAME" | "NEAREST_IFRAME")?,
|
|
2878
|
+
video_selector_mode: ("AUTO" | "REMUX_ALL")?
|
|
2879
|
+
}?,
|
|
2846
2880
|
prores_settings: {
|
|
2847
2881
|
chroma_sampling: ("PRESERVE_444_SAMPLING" | "SUBSAMPLE_TO_422")?,
|
|
2848
2882
|
codec_profile: ("APPLE_PRORES_422" | "APPLE_PRORES_422_HQ" | "APPLE_PRORES_422_LT" | "APPLE_PRORES_422_PROXY" | "APPLE_PRORES_4444" | "APPLE_PRORES_4444_XQ")?,
|
|
@@ -3128,6 +3162,9 @@ module Aws
|
|
|
3128
3162
|
target_lkfs: ::Float?,
|
|
3129
3163
|
true_peak_limiter_threshold: ::Float?
|
|
3130
3164
|
}?,
|
|
3165
|
+
audio_pitch_correction_settings: {
|
|
3166
|
+
slow_pal_pitch_correction: ("DISABLED" | "ENABLED")?
|
|
3167
|
+
}?,
|
|
3131
3168
|
audio_source_name: ::String?,
|
|
3132
3169
|
audio_type: ::Integer?,
|
|
3133
3170
|
audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
|
@@ -3363,12 +3400,15 @@ module Aws
|
|
|
3363
3400
|
audio_group_id: ::String?,
|
|
3364
3401
|
audio_rendition_sets: ::String?,
|
|
3365
3402
|
audio_track_type: ("ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" | "ALTERNATE_AUDIO_AUTO_SELECT" | "ALTERNATE_AUDIO_NOT_AUTO_SELECT" | "AUDIO_ONLY_VARIANT_STREAM")?,
|
|
3403
|
+
c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
3404
|
+
certificate_secret: ::String?,
|
|
3366
3405
|
descriptive_video_service_flag: ("DONT_FLAG" | "FLAG")?,
|
|
3367
3406
|
i_frame_only_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
3368
3407
|
klv_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
3369
3408
|
manifest_metadata_signaling: ("ENABLED" | "DISABLED")?,
|
|
3370
3409
|
scte_35_esam: ("INSERT" | "NONE")?,
|
|
3371
3410
|
scte_35_source: ("PASSTHROUGH" | "NONE")?,
|
|
3411
|
+
signing_kms_key: ::String?,
|
|
3372
3412
|
timed_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
3373
3413
|
timed_metadata_box_version: ("VERSION_0" | "VERSION_1")?,
|
|
3374
3414
|
timed_metadata_scheme_id_uri: ::String?,
|
|
@@ -3481,11 +3521,14 @@ module Aws
|
|
|
3481
3521
|
mpd_settings: {
|
|
3482
3522
|
accessibility_caption_hints: ("INCLUDE" | "EXCLUDE")?,
|
|
3483
3523
|
audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
|
|
3524
|
+
c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
3484
3525
|
caption_container_type: ("RAW" | "FRAGMENTED_MP4")?,
|
|
3526
|
+
certificate_secret: ::String?,
|
|
3485
3527
|
klv_metadata: ("NONE" | "PASSTHROUGH")?,
|
|
3486
3528
|
manifest_metadata_signaling: ("ENABLED" | "DISABLED")?,
|
|
3487
3529
|
scte_35_esam: ("INSERT" | "NONE")?,
|
|
3488
3530
|
scte_35_source: ("PASSTHROUGH" | "NONE")?,
|
|
3531
|
+
signing_kms_key: ::String?,
|
|
3489
3532
|
timed_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
3490
3533
|
timed_metadata_box_version: ("VERSION_0" | "VERSION_1")?,
|
|
3491
3534
|
timed_metadata_scheme_id_uri: ::String?,
|
|
@@ -3698,6 +3741,10 @@ module Aws
|
|
|
3698
3741
|
telecine: ("NONE" | "SOFT" | "HARD")?,
|
|
3699
3742
|
temporal_adaptive_quantization: ("DISABLED" | "ENABLED")?
|
|
3700
3743
|
}?,
|
|
3744
|
+
passthrough_settings: {
|
|
3745
|
+
frame_control: ("NEAREST_IDRFRAME" | "NEAREST_IFRAME")?,
|
|
3746
|
+
video_selector_mode: ("AUTO" | "REMUX_ALL")?
|
|
3747
|
+
}?,
|
|
3701
3748
|
prores_settings: {
|
|
3702
3749
|
chroma_sampling: ("PRESERVE_444_SAMPLING" | "SUBSAMPLE_TO_422")?,
|
|
3703
3750
|
codec_profile: ("APPLE_PRORES_422" | "APPLE_PRORES_422_HQ" | "APPLE_PRORES_422_LT" | "APPLE_PRORES_422_PROXY" | "APPLE_PRORES_4444" | "APPLE_PRORES_4444_XQ")?,
|
|
@@ -4339,7 +4386,8 @@ module Aws
|
|
|
4339
4386
|
channels_in: ::Integer?,
|
|
4340
4387
|
channels_out: ::Integer?
|
|
4341
4388
|
}?,
|
|
4342
|
-
selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM")?,
|
|
4389
|
+
selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM" | "STREAM")?,
|
|
4390
|
+
streams: Array[::Integer]?,
|
|
4343
4391
|
tracks: Array[::Integer]?
|
|
4344
4392
|
}]?,
|
|
4345
4393
|
caption_selectors: Hash[::String, {
|
|
@@ -4378,6 +4426,7 @@ module Aws
|
|
|
4378
4426
|
page_number: ::String?
|
|
4379
4427
|
}?,
|
|
4380
4428
|
track_source_settings: {
|
|
4429
|
+
stream_number: ::Integer?,
|
|
4381
4430
|
track_number: ::Integer?
|
|
4382
4431
|
}?,
|
|
4383
4432
|
webvtt_hls_source_settings: {
|
|
@@ -4452,6 +4501,7 @@ module Aws
|
|
|
4452
4501
|
end_timecode: ::String?,
|
|
4453
4502
|
initial_position: {
|
|
4454
4503
|
height: ::Integer?,
|
|
4504
|
+
opacity: ::Integer?,
|
|
4455
4505
|
unit: ("PIXELS" | "PERCENTAGE")?,
|
|
4456
4506
|
width: ::Integer?,
|
|
4457
4507
|
x_position: ::Integer?,
|
|
@@ -4474,6 +4524,7 @@ module Aws
|
|
|
4474
4524
|
{
|
|
4475
4525
|
end_position: {
|
|
4476
4526
|
height: ::Integer?,
|
|
4527
|
+
opacity: ::Integer?,
|
|
4477
4528
|
unit: ("PIXELS" | "PERCENTAGE")?,
|
|
4478
4529
|
width: ::Integer?,
|
|
4479
4530
|
x_position: ::Integer?,
|
|
@@ -4611,7 +4662,7 @@ module Aws
|
|
|
4611
4662
|
client_cache: ("DISABLED" | "ENABLED")?,
|
|
4612
4663
|
codec_specification: ("RFC_6381" | "RFC_4281")?,
|
|
4613
4664
|
dash_i_frame_trick_play_name_modifier: ::String?,
|
|
4614
|
-
dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
|
|
4665
|
+
dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")?,
|
|
4615
4666
|
destination: ::String?,
|
|
4616
4667
|
destination_settings: {
|
|
4617
4668
|
s3_settings: {
|
|
@@ -4686,7 +4737,7 @@ module Aws
|
|
|
4686
4737
|
audio_channel_config_scheme_id_uri: ("MPEG_CHANNEL_CONFIGURATION" | "DOLBY_CHANNEL_CONFIGURATION")?,
|
|
4687
4738
|
base_url: ::String?,
|
|
4688
4739
|
dash_i_frame_trick_play_name_modifier: ::String?,
|
|
4689
|
-
dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
|
|
4740
|
+
dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")?,
|
|
4690
4741
|
destination: ::String?,
|
|
4691
4742
|
destination_settings: {
|
|
4692
4743
|
s3_settings: {
|
|
@@ -4897,6 +4948,9 @@ module Aws
|
|
|
4897
4948
|
target_lkfs: ::Float?,
|
|
4898
4949
|
true_peak_limiter_threshold: ::Float?
|
|
4899
4950
|
}?,
|
|
4951
|
+
audio_pitch_correction_settings: {
|
|
4952
|
+
slow_pal_pitch_correction: ("DISABLED" | "ENABLED")?
|
|
4953
|
+
}?,
|
|
4900
4954
|
audio_source_name: ::String?,
|
|
4901
4955
|
audio_type: ::Integer?,
|
|
4902
4956
|
audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
|
@@ -5133,12 +5187,15 @@ module Aws
|
|
|
5133
5187
|
audio_group_id: ::String?,
|
|
5134
5188
|
audio_rendition_sets: ::String?,
|
|
5135
5189
|
audio_track_type: ("ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" | "ALTERNATE_AUDIO_AUTO_SELECT" | "ALTERNATE_AUDIO_NOT_AUTO_SELECT" | "AUDIO_ONLY_VARIANT_STREAM")?,
|
|
5190
|
+
c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
5191
|
+
certificate_secret: ::String?,
|
|
5136
5192
|
descriptive_video_service_flag: ("DONT_FLAG" | "FLAG")?,
|
|
5137
5193
|
i_frame_only_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
5138
5194
|
klv_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
5139
5195
|
manifest_metadata_signaling: ("ENABLED" | "DISABLED")?,
|
|
5140
5196
|
scte_35_esam: ("INSERT" | "NONE")?,
|
|
5141
5197
|
scte_35_source: ("PASSTHROUGH" | "NONE")?,
|
|
5198
|
+
signing_kms_key: ::String?,
|
|
5142
5199
|
timed_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
5143
5200
|
timed_metadata_box_version: ("VERSION_0" | "VERSION_1")?,
|
|
5144
5201
|
timed_metadata_scheme_id_uri: ::String?,
|
|
@@ -5251,11 +5308,14 @@ module Aws
|
|
|
5251
5308
|
mpd_settings: {
|
|
5252
5309
|
accessibility_caption_hints: ("INCLUDE" | "EXCLUDE")?,
|
|
5253
5310
|
audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
|
|
5311
|
+
c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
5254
5312
|
caption_container_type: ("RAW" | "FRAGMENTED_MP4")?,
|
|
5313
|
+
certificate_secret: ::String?,
|
|
5255
5314
|
klv_metadata: ("NONE" | "PASSTHROUGH")?,
|
|
5256
5315
|
manifest_metadata_signaling: ("ENABLED" | "DISABLED")?,
|
|
5257
5316
|
scte_35_esam: ("INSERT" | "NONE")?,
|
|
5258
5317
|
scte_35_source: ("PASSTHROUGH" | "NONE")?,
|
|
5318
|
+
signing_kms_key: ::String?,
|
|
5259
5319
|
timed_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
5260
5320
|
timed_metadata_box_version: ("VERSION_0" | "VERSION_1")?,
|
|
5261
5321
|
timed_metadata_scheme_id_uri: ::String?,
|
|
@@ -5482,6 +5542,10 @@ module Aws
|
|
|
5482
5542
|
telecine: ("NONE" | "SOFT" | "HARD")?,
|
|
5483
5543
|
temporal_adaptive_quantization: ("DISABLED" | "ENABLED")?
|
|
5484
5544
|
}?,
|
|
5545
|
+
passthrough_settings: {
|
|
5546
|
+
frame_control: ("NEAREST_IDRFRAME" | "NEAREST_IFRAME")?,
|
|
5547
|
+
video_selector_mode: ("AUTO" | "REMUX_ALL")?
|
|
5548
|
+
}?,
|
|
5485
5549
|
prores_settings: {
|
|
5486
5550
|
chroma_sampling: ("PRESERVE_444_SAMPLING" | "SUBSAMPLE_TO_422")?,
|
|
5487
5551
|
codec_profile: ("APPLE_PRORES_422" | "APPLE_PRORES_422_HQ" | "APPLE_PRORES_422_LT" | "APPLE_PRORES_422_PROXY" | "APPLE_PRORES_4444" | "APPLE_PRORES_4444_XQ")?,
|
|
@@ -5766,6 +5830,9 @@ module Aws
|
|
|
5766
5830
|
target_lkfs: ::Float?,
|
|
5767
5831
|
true_peak_limiter_threshold: ::Float?
|
|
5768
5832
|
}?,
|
|
5833
|
+
audio_pitch_correction_settings: {
|
|
5834
|
+
slow_pal_pitch_correction: ("DISABLED" | "ENABLED")?
|
|
5835
|
+
}?,
|
|
5769
5836
|
audio_source_name: ::String?,
|
|
5770
5837
|
audio_type: ::Integer?,
|
|
5771
5838
|
audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
|
@@ -6001,12 +6068,15 @@ module Aws
|
|
|
6001
6068
|
audio_group_id: ::String?,
|
|
6002
6069
|
audio_rendition_sets: ::String?,
|
|
6003
6070
|
audio_track_type: ("ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" | "ALTERNATE_AUDIO_AUTO_SELECT" | "ALTERNATE_AUDIO_NOT_AUTO_SELECT" | "AUDIO_ONLY_VARIANT_STREAM")?,
|
|
6071
|
+
c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
6072
|
+
certificate_secret: ::String?,
|
|
6004
6073
|
descriptive_video_service_flag: ("DONT_FLAG" | "FLAG")?,
|
|
6005
6074
|
i_frame_only_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
6006
6075
|
klv_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
6007
6076
|
manifest_metadata_signaling: ("ENABLED" | "DISABLED")?,
|
|
6008
6077
|
scte_35_esam: ("INSERT" | "NONE")?,
|
|
6009
6078
|
scte_35_source: ("PASSTHROUGH" | "NONE")?,
|
|
6079
|
+
signing_kms_key: ::String?,
|
|
6010
6080
|
timed_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
6011
6081
|
timed_metadata_box_version: ("VERSION_0" | "VERSION_1")?,
|
|
6012
6082
|
timed_metadata_scheme_id_uri: ::String?,
|
|
@@ -6119,11 +6189,14 @@ module Aws
|
|
|
6119
6189
|
mpd_settings: {
|
|
6120
6190
|
accessibility_caption_hints: ("INCLUDE" | "EXCLUDE")?,
|
|
6121
6191
|
audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
|
|
6192
|
+
c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
6122
6193
|
caption_container_type: ("RAW" | "FRAGMENTED_MP4")?,
|
|
6194
|
+
certificate_secret: ::String?,
|
|
6123
6195
|
klv_metadata: ("NONE" | "PASSTHROUGH")?,
|
|
6124
6196
|
manifest_metadata_signaling: ("ENABLED" | "DISABLED")?,
|
|
6125
6197
|
scte_35_esam: ("INSERT" | "NONE")?,
|
|
6126
6198
|
scte_35_source: ("PASSTHROUGH" | "NONE")?,
|
|
6199
|
+
signing_kms_key: ::String?,
|
|
6127
6200
|
timed_metadata: ("PASSTHROUGH" | "NONE")?,
|
|
6128
6201
|
timed_metadata_box_version: ("VERSION_0" | "VERSION_1")?,
|
|
6129
6202
|
timed_metadata_scheme_id_uri: ::String?,
|
|
@@ -6336,6 +6409,10 @@ module Aws
|
|
|
6336
6409
|
telecine: ("NONE" | "SOFT" | "HARD")?,
|
|
6337
6410
|
temporal_adaptive_quantization: ("DISABLED" | "ENABLED")?
|
|
6338
6411
|
}?,
|
|
6412
|
+
passthrough_settings: {
|
|
6413
|
+
frame_control: ("NEAREST_IDRFRAME" | "NEAREST_IFRAME")?,
|
|
6414
|
+
video_selector_mode: ("AUTO" | "REMUX_ALL")?
|
|
6415
|
+
}?,
|
|
6339
6416
|
prores_settings: {
|
|
6340
6417
|
chroma_sampling: ("PRESERVE_444_SAMPLING" | "SUBSAMPLE_TO_422")?,
|
|
6341
6418
|
codec_profile: ("APPLE_PRORES_422" | "APPLE_PRORES_422_HQ" | "APPLE_PRORES_422_LT" | "APPLE_PRORES_422_PROXY" | "APPLE_PRORES_4444" | "APPLE_PRORES_4444_XQ")?,
|
data/sig/types.rbs
CHANGED
|
@@ -103,6 +103,7 @@ module Aws::MediaConvert
|
|
|
103
103
|
class AudioDescription
|
|
104
104
|
attr_accessor audio_channel_tagging_settings: Types::AudioChannelTaggingSettings
|
|
105
105
|
attr_accessor audio_normalization_settings: Types::AudioNormalizationSettings
|
|
106
|
+
attr_accessor audio_pitch_correction_settings: Types::AudioPitchCorrectionSettings
|
|
106
107
|
attr_accessor audio_source_name: ::String
|
|
107
108
|
attr_accessor audio_type: ::Integer
|
|
108
109
|
attr_accessor audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")
|
|
@@ -126,6 +127,11 @@ module Aws::MediaConvert
|
|
|
126
127
|
SENSITIVE: []
|
|
127
128
|
end
|
|
128
129
|
|
|
130
|
+
class AudioPitchCorrectionSettings
|
|
131
|
+
attr_accessor slow_pal_pitch_correction: ("DISABLED" | "ENABLED")
|
|
132
|
+
SENSITIVE: []
|
|
133
|
+
end
|
|
134
|
+
|
|
129
135
|
class AudioProperties
|
|
130
136
|
attr_accessor bit_depth: ::Integer
|
|
131
137
|
attr_accessor bit_rate: ::Integer
|
|
@@ -147,7 +153,8 @@ module Aws::MediaConvert
|
|
|
147
153
|
attr_accessor pids: ::Array[::Integer]
|
|
148
154
|
attr_accessor program_selection: ::Integer
|
|
149
155
|
attr_accessor remix_settings: Types::RemixSettings
|
|
150
|
-
attr_accessor selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM")
|
|
156
|
+
attr_accessor selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM" | "STREAM")
|
|
157
|
+
attr_accessor streams: ::Array[::Integer]
|
|
151
158
|
attr_accessor tracks: ::Array[::Integer]
|
|
152
159
|
SENSITIVE: []
|
|
153
160
|
end
|
|
@@ -370,7 +377,7 @@ module Aws::MediaConvert
|
|
|
370
377
|
attr_accessor client_cache: ("DISABLED" | "ENABLED")
|
|
371
378
|
attr_accessor codec_specification: ("RFC_6381" | "RFC_4281")
|
|
372
379
|
attr_accessor dash_i_frame_trick_play_name_modifier: ::String
|
|
373
|
-
attr_accessor dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")
|
|
380
|
+
attr_accessor dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")
|
|
374
381
|
attr_accessor destination: ::String
|
|
375
382
|
attr_accessor destination_settings: Types::DestinationSettings
|
|
376
383
|
attr_accessor encryption: Types::CmafEncryptionSettings
|
|
@@ -411,12 +418,15 @@ module Aws::MediaConvert
|
|
|
411
418
|
attr_accessor audio_group_id: ::String
|
|
412
419
|
attr_accessor audio_rendition_sets: ::String
|
|
413
420
|
attr_accessor audio_track_type: ("ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" | "ALTERNATE_AUDIO_AUTO_SELECT" | "ALTERNATE_AUDIO_NOT_AUTO_SELECT" | "AUDIO_ONLY_VARIANT_STREAM")
|
|
421
|
+
attr_accessor c2pa_manifest: ("INCLUDE" | "EXCLUDE")
|
|
422
|
+
attr_accessor certificate_secret: ::String
|
|
414
423
|
attr_accessor descriptive_video_service_flag: ("DONT_FLAG" | "FLAG")
|
|
415
424
|
attr_accessor i_frame_only_manifest: ("INCLUDE" | "EXCLUDE")
|
|
416
425
|
attr_accessor klv_metadata: ("PASSTHROUGH" | "NONE")
|
|
417
426
|
attr_accessor manifest_metadata_signaling: ("ENABLED" | "DISABLED")
|
|
418
427
|
attr_accessor scte_35_esam: ("INSERT" | "NONE")
|
|
419
428
|
attr_accessor scte_35_source: ("PASSTHROUGH" | "NONE")
|
|
429
|
+
attr_accessor signing_kms_key: ::String
|
|
420
430
|
attr_accessor timed_metadata: ("PASSTHROUGH" | "NONE")
|
|
421
431
|
attr_accessor timed_metadata_box_version: ("VERSION_0" | "VERSION_1")
|
|
422
432
|
attr_accessor timed_metadata_scheme_id_uri: ::String
|
|
@@ -586,7 +596,7 @@ module Aws::MediaConvert
|
|
|
586
596
|
attr_accessor audio_channel_config_scheme_id_uri: ("MPEG_CHANNEL_CONFIGURATION" | "DOLBY_CHANNEL_CONFIGURATION")
|
|
587
597
|
attr_accessor base_url: ::String
|
|
588
598
|
attr_accessor dash_i_frame_trick_play_name_modifier: ::String
|
|
589
|
-
attr_accessor dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")
|
|
599
|
+
attr_accessor dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")
|
|
590
600
|
attr_accessor destination: ::String
|
|
591
601
|
attr_accessor destination_settings: Types::DestinationSettings
|
|
592
602
|
attr_accessor encryption: Types::DashIsoEncryptionSettings
|
|
@@ -1717,11 +1727,14 @@ module Aws::MediaConvert
|
|
|
1717
1727
|
class MpdSettings
|
|
1718
1728
|
attr_accessor accessibility_caption_hints: ("INCLUDE" | "EXCLUDE")
|
|
1719
1729
|
attr_accessor audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")
|
|
1730
|
+
attr_accessor c2pa_manifest: ("INCLUDE" | "EXCLUDE")
|
|
1720
1731
|
attr_accessor caption_container_type: ("RAW" | "FRAGMENTED_MP4")
|
|
1732
|
+
attr_accessor certificate_secret: ::String
|
|
1721
1733
|
attr_accessor klv_metadata: ("NONE" | "PASSTHROUGH")
|
|
1722
1734
|
attr_accessor manifest_metadata_signaling: ("ENABLED" | "DISABLED")
|
|
1723
1735
|
attr_accessor scte_35_esam: ("INSERT" | "NONE")
|
|
1724
1736
|
attr_accessor scte_35_source: ("PASSTHROUGH" | "NONE")
|
|
1737
|
+
attr_accessor signing_kms_key: ::String
|
|
1725
1738
|
attr_accessor timed_metadata: ("PASSTHROUGH" | "NONE")
|
|
1726
1739
|
attr_accessor timed_metadata_box_version: ("VERSION_0" | "VERSION_1")
|
|
1727
1740
|
attr_accessor timed_metadata_scheme_id_uri: ::String
|
|
@@ -1932,6 +1945,12 @@ module Aws::MediaConvert
|
|
|
1932
1945
|
SENSITIVE: []
|
|
1933
1946
|
end
|
|
1934
1947
|
|
|
1948
|
+
class PassthroughSettings
|
|
1949
|
+
attr_accessor frame_control: ("NEAREST_IDRFRAME" | "NEAREST_IFRAME")
|
|
1950
|
+
attr_accessor video_selector_mode: ("AUTO" | "REMUX_ALL")
|
|
1951
|
+
SENSITIVE: []
|
|
1952
|
+
end
|
|
1953
|
+
|
|
1935
1954
|
class Policy
|
|
1936
1955
|
attr_accessor http_inputs: ("ALLOWED" | "DISALLOWED")
|
|
1937
1956
|
attr_accessor https_inputs: ("ALLOWED" | "DISALLOWED")
|
|
@@ -2242,6 +2261,7 @@ module Aws::MediaConvert
|
|
|
2242
2261
|
end
|
|
2243
2262
|
|
|
2244
2263
|
class TrackSourceSettings
|
|
2264
|
+
attr_accessor stream_number: ::Integer
|
|
2245
2265
|
attr_accessor track_number: ::Integer
|
|
2246
2266
|
SENSITIVE: []
|
|
2247
2267
|
end
|
|
@@ -2340,6 +2360,7 @@ module Aws::MediaConvert
|
|
|
2340
2360
|
attr_accessor h264_settings: Types::H264Settings
|
|
2341
2361
|
attr_accessor h265_settings: Types::H265Settings
|
|
2342
2362
|
attr_accessor mpeg_2_settings: Types::Mpeg2Settings
|
|
2363
|
+
attr_accessor passthrough_settings: Types::PassthroughSettings
|
|
2343
2364
|
attr_accessor prores_settings: Types::ProresSettings
|
|
2344
2365
|
attr_accessor uncompressed_settings: Types::UncompressedSettings
|
|
2345
2366
|
attr_accessor vc_3_settings: Types::Vc3Settings
|
|
@@ -2412,6 +2433,7 @@ module Aws::MediaConvert
|
|
|
2412
2433
|
|
|
2413
2434
|
class VideoOverlayPosition
|
|
2414
2435
|
attr_accessor height: ::Integer
|
|
2436
|
+
attr_accessor opacity: ::Integer
|
|
2415
2437
|
attr_accessor unit: ("PIXELS" | "PERCENTAGE")
|
|
2416
2438
|
attr_accessor width: ::Integer
|
|
2417
2439
|
attr_accessor x_position: ::Integer
|