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
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:mediaconvert)
|
@@ -79,8 +79,9 @@ module Aws::MediaConvert
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
84
|
+
add_plugin(Aws::MediaConvert::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -287,6 +288,19 @@ module Aws::MediaConvert
|
|
287
288
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
288
289
|
# requests are made, and retries are disabled.
|
289
290
|
#
|
291
|
+
# @option options [Aws::TokenProvider] :token_provider
|
292
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
293
|
+
# following classes:
|
294
|
+
#
|
295
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
296
|
+
# tokens.
|
297
|
+
#
|
298
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
299
|
+
# access token generated from `aws login`.
|
300
|
+
#
|
301
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
302
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
303
|
+
#
|
290
304
|
# @option options [Boolean] :use_dualstack_endpoint
|
291
305
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
292
306
|
# will be used if available.
|
@@ -300,6 +314,9 @@ module Aws::MediaConvert
|
|
300
314
|
# When `true`, request parameters are validated before
|
301
315
|
# sending the request.
|
302
316
|
#
|
317
|
+
# @option options [Aws::MediaConvert::EndpointProvider] :endpoint_provider
|
318
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::MediaConvert::EndpointParameters`
|
319
|
+
#
|
303
320
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
304
321
|
# requests through. Formatted like 'http://proxy.com:123'.
|
305
322
|
#
|
@@ -635,6 +652,7 @@ module Aws::MediaConvert
|
|
635
652
|
# width: 1,
|
636
653
|
# },
|
637
654
|
# ],
|
655
|
+
# sdr_reference_white_level: 1,
|
638
656
|
# },
|
639
657
|
# input_clippings: [
|
640
658
|
# {
|
@@ -659,7 +677,7 @@ module Aws::MediaConvert
|
|
659
677
|
# },
|
660
678
|
# video_selector: {
|
661
679
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
662
|
-
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
680
|
+
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020, P3DCI, P3D65_SDR
|
663
681
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
664
682
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
665
683
|
# hdr_10_metadata: {
|
@@ -1676,7 +1694,7 @@ module Aws::MediaConvert
|
|
1676
1694
|
# video_preprocessors: {
|
1677
1695
|
# color_corrector: {
|
1678
1696
|
# brightness: 1,
|
1679
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
1697
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
1680
1698
|
# contrast: 1,
|
1681
1699
|
# hdr_10_metadata: {
|
1682
1700
|
# blue_primary_x: 1,
|
@@ -1695,6 +1713,7 @@ module Aws::MediaConvert
|
|
1695
1713
|
# hue: 1,
|
1696
1714
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
1697
1715
|
# saturation: 1,
|
1716
|
+
# sdr_reference_white_level: 1,
|
1698
1717
|
# },
|
1699
1718
|
# deinterlacer: {
|
1700
1719
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -1730,6 +1749,7 @@ module Aws::MediaConvert
|
|
1730
1749
|
# width: 1,
|
1731
1750
|
# },
|
1732
1751
|
# ],
|
1752
|
+
# sdr_reference_white_level: 1,
|
1733
1753
|
# },
|
1734
1754
|
# noise_reducer: {
|
1735
1755
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -1911,6 +1931,7 @@ module Aws::MediaConvert
|
|
1911
1931
|
# resp.job.settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
1912
1932
|
# resp.job.settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
1913
1933
|
# resp.job.settings.inputs[0].image_inserter.insertable_images[0].width #=> Integer
|
1934
|
+
# resp.job.settings.inputs[0].image_inserter.sdr_reference_white_level #=> Integer
|
1914
1935
|
# resp.job.settings.inputs[0].input_clippings #=> Array
|
1915
1936
|
# resp.job.settings.inputs[0].input_clippings[0].end_timecode #=> String
|
1916
1937
|
# resp.job.settings.inputs[0].input_clippings[0].start_timecode #=> String
|
@@ -1927,7 +1948,7 @@ module Aws::MediaConvert
|
|
1927
1948
|
# resp.job.settings.inputs[0].timecode_start #=> String
|
1928
1949
|
# resp.job.settings.inputs[0].video_generator.duration #=> Integer
|
1929
1950
|
# resp.job.settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
1930
|
-
# resp.job.settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020"
|
1951
|
+
# resp.job.settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020", "P3DCI", "P3D65_SDR"
|
1931
1952
|
# resp.job.settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
1932
1953
|
# resp.job.settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
1933
1954
|
# resp.job.settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
@@ -2691,7 +2712,7 @@ module Aws::MediaConvert
|
|
2691
2712
|
# resp.job.settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
2692
2713
|
# resp.job.settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
2693
2714
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
2694
|
-
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020"
|
2715
|
+
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020", "FORCE_P3DCI", "FORCE_P3D65_SDR"
|
2695
2716
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
2696
2717
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
2697
2718
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
@@ -2708,6 +2729,7 @@ module Aws::MediaConvert
|
|
2708
2729
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
2709
2730
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
2710
2731
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.saturation #=> Integer
|
2732
|
+
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sdr_reference_white_level #=> Integer
|
2711
2733
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
2712
2734
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
2713
2735
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
@@ -2730,6 +2752,7 @@ module Aws::MediaConvert
|
|
2730
2752
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
2731
2753
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
2732
2754
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].width #=> Integer
|
2755
|
+
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.sdr_reference_white_level #=> Integer
|
2733
2756
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
2734
2757
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
2735
2758
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
@@ -2974,6 +2997,7 @@ module Aws::MediaConvert
|
|
2974
2997
|
# width: 1,
|
2975
2998
|
# },
|
2976
2999
|
# ],
|
3000
|
+
# sdr_reference_white_level: 1,
|
2977
3001
|
# },
|
2978
3002
|
# input_clippings: [
|
2979
3003
|
# {
|
@@ -2994,7 +3018,7 @@ module Aws::MediaConvert
|
|
2994
3018
|
# timecode_start: "__stringMin11Max11Pattern01D20305D205D",
|
2995
3019
|
# video_selector: {
|
2996
3020
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
2997
|
-
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
3021
|
+
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020, P3DCI, P3D65_SDR
|
2998
3022
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
2999
3023
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
3000
3024
|
# hdr_10_metadata: {
|
@@ -4011,7 +4035,7 @@ module Aws::MediaConvert
|
|
4011
4035
|
# video_preprocessors: {
|
4012
4036
|
# color_corrector: {
|
4013
4037
|
# brightness: 1,
|
4014
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
4038
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
4015
4039
|
# contrast: 1,
|
4016
4040
|
# hdr_10_metadata: {
|
4017
4041
|
# blue_primary_x: 1,
|
@@ -4030,6 +4054,7 @@ module Aws::MediaConvert
|
|
4030
4054
|
# hue: 1,
|
4031
4055
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
4032
4056
|
# saturation: 1,
|
4057
|
+
# sdr_reference_white_level: 1,
|
4033
4058
|
# },
|
4034
4059
|
# deinterlacer: {
|
4035
4060
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -4065,6 +4090,7 @@ module Aws::MediaConvert
|
|
4065
4090
|
# width: 1,
|
4066
4091
|
# },
|
4067
4092
|
# ],
|
4093
|
+
# sdr_reference_white_level: 1,
|
4068
4094
|
# },
|
4069
4095
|
# noise_reducer: {
|
4070
4096
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -4218,6 +4244,7 @@ module Aws::MediaConvert
|
|
4218
4244
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
4219
4245
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
4220
4246
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].width #=> Integer
|
4247
|
+
# resp.job_template.settings.inputs[0].image_inserter.sdr_reference_white_level #=> Integer
|
4221
4248
|
# resp.job_template.settings.inputs[0].input_clippings #=> Array
|
4222
4249
|
# resp.job_template.settings.inputs[0].input_clippings[0].end_timecode #=> String
|
4223
4250
|
# resp.job_template.settings.inputs[0].input_clippings[0].start_timecode #=> String
|
@@ -4231,7 +4258,7 @@ module Aws::MediaConvert
|
|
4231
4258
|
# resp.job_template.settings.inputs[0].timecode_source #=> String, one of "EMBEDDED", "ZEROBASED", "SPECIFIEDSTART"
|
4232
4259
|
# resp.job_template.settings.inputs[0].timecode_start #=> String
|
4233
4260
|
# resp.job_template.settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
4234
|
-
# resp.job_template.settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020"
|
4261
|
+
# resp.job_template.settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020", "P3DCI", "P3D65_SDR"
|
4235
4262
|
# resp.job_template.settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
4236
4263
|
# resp.job_template.settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
4237
4264
|
# resp.job_template.settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
@@ -4995,7 +5022,7 @@ module Aws::MediaConvert
|
|
4995
5022
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
4996
5023
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
4997
5024
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
4998
|
-
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020"
|
5025
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020", "FORCE_P3DCI", "FORCE_P3D65_SDR"
|
4999
5026
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
5000
5027
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
5001
5028
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
@@ -5012,6 +5039,7 @@ module Aws::MediaConvert
|
|
5012
5039
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
5013
5040
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
5014
5041
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.saturation #=> Integer
|
5042
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sdr_reference_white_level #=> Integer
|
5015
5043
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
5016
5044
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
5017
5045
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
@@ -5034,6 +5062,7 @@ module Aws::MediaConvert
|
|
5034
5062
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
5035
5063
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
5036
5064
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].width #=> Integer
|
5065
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.sdr_reference_white_level #=> Integer
|
5037
5066
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
5038
5067
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
5039
5068
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
@@ -5744,7 +5773,7 @@ module Aws::MediaConvert
|
|
5744
5773
|
# video_preprocessors: {
|
5745
5774
|
# color_corrector: {
|
5746
5775
|
# brightness: 1,
|
5747
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
5776
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
5748
5777
|
# contrast: 1,
|
5749
5778
|
# hdr_10_metadata: {
|
5750
5779
|
# blue_primary_x: 1,
|
@@ -5763,6 +5792,7 @@ module Aws::MediaConvert
|
|
5763
5792
|
# hue: 1,
|
5764
5793
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
5765
5794
|
# saturation: 1,
|
5795
|
+
# sdr_reference_white_level: 1,
|
5766
5796
|
# },
|
5767
5797
|
# deinterlacer: {
|
5768
5798
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -5798,6 +5828,7 @@ module Aws::MediaConvert
|
|
5798
5828
|
# width: 1,
|
5799
5829
|
# },
|
5800
5830
|
# ],
|
5831
|
+
# sdr_reference_white_level: 1,
|
5801
5832
|
# },
|
5802
5833
|
# noise_reducer: {
|
5803
5834
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -6359,7 +6390,7 @@ module Aws::MediaConvert
|
|
6359
6390
|
# resp.preset.settings.video_description.sharpness #=> Integer
|
6360
6391
|
# resp.preset.settings.video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
6361
6392
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
6362
|
-
# resp.preset.settings.video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020"
|
6393
|
+
# resp.preset.settings.video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020", "FORCE_P3DCI", "FORCE_P3D65_SDR"
|
6363
6394
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
6364
6395
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
6365
6396
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
@@ -6376,6 +6407,7 @@ module Aws::MediaConvert
|
|
6376
6407
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hue #=> Integer
|
6377
6408
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
6378
6409
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.saturation #=> Integer
|
6410
|
+
# resp.preset.settings.video_description.video_preprocessors.color_corrector.sdr_reference_white_level #=> Integer
|
6379
6411
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
6380
6412
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
6381
6413
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
@@ -6398,6 +6430,7 @@ module Aws::MediaConvert
|
|
6398
6430
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
6399
6431
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
6400
6432
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].width #=> Integer
|
6433
|
+
# resp.preset.settings.video_description.video_preprocessors.image_inserter.sdr_reference_white_level #=> Integer
|
6401
6434
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
6402
6435
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
6403
6436
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
@@ -6790,6 +6823,7 @@ module Aws::MediaConvert
|
|
6790
6823
|
# resp.job.settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
6791
6824
|
# resp.job.settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
6792
6825
|
# resp.job.settings.inputs[0].image_inserter.insertable_images[0].width #=> Integer
|
6826
|
+
# resp.job.settings.inputs[0].image_inserter.sdr_reference_white_level #=> Integer
|
6793
6827
|
# resp.job.settings.inputs[0].input_clippings #=> Array
|
6794
6828
|
# resp.job.settings.inputs[0].input_clippings[0].end_timecode #=> String
|
6795
6829
|
# resp.job.settings.inputs[0].input_clippings[0].start_timecode #=> String
|
@@ -6806,7 +6840,7 @@ module Aws::MediaConvert
|
|
6806
6840
|
# resp.job.settings.inputs[0].timecode_start #=> String
|
6807
6841
|
# resp.job.settings.inputs[0].video_generator.duration #=> Integer
|
6808
6842
|
# resp.job.settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
6809
|
-
# resp.job.settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020"
|
6843
|
+
# resp.job.settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020", "P3DCI", "P3D65_SDR"
|
6810
6844
|
# resp.job.settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
6811
6845
|
# resp.job.settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
6812
6846
|
# resp.job.settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
@@ -7570,7 +7604,7 @@ module Aws::MediaConvert
|
|
7570
7604
|
# resp.job.settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
7571
7605
|
# resp.job.settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
7572
7606
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
7573
|
-
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020"
|
7607
|
+
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020", "FORCE_P3DCI", "FORCE_P3D65_SDR"
|
7574
7608
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
7575
7609
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
7576
7610
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
@@ -7587,6 +7621,7 @@ module Aws::MediaConvert
|
|
7587
7621
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
7588
7622
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
7589
7623
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.saturation #=> Integer
|
7624
|
+
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sdr_reference_white_level #=> Integer
|
7590
7625
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
7591
7626
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
7592
7627
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
@@ -7609,6 +7644,7 @@ module Aws::MediaConvert
|
|
7609
7644
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
7610
7645
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
7611
7646
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].width #=> Integer
|
7647
|
+
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.sdr_reference_white_level #=> Integer
|
7612
7648
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
7613
7649
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
7614
7650
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
@@ -7760,6 +7796,7 @@ module Aws::MediaConvert
|
|
7760
7796
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
7761
7797
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
7762
7798
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].width #=> Integer
|
7799
|
+
# resp.job_template.settings.inputs[0].image_inserter.sdr_reference_white_level #=> Integer
|
7763
7800
|
# resp.job_template.settings.inputs[0].input_clippings #=> Array
|
7764
7801
|
# resp.job_template.settings.inputs[0].input_clippings[0].end_timecode #=> String
|
7765
7802
|
# resp.job_template.settings.inputs[0].input_clippings[0].start_timecode #=> String
|
@@ -7773,7 +7810,7 @@ module Aws::MediaConvert
|
|
7773
7810
|
# resp.job_template.settings.inputs[0].timecode_source #=> String, one of "EMBEDDED", "ZEROBASED", "SPECIFIEDSTART"
|
7774
7811
|
# resp.job_template.settings.inputs[0].timecode_start #=> String
|
7775
7812
|
# resp.job_template.settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
7776
|
-
# resp.job_template.settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020"
|
7813
|
+
# resp.job_template.settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020", "P3DCI", "P3D65_SDR"
|
7777
7814
|
# resp.job_template.settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
7778
7815
|
# resp.job_template.settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
7779
7816
|
# resp.job_template.settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
@@ -8537,7 +8574,7 @@ module Aws::MediaConvert
|
|
8537
8574
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
8538
8575
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
8539
8576
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
8540
|
-
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020"
|
8577
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020", "FORCE_P3DCI", "FORCE_P3D65_SDR"
|
8541
8578
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
8542
8579
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
8543
8580
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
@@ -8554,6 +8591,7 @@ module Aws::MediaConvert
|
|
8554
8591
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
8555
8592
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
8556
8593
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.saturation #=> Integer
|
8594
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sdr_reference_white_level #=> Integer
|
8557
8595
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
8558
8596
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
8559
8597
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
@@ -8576,6 +8614,7 @@ module Aws::MediaConvert
|
|
8576
8614
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
8577
8615
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
8578
8616
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].width #=> Integer
|
8617
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.sdr_reference_white_level #=> Integer
|
8579
8618
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
8580
8619
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
8581
8620
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
@@ -9169,7 +9208,7 @@ module Aws::MediaConvert
|
|
9169
9208
|
# resp.preset.settings.video_description.sharpness #=> Integer
|
9170
9209
|
# resp.preset.settings.video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
9171
9210
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
9172
|
-
# resp.preset.settings.video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020"
|
9211
|
+
# resp.preset.settings.video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020", "FORCE_P3DCI", "FORCE_P3D65_SDR"
|
9173
9212
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
9174
9213
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
9175
9214
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
@@ -9186,6 +9225,7 @@ module Aws::MediaConvert
|
|
9186
9225
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hue #=> Integer
|
9187
9226
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
9188
9227
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.saturation #=> Integer
|
9228
|
+
# resp.preset.settings.video_description.video_preprocessors.color_corrector.sdr_reference_white_level #=> Integer
|
9189
9229
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
9190
9230
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
9191
9231
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
@@ -9208,6 +9248,7 @@ module Aws::MediaConvert
|
|
9208
9248
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
9209
9249
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
9210
9250
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].width #=> Integer
|
9251
|
+
# resp.preset.settings.video_description.video_preprocessors.image_inserter.sdr_reference_white_level #=> Integer
|
9211
9252
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
9212
9253
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
9213
9254
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
@@ -9418,6 +9459,7 @@ module Aws::MediaConvert
|
|
9418
9459
|
# resp.job_templates[0].settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
9419
9460
|
# resp.job_templates[0].settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
9420
9461
|
# resp.job_templates[0].settings.inputs[0].image_inserter.insertable_images[0].width #=> Integer
|
9462
|
+
# resp.job_templates[0].settings.inputs[0].image_inserter.sdr_reference_white_level #=> Integer
|
9421
9463
|
# resp.job_templates[0].settings.inputs[0].input_clippings #=> Array
|
9422
9464
|
# resp.job_templates[0].settings.inputs[0].input_clippings[0].end_timecode #=> String
|
9423
9465
|
# resp.job_templates[0].settings.inputs[0].input_clippings[0].start_timecode #=> String
|
@@ -9431,7 +9473,7 @@ module Aws::MediaConvert
|
|
9431
9473
|
# resp.job_templates[0].settings.inputs[0].timecode_source #=> String, one of "EMBEDDED", "ZEROBASED", "SPECIFIEDSTART"
|
9432
9474
|
# resp.job_templates[0].settings.inputs[0].timecode_start #=> String
|
9433
9475
|
# resp.job_templates[0].settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
9434
|
-
# resp.job_templates[0].settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020"
|
9476
|
+
# resp.job_templates[0].settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020", "P3DCI", "P3D65_SDR"
|
9435
9477
|
# resp.job_templates[0].settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
9436
9478
|
# resp.job_templates[0].settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
9437
9479
|
# resp.job_templates[0].settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
@@ -10195,7 +10237,7 @@ module Aws::MediaConvert
|
|
10195
10237
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
10196
10238
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
10197
10239
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
10198
|
-
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020"
|
10240
|
+
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020", "FORCE_P3DCI", "FORCE_P3D65_SDR"
|
10199
10241
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
10200
10242
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
10201
10243
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
@@ -10212,6 +10254,7 @@ module Aws::MediaConvert
|
|
10212
10254
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
10213
10255
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
10214
10256
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.saturation #=> Integer
|
10257
|
+
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sdr_reference_white_level #=> Integer
|
10215
10258
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
10216
10259
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
10217
10260
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
@@ -10234,6 +10277,7 @@ module Aws::MediaConvert
|
|
10234
10277
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
10235
10278
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
10236
10279
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].width #=> Integer
|
10280
|
+
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.sdr_reference_white_level #=> Integer
|
10237
10281
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
10238
10282
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
10239
10283
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
@@ -10433,6 +10477,7 @@ module Aws::MediaConvert
|
|
10433
10477
|
# resp.jobs[0].settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
10434
10478
|
# resp.jobs[0].settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
10435
10479
|
# resp.jobs[0].settings.inputs[0].image_inserter.insertable_images[0].width #=> Integer
|
10480
|
+
# resp.jobs[0].settings.inputs[0].image_inserter.sdr_reference_white_level #=> Integer
|
10436
10481
|
# resp.jobs[0].settings.inputs[0].input_clippings #=> Array
|
10437
10482
|
# resp.jobs[0].settings.inputs[0].input_clippings[0].end_timecode #=> String
|
10438
10483
|
# resp.jobs[0].settings.inputs[0].input_clippings[0].start_timecode #=> String
|
@@ -10449,7 +10494,7 @@ module Aws::MediaConvert
|
|
10449
10494
|
# resp.jobs[0].settings.inputs[0].timecode_start #=> String
|
10450
10495
|
# resp.jobs[0].settings.inputs[0].video_generator.duration #=> Integer
|
10451
10496
|
# resp.jobs[0].settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
10452
|
-
# resp.jobs[0].settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020"
|
10497
|
+
# resp.jobs[0].settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020", "P3DCI", "P3D65_SDR"
|
10453
10498
|
# resp.jobs[0].settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
10454
10499
|
# resp.jobs[0].settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
10455
10500
|
# resp.jobs[0].settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
@@ -11213,7 +11258,7 @@ module Aws::MediaConvert
|
|
11213
11258
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
11214
11259
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
11215
11260
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
11216
|
-
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020"
|
11261
|
+
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020", "FORCE_P3DCI", "FORCE_P3D65_SDR"
|
11217
11262
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
11218
11263
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
11219
11264
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
@@ -11230,6 +11275,7 @@ module Aws::MediaConvert
|
|
11230
11275
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
11231
11276
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
11232
11277
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.saturation #=> Integer
|
11278
|
+
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sdr_reference_white_level #=> Integer
|
11233
11279
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
11234
11280
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
11235
11281
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
@@ -11252,6 +11298,7 @@ module Aws::MediaConvert
|
|
11252
11298
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
11253
11299
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
11254
11300
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].width #=> Integer
|
11301
|
+
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.sdr_reference_white_level #=> Integer
|
11255
11302
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
11256
11303
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
11257
11304
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
@@ -11862,7 +11909,7 @@ module Aws::MediaConvert
|
|
11862
11909
|
# resp.presets[0].settings.video_description.sharpness #=> Integer
|
11863
11910
|
# resp.presets[0].settings.video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
11864
11911
|
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
11865
|
-
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020"
|
11912
|
+
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020", "FORCE_P3DCI", "FORCE_P3D65_SDR"
|
11866
11913
|
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
11867
11914
|
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
11868
11915
|
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
@@ -11879,6 +11926,7 @@ module Aws::MediaConvert
|
|
11879
11926
|
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.hue #=> Integer
|
11880
11927
|
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
11881
11928
|
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.saturation #=> Integer
|
11929
|
+
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.sdr_reference_white_level #=> Integer
|
11882
11930
|
# resp.presets[0].settings.video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
11883
11931
|
# resp.presets[0].settings.video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
11884
11932
|
# resp.presets[0].settings.video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
@@ -11901,6 +11949,7 @@ module Aws::MediaConvert
|
|
11901
11949
|
# resp.presets[0].settings.video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
11902
11950
|
# resp.presets[0].settings.video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
11903
11951
|
# resp.presets[0].settings.video_description.video_preprocessors.image_inserter.insertable_images[0].width #=> Integer
|
11952
|
+
# resp.presets[0].settings.video_description.video_preprocessors.image_inserter.sdr_reference_white_level #=> Integer
|
11904
11953
|
# resp.presets[0].settings.video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
11905
11954
|
# resp.presets[0].settings.video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
11906
11955
|
# resp.presets[0].settings.video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
@@ -12319,6 +12368,7 @@ module Aws::MediaConvert
|
|
12319
12368
|
# width: 1,
|
12320
12369
|
# },
|
12321
12370
|
# ],
|
12371
|
+
# sdr_reference_white_level: 1,
|
12322
12372
|
# },
|
12323
12373
|
# input_clippings: [
|
12324
12374
|
# {
|
@@ -12339,7 +12389,7 @@ module Aws::MediaConvert
|
|
12339
12389
|
# timecode_start: "__stringMin11Max11Pattern01D20305D205D",
|
12340
12390
|
# video_selector: {
|
12341
12391
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
12342
|
-
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020
|
12392
|
+
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709, HDR10, HLG_2020, P3DCI, P3D65_SDR
|
12343
12393
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
12344
12394
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
12345
12395
|
# hdr_10_metadata: {
|
@@ -13356,7 +13406,7 @@ module Aws::MediaConvert
|
|
13356
13406
|
# video_preprocessors: {
|
13357
13407
|
# color_corrector: {
|
13358
13408
|
# brightness: 1,
|
13359
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
13409
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
13360
13410
|
# contrast: 1,
|
13361
13411
|
# hdr_10_metadata: {
|
13362
13412
|
# blue_primary_x: 1,
|
@@ -13375,6 +13425,7 @@ module Aws::MediaConvert
|
|
13375
13425
|
# hue: 1,
|
13376
13426
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
13377
13427
|
# saturation: 1,
|
13428
|
+
# sdr_reference_white_level: 1,
|
13378
13429
|
# },
|
13379
13430
|
# deinterlacer: {
|
13380
13431
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -13410,6 +13461,7 @@ module Aws::MediaConvert
|
|
13410
13461
|
# width: 1,
|
13411
13462
|
# },
|
13412
13463
|
# ],
|
13464
|
+
# sdr_reference_white_level: 1,
|
13413
13465
|
# },
|
13414
13466
|
# noise_reducer: {
|
13415
13467
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -13560,6 +13612,7 @@ module Aws::MediaConvert
|
|
13560
13612
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
13561
13613
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
13562
13614
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].width #=> Integer
|
13615
|
+
# resp.job_template.settings.inputs[0].image_inserter.sdr_reference_white_level #=> Integer
|
13563
13616
|
# resp.job_template.settings.inputs[0].input_clippings #=> Array
|
13564
13617
|
# resp.job_template.settings.inputs[0].input_clippings[0].end_timecode #=> String
|
13565
13618
|
# resp.job_template.settings.inputs[0].input_clippings[0].start_timecode #=> String
|
@@ -13573,7 +13626,7 @@ module Aws::MediaConvert
|
|
13573
13626
|
# resp.job_template.settings.inputs[0].timecode_source #=> String, one of "EMBEDDED", "ZEROBASED", "SPECIFIEDSTART"
|
13574
13627
|
# resp.job_template.settings.inputs[0].timecode_start #=> String
|
13575
13628
|
# resp.job_template.settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
13576
|
-
# resp.job_template.settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020"
|
13629
|
+
# resp.job_template.settings.inputs[0].video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709", "HDR10", "HLG_2020", "P3DCI", "P3D65_SDR"
|
13577
13630
|
# resp.job_template.settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
13578
13631
|
# resp.job_template.settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
13579
13632
|
# resp.job_template.settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
@@ -14337,7 +14390,7 @@ module Aws::MediaConvert
|
|
14337
14390
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
14338
14391
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
14339
14392
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
14340
|
-
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020"
|
14393
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020", "FORCE_P3DCI", "FORCE_P3D65_SDR"
|
14341
14394
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
14342
14395
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
14343
14396
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
@@ -14354,6 +14407,7 @@ module Aws::MediaConvert
|
|
14354
14407
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
14355
14408
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
14356
14409
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.saturation #=> Integer
|
14410
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.sdr_reference_white_level #=> Integer
|
14357
14411
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
14358
14412
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
14359
14413
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
@@ -14376,6 +14430,7 @@ module Aws::MediaConvert
|
|
14376
14430
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
14377
14431
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
14378
14432
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].width #=> Integer
|
14433
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.sdr_reference_white_level #=> Integer
|
14379
14434
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
14380
14435
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
14381
14436
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
@@ -15080,7 +15135,7 @@ module Aws::MediaConvert
|
|
15080
15135
|
# video_preprocessors: {
|
15081
15136
|
# color_corrector: {
|
15082
15137
|
# brightness: 1,
|
15083
|
-
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020
|
15138
|
+
# color_space_conversion: "NONE", # accepts NONE, FORCE_601, FORCE_709, FORCE_HDR10, FORCE_HLG_2020, FORCE_P3DCI, FORCE_P3D65_SDR
|
15084
15139
|
# contrast: 1,
|
15085
15140
|
# hdr_10_metadata: {
|
15086
15141
|
# blue_primary_x: 1,
|
@@ -15099,6 +15154,7 @@ module Aws::MediaConvert
|
|
15099
15154
|
# hue: 1,
|
15100
15155
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
15101
15156
|
# saturation: 1,
|
15157
|
+
# sdr_reference_white_level: 1,
|
15102
15158
|
# },
|
15103
15159
|
# deinterlacer: {
|
15104
15160
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
@@ -15134,6 +15190,7 @@ module Aws::MediaConvert
|
|
15134
15190
|
# width: 1,
|
15135
15191
|
# },
|
15136
15192
|
# ],
|
15193
|
+
# sdr_reference_white_level: 1,
|
15137
15194
|
# },
|
15138
15195
|
# noise_reducer: {
|
15139
15196
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
@@ -15692,7 +15749,7 @@ module Aws::MediaConvert
|
|
15692
15749
|
# resp.preset.settings.video_description.sharpness #=> Integer
|
15693
15750
|
# resp.preset.settings.video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
15694
15751
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
15695
|
-
# resp.preset.settings.video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020"
|
15752
|
+
# resp.preset.settings.video_description.video_preprocessors.color_corrector.color_space_conversion #=> String, one of "NONE", "FORCE_601", "FORCE_709", "FORCE_HDR10", "FORCE_HLG_2020", "FORCE_P3DCI", "FORCE_P3D65_SDR"
|
15696
15753
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
15697
15754
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
15698
15755
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
@@ -15709,6 +15766,7 @@ module Aws::MediaConvert
|
|
15709
15766
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hue #=> Integer
|
15710
15767
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
15711
15768
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.saturation #=> Integer
|
15769
|
+
# resp.preset.settings.video_description.video_preprocessors.color_corrector.sdr_reference_white_level #=> Integer
|
15712
15770
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
15713
15771
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
15714
15772
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
@@ -15731,6 +15789,7 @@ module Aws::MediaConvert
|
|
15731
15789
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
15732
15790
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
15733
15791
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].width #=> Integer
|
15792
|
+
# resp.preset.settings.video_description.video_preprocessors.image_inserter.sdr_reference_white_level #=> Integer
|
15734
15793
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
15735
15794
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
15736
15795
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
@@ -15840,7 +15899,7 @@ module Aws::MediaConvert
|
|
15840
15899
|
params: params,
|
15841
15900
|
config: config)
|
15842
15901
|
context[:gem_name] = 'aws-sdk-mediaconvert'
|
15843
|
-
context[:gem_version] = '1.
|
15902
|
+
context[:gem_version] = '1.95.0'
|
15844
15903
|
Seahorse::Client::Request.new(handlers, context)
|
15845
15904
|
end
|
15846
15905
|
|