aws-sdk-mediaconvert 1.93.0 → 1.95.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 +88 -29
- data/lib/aws-sdk-mediaconvert/client_api.rb +5 -1
- data/lib/aws-sdk-mediaconvert/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-mediaconvert/endpoint_provider.rb +117 -0
- data/lib/aws-sdk-mediaconvert/endpoints.rb +407 -0
- data/lib/aws-sdk-mediaconvert/plugins/endpoints.rb +124 -0
- data/lib/aws-sdk-mediaconvert/types.rb +114 -38
- data/lib/aws-sdk-mediaconvert.rb +5 -1
- metadata +8 -4
@@ -133,8 +133,16 @@ module Aws::MediaConvert
|
|
133
133
|
# }
|
134
134
|
#
|
135
135
|
# @!attribute [rw] bitrate
|
136
|
-
# Specify the average bitrate in bits per second.
|
137
|
-
#
|
136
|
+
# Specify the average bitrate in bits per second. The bitrate that you
|
137
|
+
# specify must be a multiple of 8000 within the allowed minimum and
|
138
|
+
# maximum values. Leave blank to use the default bitrate for the
|
139
|
+
# coding mode you select according ETSI TS 102 366. Valid bitrates for
|
140
|
+
# coding mode 1/0: Default: 96000. Minimum: 64000. Maximum: 128000.
|
141
|
+
# Valid bitrates for coding mode 1/1: Default: 192000. Minimum:
|
142
|
+
# 128000. Maximum: 384000. Valid bitrates for coding mode 2/0:
|
143
|
+
# Default: 192000. Minimum: 128000. Maximum: 384000. Valid bitrates
|
144
|
+
# for coding mode 3/2 with FLE: Default: 384000. Minimum: 384000.
|
145
|
+
# Maximum: 640000.
|
138
146
|
# @return [Integer]
|
139
147
|
#
|
140
148
|
# @!attribute [rw] bitstream_mode
|
@@ -3540,7 +3548,7 @@ module Aws::MediaConvert
|
|
3540
3548
|
#
|
3541
3549
|
# {
|
3542
3550
|
# brightness: 1,
|
3543
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
3551
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
3544
3552
|
# contrast: 1,
|
3545
3553
|
# hdr_10_metadata: {
|
3546
3554
|
# blue_primary_x: 1,
|
@@ -3559,6 +3567,7 @@ module Aws::MediaConvert
|
|
3559
3567
|
# hue: 1,
|
3560
3568
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
3561
3569
|
# saturation: 1,
|
3570
|
+
# sdr_reference_white_level: 1,
|
3562
3571
|
# }
|
3563
3572
|
#
|
3564
3573
|
# @!attribute [rw] brightness
|
@@ -3572,7 +3581,10 @@ module Aws::MediaConvert
|
|
3572
3581
|
# upgrade the dynamic range. The converted video has an HDR format,
|
3573
3582
|
# but visually appears the same as an unconverted output. HDR to SDR
|
3574
3583
|
# conversion uses Elemental tone mapping technology to approximate the
|
3575
|
-
# outcome of manually regrading from HDR to SDR.
|
3584
|
+
# outcome of manually regrading from HDR to SDR. Select Force P3D65
|
3585
|
+
# (SDR) to set the output color space metadata to the following: *
|
3586
|
+
# Color primaries: Display P3 * Transfer characteristics: SMPTE 428M
|
3587
|
+
# * Matrix coefficients: BT.709
|
3576
3588
|
# @return [String]
|
3577
3589
|
#
|
3578
3590
|
# @!attribute [rw] contrast
|
@@ -3619,6 +3631,19 @@ module Aws::MediaConvert
|
|
3619
3631
|
# Saturation level.
|
3620
3632
|
# @return [Integer]
|
3621
3633
|
#
|
3634
|
+
# @!attribute [rw] sdr_reference_white_level
|
3635
|
+
# Specify the reference white level, in nits, for all of your SDR
|
3636
|
+
# inputs. Use to correct brightness levels within HDR10 outputs. The
|
3637
|
+
# following color metadata must be present in your SDR input: color
|
3638
|
+
# primaries, transfer characteristics, and matrix coefficients. If
|
3639
|
+
# your SDR input has missing color metadata, or if you want to correct
|
3640
|
+
# input color metadata, manually specify a color space in the input
|
3641
|
+
# video selector. For 1,000 nit peak brightness displays, we recommend
|
3642
|
+
# that you set SDR reference white level to 203 (according to ITU-R
|
3643
|
+
# BT.2408). Leave blank to use the default value of 100, or specify an
|
3644
|
+
# integer from 100 to 1000.
|
3645
|
+
# @return [Integer]
|
3646
|
+
#
|
3622
3647
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ColorCorrector AWS API Documentation
|
3623
3648
|
#
|
3624
3649
|
class ColorCorrector < Struct.new(
|
@@ -3628,7 +3653,8 @@ module Aws::MediaConvert
|
|
3628
3653
|
:hdr_10_metadata,
|
3629
3654
|
:hue,
|
3630
3655
|
:sample_range_conversion,
|
3631
|
-
:saturation
|
3656
|
+
:saturation,
|
3657
|
+
:sdr_reference_white_level)
|
3632
3658
|
SENSITIVE = []
|
3633
3659
|
include Aws::Structure
|
3634
3660
|
end
|
@@ -4001,6 +4027,7 @@ module Aws::MediaConvert
|
|
4001
4027
|
# width: 1,
|
4002
4028
|
# },
|
4003
4029
|
# ],
|
4030
|
+
# sdr_reference_white_level: 1,
|
4004
4031
|
# },
|
4005
4032
|
# input_clippings: [
|
4006
4033
|
# {
|
@@ -4025,7 +4052,7 @@ module Aws::MediaConvert
|
|
4025
4052
|
# },
|
4026
4053
|
# video_selector: {
|
4027
4054
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
4028
|
-
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
4055
|
+
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020, P3DCI, P3D65_SDR
|
4029
4056
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
4030
4057
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
4031
4058
|
# hdr_10_metadata: {
|
@@ -5042,7 +5069,7 @@ module Aws::MediaConvert
|
|
5042
5069
|
# video_preprocessors: {
|
5043
5070
|
# color_corrector: {
|
5044
5071
|
# brightness: 1,
|
5045
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
5072
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
5046
5073
|
# contrast: 1,
|
5047
5074
|
# hdr_10_metadata: {
|
5048
5075
|
# blue_primary_x: 1,
|
@@ -5061,6 +5088,7 @@ module Aws::MediaConvert
|
|
5061
5088
|
# hue: 1,
|
5062
5089
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
5063
5090
|
# saturation: 1,
|
5091
|
+
# sdr_reference_white_level: 1,
|
5064
5092
|
# },
|
5065
5093
|
# deinterlacer: {
|
5066
5094
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -5096,6 +5124,7 @@ module Aws::MediaConvert
|
|
5096
5124
|
# width: 1,
|
5097
5125
|
# },
|
5098
5126
|
# ],
|
5127
|
+
# sdr_reference_white_level: 1,
|
5099
5128
|
# },
|
5100
5129
|
# noise_reducer: {
|
5101
5130
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -5436,6 +5465,7 @@ module Aws::MediaConvert
|
|
5436
5465
|
# width: 1,
|
5437
5466
|
# },
|
5438
5467
|
# ],
|
5468
|
+
# sdr_reference_white_level: 1,
|
5439
5469
|
# },
|
5440
5470
|
# input_clippings: [
|
5441
5471
|
# {
|
@@ -5456,7 +5486,7 @@ module Aws::MediaConvert
|
|
5456
5486
|
# timecode_start: "__stringMin11Max11Pattern01D20305D205D",
|
5457
5487
|
# video_selector: {
|
5458
5488
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
5459
|
-
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
5489
|
+
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020, P3DCI, P3D65_SDR
|
5460
5490
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
5461
5491
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
5462
5492
|
# hdr_10_metadata: {
|
@@ -6473,7 +6503,7 @@ module Aws::MediaConvert
|
|
6473
6503
|
# video_preprocessors: {
|
6474
6504
|
# color_corrector: {
|
6475
6505
|
# brightness: 1,
|
6476
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
6506
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
6477
6507
|
# contrast: 1,
|
6478
6508
|
# hdr_10_metadata: {
|
6479
6509
|
# blue_primary_x: 1,
|
@@ -6492,6 +6522,7 @@ module Aws::MediaConvert
|
|
6492
6522
|
# hue: 1,
|
6493
6523
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
6494
6524
|
# saturation: 1,
|
6525
|
+
# sdr_reference_white_level: 1,
|
6495
6526
|
# },
|
6496
6527
|
# deinterlacer: {
|
6497
6528
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -6527,6 +6558,7 @@ module Aws::MediaConvert
|
|
6527
6558
|
# width: 1,
|
6528
6559
|
# },
|
6529
6560
|
# ],
|
6561
|
+
# sdr_reference_white_level: 1,
|
6530
6562
|
# },
|
6531
6563
|
# noise_reducer: {
|
6532
6564
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -7331,7 +7363,7 @@ module Aws::MediaConvert
|
|
7331
7363
|
# video_preprocessors: {
|
7332
7364
|
# color_corrector: {
|
7333
7365
|
# brightness: 1,
|
7334
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
7366
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
7335
7367
|
# contrast: 1,
|
7336
7368
|
# hdr_10_metadata: {
|
7337
7369
|
# blue_primary_x: 1,
|
@@ -7350,6 +7382,7 @@ module Aws::MediaConvert
|
|
7350
7382
|
# hue: 1,
|
7351
7383
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
7352
7384
|
# saturation: 1,
|
7385
|
+
# sdr_reference_white_level: 1,
|
7353
7386
|
# },
|
7354
7387
|
# deinterlacer: {
|
7355
7388
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -7385,6 +7418,7 @@ module Aws::MediaConvert
|
|
7385
7418
|
# width: 1,
|
7386
7419
|
# },
|
7387
7420
|
# ],
|
7421
|
+
# sdr_reference_white_level: 1,
|
7388
7422
|
# },
|
7389
7423
|
# noise_reducer: {
|
7390
7424
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -9040,8 +9074,14 @@ module Aws::MediaConvert
|
|
9040
9074
|
# @return [String]
|
9041
9075
|
#
|
9042
9076
|
# @!attribute [rw] bitrate
|
9043
|
-
# Specify the average bitrate in bits per second.
|
9044
|
-
#
|
9077
|
+
# Specify the average bitrate in bits per second. The bitrate that you
|
9078
|
+
# specify must be a multiple of 8000 within the allowed minimum and
|
9079
|
+
# maximum values. Leave blank to use the default bitrate for the
|
9080
|
+
# coding mode you select according ETSI TS 102 366. Valid bitrates for
|
9081
|
+
# coding mode 1/0: Default: 96000. Minimum: 32000. Maximum: 3024000.
|
9082
|
+
# Valid bitrates for coding mode 2/0: Default: 192000. Minimum: 96000.
|
9083
|
+
# Maximum: 3024000. Valid bitrates for coding mode 3/2: Default:
|
9084
|
+
# 384000. Minimum: 192000. Maximum: 3024000.
|
9045
9085
|
# @return [Integer]
|
9046
9086
|
#
|
9047
9087
|
# @!attribute [rw] bitstream_mode
|
@@ -12056,6 +12096,7 @@ module Aws::MediaConvert
|
|
12056
12096
|
# width: 1,
|
12057
12097
|
# },
|
12058
12098
|
# ],
|
12099
|
+
# sdr_reference_white_level: 1,
|
12059
12100
|
# }
|
12060
12101
|
#
|
12061
12102
|
# @!attribute [rw] insertable_images
|
@@ -12063,10 +12104,20 @@ module Aws::MediaConvert
|
|
12063
12104
|
# images must be PNG or TGA files.
|
12064
12105
|
# @return [Array<Types::InsertableImage>]
|
12065
12106
|
#
|
12107
|
+
# @!attribute [rw] sdr_reference_white_level
|
12108
|
+
# Specify the reference white level, in nits, for all of your image
|
12109
|
+
# inserter images. Use to correct brightness levels within HDR10
|
12110
|
+
# outputs. For 1,000 nit peak brightness displays, we recommend that
|
12111
|
+
# you set SDR reference white level to 203 (according to ITU-R
|
12112
|
+
# BT.2408). Leave blank to use the default value of 100, or specify an
|
12113
|
+
# integer from 100 to 1000.
|
12114
|
+
# @return [Integer]
|
12115
|
+
#
|
12066
12116
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ImageInserter AWS API Documentation
|
12067
12117
|
#
|
12068
12118
|
class ImageInserter < Struct.new(
|
12069
|
-
:insertable_images
|
12119
|
+
:insertable_images,
|
12120
|
+
:sdr_reference_white_level)
|
12070
12121
|
SENSITIVE = []
|
12071
12122
|
include Aws::Structure
|
12072
12123
|
end
|
@@ -12241,6 +12292,7 @@ module Aws::MediaConvert
|
|
12241
12292
|
# width: 1,
|
12242
12293
|
# },
|
12243
12294
|
# ],
|
12295
|
+
# sdr_reference_white_level: 1,
|
12244
12296
|
# },
|
12245
12297
|
# input_clippings: [
|
12246
12298
|
# {
|
@@ -12265,7 +12317,7 @@ module Aws::MediaConvert
|
|
12265
12317
|
# },
|
12266
12318
|
# video_selector: {
|
12267
12319
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
12268
|
-
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
12320
|
+
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020, P3DCI, P3D65_SDR
|
12269
12321
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
12270
12322
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
12271
12323
|
# hdr_10_metadata: {
|
@@ -12723,6 +12775,7 @@ module Aws::MediaConvert
|
|
12723
12775
|
# width: 1,
|
12724
12776
|
# },
|
12725
12777
|
# ],
|
12778
|
+
# sdr_reference_white_level: 1,
|
12726
12779
|
# },
|
12727
12780
|
# input_clippings: [
|
12728
12781
|
# {
|
@@ -12743,7 +12796,7 @@ module Aws::MediaConvert
|
|
12743
12796
|
# timecode_start: "__stringMin11Max11Pattern01D20305D205D",
|
12744
12797
|
# video_selector: {
|
12745
12798
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
12746
|
-
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
12799
|
+
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020, P3DCI, P3D65_SDR
|
12747
12800
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
12748
12801
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
12749
12802
|
# hdr_10_metadata: {
|
@@ -13436,6 +13489,7 @@ module Aws::MediaConvert
|
|
13436
13489
|
# width: 1,
|
13437
13490
|
# },
|
13438
13491
|
# ],
|
13492
|
+
# sdr_reference_white_level: 1,
|
13439
13493
|
# },
|
13440
13494
|
# input_clippings: [
|
13441
13495
|
# {
|
@@ -13460,7 +13514,7 @@ module Aws::MediaConvert
|
|
13460
13514
|
# },
|
13461
13515
|
# video_selector: {
|
13462
13516
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
13463
|
-
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
13517
|
+
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020, P3DCI, P3D65_SDR
|
13464
13518
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
13465
13519
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
13466
13520
|
# hdr_10_metadata: {
|
@@ -14477,7 +14531,7 @@ module Aws::MediaConvert
|
|
14477
14531
|
# video_preprocessors: {
|
14478
14532
|
# color_corrector: {
|
14479
14533
|
# brightness: 1,
|
14480
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
14534
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
14481
14535
|
# contrast: 1,
|
14482
14536
|
# hdr_10_metadata: {
|
14483
14537
|
# blue_primary_x: 1,
|
@@ -14496,6 +14550,7 @@ module Aws::MediaConvert
|
|
14496
14550
|
# hue: 1,
|
14497
14551
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
14498
14552
|
# saturation: 1,
|
14553
|
+
# sdr_reference_white_level: 1,
|
14499
14554
|
# },
|
14500
14555
|
# deinterlacer: {
|
14501
14556
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -14531,6 +14586,7 @@ module Aws::MediaConvert
|
|
14531
14586
|
# width: 1,
|
14532
14587
|
# },
|
14533
14588
|
# ],
|
14589
|
+
# sdr_reference_white_level: 1,
|
14534
14590
|
# },
|
14535
14591
|
# noise_reducer: {
|
14536
14592
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -14921,6 +14977,7 @@ module Aws::MediaConvert
|
|
14921
14977
|
# width: 1,
|
14922
14978
|
# },
|
14923
14979
|
# ],
|
14980
|
+
# sdr_reference_white_level: 1,
|
14924
14981
|
# },
|
14925
14982
|
# input_clippings: [
|
14926
14983
|
# {
|
@@ -14941,7 +14998,7 @@ module Aws::MediaConvert
|
|
14941
14998
|
# timecode_start: "__stringMin11Max11Pattern01D20305D205D",
|
14942
14999
|
# video_selector: {
|
14943
15000
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
14944
|
-
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
15001
|
+
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020, P3DCI, P3D65_SDR
|
14945
15002
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
14946
15003
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
14947
15004
|
# hdr_10_metadata: {
|
@@ -15958,7 +16015,7 @@ module Aws::MediaConvert
|
|
15958
16015
|
# video_preprocessors: {
|
15959
16016
|
# color_corrector: {
|
15960
16017
|
# brightness: 1,
|
15961
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
16018
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
15962
16019
|
# contrast: 1,
|
15963
16020
|
# hdr_10_metadata: {
|
15964
16021
|
# blue_primary_x: 1,
|
@@ -15977,6 +16034,7 @@ module Aws::MediaConvert
|
|
15977
16034
|
# hue: 1,
|
15978
16035
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
15979
16036
|
# saturation: 1,
|
16037
|
+
# sdr_reference_white_level: 1,
|
15980
16038
|
# },
|
15981
16039
|
# deinterlacer: {
|
15982
16040
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -16012,6 +16070,7 @@ module Aws::MediaConvert
|
|
16012
16070
|
# width: 1,
|
16013
16071
|
# },
|
16014
16072
|
# ],
|
16073
|
+
# sdr_reference_white_level: 1,
|
16015
16074
|
# },
|
16016
16075
|
# noise_reducer: {
|
16017
16076
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -19610,7 +19669,7 @@ module Aws::MediaConvert
|
|
19610
19669
|
# video_preprocessors: {
|
19611
19670
|
# color_corrector: {
|
19612
19671
|
# brightness: 1,
|
19613
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
19672
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
19614
19673
|
# contrast: 1,
|
19615
19674
|
# hdr_10_metadata: {
|
19616
19675
|
# blue_primary_x: 1,
|
@@ -19629,6 +19688,7 @@ module Aws::MediaConvert
|
|
19629
19688
|
# hue: 1,
|
19630
19689
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
19631
19690
|
# saturation: 1,
|
19691
|
+
# sdr_reference_white_level: 1,
|
19632
19692
|
# },
|
19633
19693
|
# deinterlacer: {
|
19634
19694
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -19664,6 +19724,7 @@ module Aws::MediaConvert
|
|
19664
19724
|
# width: 1,
|
19665
19725
|
# },
|
19666
19726
|
# ],
|
19727
|
+
# sdr_reference_white_level: 1,
|
19667
19728
|
# },
|
19668
19729
|
# noise_reducer: {
|
19669
19730
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -20771,7 +20832,7 @@ module Aws::MediaConvert
|
|
20771
20832
|
# video_preprocessors: {
|
20772
20833
|
# color_corrector: {
|
20773
20834
|
# brightness: 1,
|
20774
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
20835
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
20775
20836
|
# contrast: 1,
|
20776
20837
|
# hdr_10_metadata: {
|
20777
20838
|
# blue_primary_x: 1,
|
@@ -20790,6 +20851,7 @@ module Aws::MediaConvert
|
|
20790
20851
|
# hue: 1,
|
20791
20852
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
20792
20853
|
# saturation: 1,
|
20854
|
+
# sdr_reference_white_level: 1,
|
20793
20855
|
# },
|
20794
20856
|
# deinterlacer: {
|
20795
20857
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -20825,6 +20887,7 @@ module Aws::MediaConvert
|
|
20825
20887
|
# width: 1,
|
20826
20888
|
# },
|
20827
20889
|
# ],
|
20890
|
+
# sdr_reference_white_level: 1,
|
20828
20891
|
# },
|
20829
20892
|
# noise_reducer: {
|
20830
20893
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -22031,7 +22094,7 @@ module Aws::MediaConvert
|
|
22031
22094
|
# video_preprocessors: {
|
22032
22095
|
# color_corrector: {
|
22033
22096
|
# brightness: 1,
|
22034
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
22097
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
22035
22098
|
# contrast: 1,
|
22036
22099
|
# hdr_10_metadata: {
|
22037
22100
|
# blue_primary_x: 1,
|
@@ -22050,6 +22113,7 @@ module Aws::MediaConvert
|
|
22050
22113
|
# hue: 1,
|
22051
22114
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
22052
22115
|
# saturation: 1,
|
22116
|
+
# sdr_reference_white_level: 1,
|
22053
22117
|
# },
|
22054
22118
|
# deinterlacer: {
|
22055
22119
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -22085,6 +22149,7 @@ module Aws::MediaConvert
|
|
22085
22149
|
# width: 1,
|
22086
22150
|
# },
|
22087
22151
|
# ],
|
22152
|
+
# sdr_reference_white_level: 1,
|
22088
22153
|
# },
|
22089
22154
|
# noise_reducer: {
|
22090
22155
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -23610,6 +23675,7 @@ module Aws::MediaConvert
|
|
23610
23675
|
# width: 1,
|
23611
23676
|
# },
|
23612
23677
|
# ],
|
23678
|
+
# sdr_reference_white_level: 1,
|
23613
23679
|
# },
|
23614
23680
|
# input_clippings: [
|
23615
23681
|
# {
|
@@ -23630,7 +23696,7 @@ module Aws::MediaConvert
|
|
23630
23696
|
# timecode_start: "__stringMin11Max11Pattern01D20305D205D",
|
23631
23697
|
# video_selector: {
|
23632
23698
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
23633
|
-
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
23699
|
+
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020, P3DCI, P3D65_SDR
|
23634
23700
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
23635
23701
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
23636
23702
|
# hdr_10_metadata: {
|
@@ -24647,7 +24713,7 @@ module Aws::MediaConvert
|
|
24647
24713
|
# video_preprocessors: {
|
24648
24714
|
# color_corrector: {
|
24649
24715
|
# brightness: 1,
|
24650
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
24716
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
24651
24717
|
# contrast: 1,
|
24652
24718
|
# hdr_10_metadata: {
|
24653
24719
|
# blue_primary_x: 1,
|
@@ -24666,6 +24732,7 @@ module Aws::MediaConvert
|
|
24666
24732
|
# hue: 1,
|
24667
24733
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
24668
24734
|
# saturation: 1,
|
24735
|
+
# sdr_reference_white_level: 1,
|
24669
24736
|
# },
|
24670
24737
|
# deinterlacer: {
|
24671
24738
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -24701,6 +24768,7 @@ module Aws::MediaConvert
|
|
24701
24768
|
# width: 1,
|
24702
24769
|
# },
|
24703
24770
|
# ],
|
24771
|
+
# sdr_reference_white_level: 1,
|
24704
24772
|
# },
|
24705
24773
|
# noise_reducer: {
|
24706
24774
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -25492,7 +25560,7 @@ module Aws::MediaConvert
|
|
25492
25560
|
# video_preprocessors: {
|
25493
25561
|
# color_corrector: {
|
25494
25562
|
# brightness: 1,
|
25495
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
25563
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
25496
25564
|
# contrast: 1,
|
25497
25565
|
# hdr_10_metadata: {
|
25498
25566
|
# blue_primary_x: 1,
|
@@ -25511,6 +25579,7 @@ module Aws::MediaConvert
|
|
25511
25579
|
# hue: 1,
|
25512
25580
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
25513
25581
|
# saturation: 1,
|
25582
|
+
# sdr_reference_white_level: 1,
|
25514
25583
|
# },
|
25515
25584
|
# deinterlacer: {
|
25516
25585
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -25546,6 +25615,7 @@ module Aws::MediaConvert
|
|
25546
25615
|
# width: 1,
|
25547
25616
|
# },
|
25548
25617
|
# ],
|
25618
|
+
# sdr_reference_white_level: 1,
|
25549
25619
|
# },
|
25550
25620
|
# noise_reducer: {
|
25551
25621
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -26506,7 +26576,7 @@ module Aws::MediaConvert
|
|
26506
26576
|
# video_preprocessors: {
|
26507
26577
|
# color_corrector: {
|
26508
26578
|
# brightness: 1,
|
26509
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
26579
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
26510
26580
|
# contrast: 1,
|
26511
26581
|
# hdr_10_metadata: {
|
26512
26582
|
# blue_primary_x: 1,
|
@@ -26525,6 +26595,7 @@ module Aws::MediaConvert
|
|
26525
26595
|
# hue: 1,
|
26526
26596
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
26527
26597
|
# saturation: 1,
|
26598
|
+
# sdr_reference_white_level: 1,
|
26528
26599
|
# },
|
26529
26600
|
# deinterlacer: {
|
26530
26601
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -26560,6 +26631,7 @@ module Aws::MediaConvert
|
|
26560
26631
|
# width: 1,
|
26561
26632
|
# },
|
26562
26633
|
# ],
|
26634
|
+
# sdr_reference_white_level: 1,
|
26563
26635
|
# },
|
26564
26636
|
# noise_reducer: {
|
26565
26637
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -26774,7 +26846,7 @@ module Aws::MediaConvert
|
|
26774
26846
|
# {
|
26775
26847
|
# color_corrector: {
|
26776
26848
|
# brightness: 1,
|
26777
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
26849
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
26778
26850
|
# contrast: 1,
|
26779
26851
|
# hdr_10_metadata: {
|
26780
26852
|
# blue_primary_x: 1,
|
@@ -26793,6 +26865,7 @@ module Aws::MediaConvert
|
|
26793
26865
|
# hue: 1,
|
26794
26866
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
26795
26867
|
# saturation: 1,
|
26868
|
+
# sdr_reference_white_level: 1,
|
26796
26869
|
# },
|
26797
26870
|
# deinterlacer: {
|
26798
26871
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -26828,6 +26901,7 @@ module Aws::MediaConvert
|
|
26828
26901
|
# width: 1,
|
26829
26902
|
# },
|
26830
26903
|
# ],
|
26904
|
+
# sdr_reference_white_level: 1,
|
26831
26905
|
# },
|
26832
26906
|
# noise_reducer: {
|
26833
26907
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -26931,7 +27005,7 @@ module Aws::MediaConvert
|
|
26931
27005
|
#
|
26932
27006
|
# {
|
26933
27007
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
26934
|
-
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
27008
|
+
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020, P3DCI, P3D65_SDR
|
26935
27009
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
26936
27010
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
26937
27011
|
# hdr_10_metadata: {
|
@@ -26968,16 +27042,18 @@ module Aws::MediaConvert
|
|
26968
27042
|
# @!attribute [rw] color_space
|
26969
27043
|
# If your input video has accurate color space metadata, or if you
|
26970
27044
|
# don't know about color space, leave this set to the default value
|
26971
|
-
# Follow
|
26972
|
-
#
|
26973
|
-
#
|
26974
|
-
#
|
26975
|
-
#
|
26976
|
-
#
|
26977
|
-
#
|
26978
|
-
#
|
26979
|
-
#
|
26980
|
-
#
|
27045
|
+
# Follow. The service will automatically detect your input color
|
27046
|
+
# space. If your input video has metadata indicating the wrong color
|
27047
|
+
# space, specify the accurate color space here. If your input video is
|
27048
|
+
# HDR 10 and the SMPTE ST 2086 Mastering Display Color Volume static
|
27049
|
+
# metadata isn't present in your video stream, or if that metadata is
|
27050
|
+
# present but not accurate, choose Force HDR 10 here and specify
|
27051
|
+
# correct values in the input HDR 10 metadata settings. For more
|
27052
|
+
# information about MediaConvert HDR jobs, see
|
27053
|
+
# https://docs.aws.amazon.com/console/mediaconvert/hdr. Select P3D65
|
27054
|
+
# (SDR) to set the input color space metadata to the following: *
|
27055
|
+
# Color primaries: Display P3 * Transfer characteristics: SMPTE 428M
|
27056
|
+
# * Matrix coefficients: BT.709
|
26981
27057
|
# @return [String]
|
26982
27058
|
#
|
26983
27059
|
# @!attribute [rw] color_space_usage
|
data/lib/aws-sdk-mediaconvert.rb
CHANGED
@@ -13,9 +13,13 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-mediaconvert/types'
|
15
15
|
require_relative 'aws-sdk-mediaconvert/client_api'
|
16
|
+
require_relative 'aws-sdk-mediaconvert/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-mediaconvert/client'
|
17
18
|
require_relative 'aws-sdk-mediaconvert/errors'
|
18
19
|
require_relative 'aws-sdk-mediaconvert/resource'
|
20
|
+
require_relative 'aws-sdk-mediaconvert/endpoint_parameters'
|
21
|
+
require_relative 'aws-sdk-mediaconvert/endpoint_provider'
|
22
|
+
require_relative 'aws-sdk-mediaconvert/endpoints'
|
19
23
|
require_relative 'aws-sdk-mediaconvert/customizations'
|
20
24
|
|
21
25
|
# This module provides support for AWS Elemental MediaConvert. This module is available in the
|
@@ -48,6 +52,6 @@ require_relative 'aws-sdk-mediaconvert/customizations'
|
|
48
52
|
# @!group service
|
49
53
|
module Aws::MediaConvert
|
50
54
|
|
51
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.95.0'
|
52
56
|
|
53
57
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediaconvert
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.95.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.165.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-mediaconvert/client.rb
|
60
60
|
- lib/aws-sdk-mediaconvert/client_api.rb
|
61
61
|
- lib/aws-sdk-mediaconvert/customizations.rb
|
62
|
+
- lib/aws-sdk-mediaconvert/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-mediaconvert/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-mediaconvert/endpoints.rb
|
62
65
|
- lib/aws-sdk-mediaconvert/errors.rb
|
66
|
+
- lib/aws-sdk-mediaconvert/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-mediaconvert/resource.rb
|
64
68
|
- lib/aws-sdk-mediaconvert/types.rb
|
65
69
|
homepage: https://github.com/aws/aws-sdk-ruby
|