aws-sdk-mediaconvert 1.94.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +69 -27
- data/lib/aws-sdk-mediaconvert/client_api.rb +5 -1
- data/lib/aws-sdk-mediaconvert/types.rb +114 -38
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbc957755bed22214a2dd864fd9935240cb55fd6cc23097bbaab9e47bf4be752
|
|
4
|
+
data.tar.gz: 31d61a08f53acd3733e6205682267e805b34e7bbf33cb8256dfead8ab9bba4e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 05af4d2d7ddce07682a75bfd8afd40dcd7fff5a997621591c6eb98b4029f93e7dffe76981c7c98862831f9e278811da91b86107ecc8a8b8f5aa37f62b120a1f5
|
|
7
|
+
data.tar.gz: b397f98b0977e673cfcd38430418bf5ab950ea84dac104ef54ac489f7b0fff6358c93c4ebab4816872a6c76587f4ee216e1dabdb26db67b831ff3ead10191826
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.95.0 (2022-11-07)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - The AWS Elemental MediaConvert SDK has added support for setting the SDR reference white point for HDR conversions and conversion of HDR10 to DolbyVision without mastering metadata.
|
|
8
|
+
|
|
4
9
|
1.94.0 (2022-10-25)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.95.0
|
|
@@ -652,6 +652,7 @@ module Aws::MediaConvert
|
|
|
652
652
|
# width: 1,
|
|
653
653
|
# },
|
|
654
654
|
# ],
|
|
655
|
+
# sdr_reference_white_level: 1,
|
|
655
656
|
# },
|
|
656
657
|
# input_clippings: [
|
|
657
658
|
# {
|
|
@@ -676,7 +677,7 @@ module Aws::MediaConvert
|
|
|
676
677
|
# },
|
|
677
678
|
# video_selector: {
|
|
678
679
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
|
679
|
-
# 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
|
|
680
681
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
|
681
682
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
|
682
683
|
# hdr_10_metadata: {
|
|
@@ -1693,7 +1694,7 @@ module Aws::MediaConvert
|
|
|
1693
1694
|
# video_preprocessors: {
|
|
1694
1695
|
# color_corrector: {
|
|
1695
1696
|
# brightness: 1,
|
|
1696
|
-
# 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
|
|
1697
1698
|
# contrast: 1,
|
|
1698
1699
|
# hdr_10_metadata: {
|
|
1699
1700
|
# blue_primary_x: 1,
|
|
@@ -1712,6 +1713,7 @@ module Aws::MediaConvert
|
|
|
1712
1713
|
# hue: 1,
|
|
1713
1714
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
|
1714
1715
|
# saturation: 1,
|
|
1716
|
+
# sdr_reference_white_level: 1,
|
|
1715
1717
|
# },
|
|
1716
1718
|
# deinterlacer: {
|
|
1717
1719
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
|
@@ -1747,6 +1749,7 @@ module Aws::MediaConvert
|
|
|
1747
1749
|
# width: 1,
|
|
1748
1750
|
# },
|
|
1749
1751
|
# ],
|
|
1752
|
+
# sdr_reference_white_level: 1,
|
|
1750
1753
|
# },
|
|
1751
1754
|
# noise_reducer: {
|
|
1752
1755
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
|
@@ -1928,6 +1931,7 @@ module Aws::MediaConvert
|
|
|
1928
1931
|
# resp.job.settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
|
1929
1932
|
# resp.job.settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
|
1930
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
|
|
1931
1935
|
# resp.job.settings.inputs[0].input_clippings #=> Array
|
|
1932
1936
|
# resp.job.settings.inputs[0].input_clippings[0].end_timecode #=> String
|
|
1933
1937
|
# resp.job.settings.inputs[0].input_clippings[0].start_timecode #=> String
|
|
@@ -1944,7 +1948,7 @@ module Aws::MediaConvert
|
|
|
1944
1948
|
# resp.job.settings.inputs[0].timecode_start #=> String
|
|
1945
1949
|
# resp.job.settings.inputs[0].video_generator.duration #=> Integer
|
|
1946
1950
|
# resp.job.settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
|
1947
|
-
# 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"
|
|
1948
1952
|
# resp.job.settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
|
1949
1953
|
# resp.job.settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
|
1950
1954
|
# resp.job.settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
@@ -2708,7 +2712,7 @@ module Aws::MediaConvert
|
|
|
2708
2712
|
# resp.job.settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
|
2709
2713
|
# resp.job.settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
2710
2714
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
|
2711
|
-
# 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"
|
|
2712
2716
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
|
2713
2717
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
2714
2718
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
|
@@ -2725,6 +2729,7 @@ module Aws::MediaConvert
|
|
|
2725
2729
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
|
2726
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"
|
|
2727
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
|
|
2728
2733
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
|
2729
2734
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
|
2730
2735
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
|
@@ -2747,6 +2752,7 @@ module Aws::MediaConvert
|
|
|
2747
2752
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
|
2748
2753
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
|
2749
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
|
|
2750
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"
|
|
2751
2757
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
|
2752
2758
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
|
@@ -2991,6 +2997,7 @@ module Aws::MediaConvert
|
|
|
2991
2997
|
# width: 1,
|
|
2992
2998
|
# },
|
|
2993
2999
|
# ],
|
|
3000
|
+
# sdr_reference_white_level: 1,
|
|
2994
3001
|
# },
|
|
2995
3002
|
# input_clippings: [
|
|
2996
3003
|
# {
|
|
@@ -3011,7 +3018,7 @@ module Aws::MediaConvert
|
|
|
3011
3018
|
# timecode_start: "__stringMin11Max11Pattern01D20305D205D",
|
|
3012
3019
|
# video_selector: {
|
|
3013
3020
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
|
3014
|
-
# 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
|
|
3015
3022
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
|
3016
3023
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
|
3017
3024
|
# hdr_10_metadata: {
|
|
@@ -4028,7 +4035,7 @@ module Aws::MediaConvert
|
|
|
4028
4035
|
# video_preprocessors: {
|
|
4029
4036
|
# color_corrector: {
|
|
4030
4037
|
# brightness: 1,
|
|
4031
|
-
# 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
|
|
4032
4039
|
# contrast: 1,
|
|
4033
4040
|
# hdr_10_metadata: {
|
|
4034
4041
|
# blue_primary_x: 1,
|
|
@@ -4047,6 +4054,7 @@ module Aws::MediaConvert
|
|
|
4047
4054
|
# hue: 1,
|
|
4048
4055
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
|
4049
4056
|
# saturation: 1,
|
|
4057
|
+
# sdr_reference_white_level: 1,
|
|
4050
4058
|
# },
|
|
4051
4059
|
# deinterlacer: {
|
|
4052
4060
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
|
@@ -4082,6 +4090,7 @@ module Aws::MediaConvert
|
|
|
4082
4090
|
# width: 1,
|
|
4083
4091
|
# },
|
|
4084
4092
|
# ],
|
|
4093
|
+
# sdr_reference_white_level: 1,
|
|
4085
4094
|
# },
|
|
4086
4095
|
# noise_reducer: {
|
|
4087
4096
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
|
@@ -4235,6 +4244,7 @@ module Aws::MediaConvert
|
|
|
4235
4244
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
|
4236
4245
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
|
4237
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
|
|
4238
4248
|
# resp.job_template.settings.inputs[0].input_clippings #=> Array
|
|
4239
4249
|
# resp.job_template.settings.inputs[0].input_clippings[0].end_timecode #=> String
|
|
4240
4250
|
# resp.job_template.settings.inputs[0].input_clippings[0].start_timecode #=> String
|
|
@@ -4248,7 +4258,7 @@ module Aws::MediaConvert
|
|
|
4248
4258
|
# resp.job_template.settings.inputs[0].timecode_source #=> String, one of "EMBEDDED", "ZEROBASED", "SPECIFIEDSTART"
|
|
4249
4259
|
# resp.job_template.settings.inputs[0].timecode_start #=> String
|
|
4250
4260
|
# resp.job_template.settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
|
4251
|
-
# 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"
|
|
4252
4262
|
# resp.job_template.settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
|
4253
4263
|
# resp.job_template.settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
|
4254
4264
|
# resp.job_template.settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
@@ -5012,7 +5022,7 @@ module Aws::MediaConvert
|
|
|
5012
5022
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
|
5013
5023
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
5014
5024
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
|
5015
|
-
# 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"
|
|
5016
5026
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
|
5017
5027
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
5018
5028
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
|
@@ -5029,6 +5039,7 @@ module Aws::MediaConvert
|
|
|
5029
5039
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
|
5030
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"
|
|
5031
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
|
|
5032
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"
|
|
5033
5044
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
|
5034
5045
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
|
@@ -5051,6 +5062,7 @@ module Aws::MediaConvert
|
|
|
5051
5062
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
|
5052
5063
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
|
5053
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
|
|
5054
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"
|
|
5055
5067
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
|
5056
5068
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
|
@@ -5761,7 +5773,7 @@ module Aws::MediaConvert
|
|
|
5761
5773
|
# video_preprocessors: {
|
|
5762
5774
|
# color_corrector: {
|
|
5763
5775
|
# brightness: 1,
|
|
5764
|
-
# 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
|
|
5765
5777
|
# contrast: 1,
|
|
5766
5778
|
# hdr_10_metadata: {
|
|
5767
5779
|
# blue_primary_x: 1,
|
|
@@ -5780,6 +5792,7 @@ module Aws::MediaConvert
|
|
|
5780
5792
|
# hue: 1,
|
|
5781
5793
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
|
5782
5794
|
# saturation: 1,
|
|
5795
|
+
# sdr_reference_white_level: 1,
|
|
5783
5796
|
# },
|
|
5784
5797
|
# deinterlacer: {
|
|
5785
5798
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
|
@@ -5815,6 +5828,7 @@ module Aws::MediaConvert
|
|
|
5815
5828
|
# width: 1,
|
|
5816
5829
|
# },
|
|
5817
5830
|
# ],
|
|
5831
|
+
# sdr_reference_white_level: 1,
|
|
5818
5832
|
# },
|
|
5819
5833
|
# noise_reducer: {
|
|
5820
5834
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
|
@@ -6376,7 +6390,7 @@ module Aws::MediaConvert
|
|
|
6376
6390
|
# resp.preset.settings.video_description.sharpness #=> Integer
|
|
6377
6391
|
# resp.preset.settings.video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
6378
6392
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
|
6379
|
-
# 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"
|
|
6380
6394
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
|
6381
6395
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
6382
6396
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
|
@@ -6393,6 +6407,7 @@ module Aws::MediaConvert
|
|
|
6393
6407
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hue #=> Integer
|
|
6394
6408
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
|
6395
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
|
|
6396
6411
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
|
6397
6412
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
|
6398
6413
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
|
@@ -6415,6 +6430,7 @@ module Aws::MediaConvert
|
|
|
6415
6430
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
|
6416
6431
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
|
6417
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
|
|
6418
6434
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
|
6419
6435
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
|
6420
6436
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
|
@@ -6807,6 +6823,7 @@ module Aws::MediaConvert
|
|
|
6807
6823
|
# resp.job.settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
|
6808
6824
|
# resp.job.settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
|
6809
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
|
|
6810
6827
|
# resp.job.settings.inputs[0].input_clippings #=> Array
|
|
6811
6828
|
# resp.job.settings.inputs[0].input_clippings[0].end_timecode #=> String
|
|
6812
6829
|
# resp.job.settings.inputs[0].input_clippings[0].start_timecode #=> String
|
|
@@ -6823,7 +6840,7 @@ module Aws::MediaConvert
|
|
|
6823
6840
|
# resp.job.settings.inputs[0].timecode_start #=> String
|
|
6824
6841
|
# resp.job.settings.inputs[0].video_generator.duration #=> Integer
|
|
6825
6842
|
# resp.job.settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
|
6826
|
-
# 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"
|
|
6827
6844
|
# resp.job.settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
|
6828
6845
|
# resp.job.settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
|
6829
6846
|
# resp.job.settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
@@ -7587,7 +7604,7 @@ module Aws::MediaConvert
|
|
|
7587
7604
|
# resp.job.settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
|
7588
7605
|
# resp.job.settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
7589
7606
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
|
7590
|
-
# 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"
|
|
7591
7608
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
|
7592
7609
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
7593
7610
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
|
@@ -7604,6 +7621,7 @@ module Aws::MediaConvert
|
|
|
7604
7621
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
|
7605
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"
|
|
7606
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
|
|
7607
7625
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
|
7608
7626
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
|
7609
7627
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
|
@@ -7626,6 +7644,7 @@ module Aws::MediaConvert
|
|
|
7626
7644
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
|
7627
7645
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
|
7628
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
|
|
7629
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"
|
|
7630
7649
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
|
7631
7650
|
# resp.job.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
|
@@ -7777,6 +7796,7 @@ module Aws::MediaConvert
|
|
|
7777
7796
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
|
7778
7797
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
|
7779
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
|
|
7780
7800
|
# resp.job_template.settings.inputs[0].input_clippings #=> Array
|
|
7781
7801
|
# resp.job_template.settings.inputs[0].input_clippings[0].end_timecode #=> String
|
|
7782
7802
|
# resp.job_template.settings.inputs[0].input_clippings[0].start_timecode #=> String
|
|
@@ -7790,7 +7810,7 @@ module Aws::MediaConvert
|
|
|
7790
7810
|
# resp.job_template.settings.inputs[0].timecode_source #=> String, one of "EMBEDDED", "ZEROBASED", "SPECIFIEDSTART"
|
|
7791
7811
|
# resp.job_template.settings.inputs[0].timecode_start #=> String
|
|
7792
7812
|
# resp.job_template.settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
|
7793
|
-
# 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"
|
|
7794
7814
|
# resp.job_template.settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
|
7795
7815
|
# resp.job_template.settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
|
7796
7816
|
# resp.job_template.settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
@@ -8554,7 +8574,7 @@ module Aws::MediaConvert
|
|
|
8554
8574
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
|
8555
8575
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
8556
8576
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
|
8557
|
-
# 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"
|
|
8558
8578
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
|
8559
8579
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
8560
8580
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
|
@@ -8571,6 +8591,7 @@ module Aws::MediaConvert
|
|
|
8571
8591
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
|
8572
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"
|
|
8573
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
|
|
8574
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"
|
|
8575
8596
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
|
8576
8597
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
|
@@ -8593,6 +8614,7 @@ module Aws::MediaConvert
|
|
|
8593
8614
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
|
8594
8615
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
|
8595
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
|
|
8596
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"
|
|
8597
8619
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
|
8598
8620
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
|
@@ -9186,7 +9208,7 @@ module Aws::MediaConvert
|
|
|
9186
9208
|
# resp.preset.settings.video_description.sharpness #=> Integer
|
|
9187
9209
|
# resp.preset.settings.video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
9188
9210
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
|
9189
|
-
# 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"
|
|
9190
9212
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
|
9191
9213
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
9192
9214
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
|
@@ -9203,6 +9225,7 @@ module Aws::MediaConvert
|
|
|
9203
9225
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hue #=> Integer
|
|
9204
9226
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
|
9205
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
|
|
9206
9229
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
|
9207
9230
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
|
9208
9231
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
|
@@ -9225,6 +9248,7 @@ module Aws::MediaConvert
|
|
|
9225
9248
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
|
9226
9249
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
|
9227
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
|
|
9228
9252
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
|
9229
9253
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
|
9230
9254
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
|
@@ -9435,6 +9459,7 @@ module Aws::MediaConvert
|
|
|
9435
9459
|
# resp.job_templates[0].settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
|
9436
9460
|
# resp.job_templates[0].settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
|
9437
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
|
|
9438
9463
|
# resp.job_templates[0].settings.inputs[0].input_clippings #=> Array
|
|
9439
9464
|
# resp.job_templates[0].settings.inputs[0].input_clippings[0].end_timecode #=> String
|
|
9440
9465
|
# resp.job_templates[0].settings.inputs[0].input_clippings[0].start_timecode #=> String
|
|
@@ -9448,7 +9473,7 @@ module Aws::MediaConvert
|
|
|
9448
9473
|
# resp.job_templates[0].settings.inputs[0].timecode_source #=> String, one of "EMBEDDED", "ZEROBASED", "SPECIFIEDSTART"
|
|
9449
9474
|
# resp.job_templates[0].settings.inputs[0].timecode_start #=> String
|
|
9450
9475
|
# resp.job_templates[0].settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
|
9451
|
-
# 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"
|
|
9452
9477
|
# resp.job_templates[0].settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
|
9453
9478
|
# resp.job_templates[0].settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
|
9454
9479
|
# resp.job_templates[0].settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
@@ -10212,7 +10237,7 @@ module Aws::MediaConvert
|
|
|
10212
10237
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
|
10213
10238
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
10214
10239
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
|
10215
|
-
# 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"
|
|
10216
10241
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
|
10217
10242
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
10218
10243
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
|
@@ -10229,6 +10254,7 @@ module Aws::MediaConvert
|
|
|
10229
10254
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
|
10230
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"
|
|
10231
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
|
|
10232
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"
|
|
10233
10259
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
|
10234
10260
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
|
@@ -10251,6 +10277,7 @@ module Aws::MediaConvert
|
|
|
10251
10277
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
|
10252
10278
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
|
10253
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
|
|
10254
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"
|
|
10255
10282
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
|
10256
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
|
|
@@ -10450,6 +10477,7 @@ module Aws::MediaConvert
|
|
|
10450
10477
|
# resp.jobs[0].settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
|
10451
10478
|
# resp.jobs[0].settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
|
10452
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
|
|
10453
10481
|
# resp.jobs[0].settings.inputs[0].input_clippings #=> Array
|
|
10454
10482
|
# resp.jobs[0].settings.inputs[0].input_clippings[0].end_timecode #=> String
|
|
10455
10483
|
# resp.jobs[0].settings.inputs[0].input_clippings[0].start_timecode #=> String
|
|
@@ -10466,7 +10494,7 @@ module Aws::MediaConvert
|
|
|
10466
10494
|
# resp.jobs[0].settings.inputs[0].timecode_start #=> String
|
|
10467
10495
|
# resp.jobs[0].settings.inputs[0].video_generator.duration #=> Integer
|
|
10468
10496
|
# resp.jobs[0].settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
|
10469
|
-
# 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"
|
|
10470
10498
|
# resp.jobs[0].settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
|
10471
10499
|
# resp.jobs[0].settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
|
10472
10500
|
# resp.jobs[0].settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
@@ -11230,7 +11258,7 @@ module Aws::MediaConvert
|
|
|
11230
11258
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
|
11231
11259
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
11232
11260
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
|
11233
|
-
# 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"
|
|
11234
11262
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
|
11235
11263
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
11236
11264
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
|
@@ -11247,6 +11275,7 @@ module Aws::MediaConvert
|
|
|
11247
11275
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
|
11248
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"
|
|
11249
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
|
|
11250
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"
|
|
11251
11280
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
|
11252
11281
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
|
@@ -11269,6 +11298,7 @@ module Aws::MediaConvert
|
|
|
11269
11298
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
|
11270
11299
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
|
11271
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
|
|
11272
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"
|
|
11273
11303
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
|
11274
11304
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
|
@@ -11879,7 +11909,7 @@ module Aws::MediaConvert
|
|
|
11879
11909
|
# resp.presets[0].settings.video_description.sharpness #=> Integer
|
|
11880
11910
|
# resp.presets[0].settings.video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
11881
11911
|
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
|
11882
|
-
# 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"
|
|
11883
11913
|
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
|
11884
11914
|
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
11885
11915
|
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
|
@@ -11896,6 +11926,7 @@ module Aws::MediaConvert
|
|
|
11896
11926
|
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.hue #=> Integer
|
|
11897
11927
|
# resp.presets[0].settings.video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
|
11898
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
|
|
11899
11930
|
# resp.presets[0].settings.video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
|
11900
11931
|
# resp.presets[0].settings.video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
|
11901
11932
|
# resp.presets[0].settings.video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
|
@@ -11918,6 +11949,7 @@ module Aws::MediaConvert
|
|
|
11918
11949
|
# resp.presets[0].settings.video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
|
11919
11950
|
# resp.presets[0].settings.video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
|
11920
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
|
|
11921
11953
|
# resp.presets[0].settings.video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
|
11922
11954
|
# resp.presets[0].settings.video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
|
11923
11955
|
# resp.presets[0].settings.video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
|
@@ -12336,6 +12368,7 @@ module Aws::MediaConvert
|
|
|
12336
12368
|
# width: 1,
|
|
12337
12369
|
# },
|
|
12338
12370
|
# ],
|
|
12371
|
+
# sdr_reference_white_level: 1,
|
|
12339
12372
|
# },
|
|
12340
12373
|
# input_clippings: [
|
|
12341
12374
|
# {
|
|
@@ -12356,7 +12389,7 @@ module Aws::MediaConvert
|
|
|
12356
12389
|
# timecode_start: "__stringMin11Max11Pattern01D20305D205D",
|
|
12357
12390
|
# video_selector: {
|
|
12358
12391
|
# alpha_behavior: "DISCARD", # accepts DISCARD, REMAP_TO_LUMA
|
|
12359
|
-
# 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
|
|
12360
12393
|
# color_space_usage: "FORCE", # accepts FORCE, FALLBACK
|
|
12361
12394
|
# embedded_timecode_override: "NONE", # accepts NONE, USE_MDPM
|
|
12362
12395
|
# hdr_10_metadata: {
|
|
@@ -13373,7 +13406,7 @@ module Aws::MediaConvert
|
|
|
13373
13406
|
# video_preprocessors: {
|
|
13374
13407
|
# color_corrector: {
|
|
13375
13408
|
# brightness: 1,
|
|
13376
|
-
# 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
|
|
13377
13410
|
# contrast: 1,
|
|
13378
13411
|
# hdr_10_metadata: {
|
|
13379
13412
|
# blue_primary_x: 1,
|
|
@@ -13392,6 +13425,7 @@ module Aws::MediaConvert
|
|
|
13392
13425
|
# hue: 1,
|
|
13393
13426
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
|
13394
13427
|
# saturation: 1,
|
|
13428
|
+
# sdr_reference_white_level: 1,
|
|
13395
13429
|
# },
|
|
13396
13430
|
# deinterlacer: {
|
|
13397
13431
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
|
@@ -13427,6 +13461,7 @@ module Aws::MediaConvert
|
|
|
13427
13461
|
# width: 1,
|
|
13428
13462
|
# },
|
|
13429
13463
|
# ],
|
|
13464
|
+
# sdr_reference_white_level: 1,
|
|
13430
13465
|
# },
|
|
13431
13466
|
# noise_reducer: {
|
|
13432
13467
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
|
@@ -13577,6 +13612,7 @@ module Aws::MediaConvert
|
|
|
13577
13612
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].opacity #=> Integer
|
|
13578
13613
|
# resp.job_template.settings.inputs[0].image_inserter.insertable_images[0].start_time #=> String
|
|
13579
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
|
|
13580
13616
|
# resp.job_template.settings.inputs[0].input_clippings #=> Array
|
|
13581
13617
|
# resp.job_template.settings.inputs[0].input_clippings[0].end_timecode #=> String
|
|
13582
13618
|
# resp.job_template.settings.inputs[0].input_clippings[0].start_timecode #=> String
|
|
@@ -13590,7 +13626,7 @@ module Aws::MediaConvert
|
|
|
13590
13626
|
# resp.job_template.settings.inputs[0].timecode_source #=> String, one of "EMBEDDED", "ZEROBASED", "SPECIFIEDSTART"
|
|
13591
13627
|
# resp.job_template.settings.inputs[0].timecode_start #=> String
|
|
13592
13628
|
# resp.job_template.settings.inputs[0].video_selector.alpha_behavior #=> String, one of "DISCARD", "REMAP_TO_LUMA"
|
|
13593
|
-
# 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"
|
|
13594
13630
|
# resp.job_template.settings.inputs[0].video_selector.color_space_usage #=> String, one of "FORCE", "FALLBACK"
|
|
13595
13631
|
# resp.job_template.settings.inputs[0].video_selector.embedded_timecode_override #=> String, one of "NONE", "USE_MDPM"
|
|
13596
13632
|
# resp.job_template.settings.inputs[0].video_selector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
@@ -14354,7 +14390,7 @@ module Aws::MediaConvert
|
|
|
14354
14390
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.sharpness #=> Integer
|
|
14355
14391
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
14356
14392
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
|
14357
|
-
# 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"
|
|
14358
14394
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
|
14359
14395
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
14360
14396
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
|
@@ -14371,6 +14407,7 @@ module Aws::MediaConvert
|
|
|
14371
14407
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.color_corrector.hue #=> Integer
|
|
14372
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"
|
|
14373
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
|
|
14374
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"
|
|
14375
14412
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
|
14376
14413
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
|
@@ -14393,6 +14430,7 @@ module Aws::MediaConvert
|
|
|
14393
14430
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
|
14394
14431
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
|
14395
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
|
|
14396
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"
|
|
14397
14435
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
|
14398
14436
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
|
@@ -15097,7 +15135,7 @@ module Aws::MediaConvert
|
|
|
15097
15135
|
# video_preprocessors: {
|
|
15098
15136
|
# color_corrector: {
|
|
15099
15137
|
# brightness: 1,
|
|
15100
|
-
# 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
|
|
15101
15139
|
# contrast: 1,
|
|
15102
15140
|
# hdr_10_metadata: {
|
|
15103
15141
|
# blue_primary_x: 1,
|
|
@@ -15116,6 +15154,7 @@ module Aws::MediaConvert
|
|
|
15116
15154
|
# hue: 1,
|
|
15117
15155
|
# sample_range_conversion: "LIMITED_RANGE_SQUEEZE", # accepts LIMITED_RANGE_SQUEEZE, NONE
|
|
15118
15156
|
# saturation: 1,
|
|
15157
|
+
# sdr_reference_white_level: 1,
|
|
15119
15158
|
# },
|
|
15120
15159
|
# deinterlacer: {
|
|
15121
15160
|
# algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
|
|
@@ -15151,6 +15190,7 @@ module Aws::MediaConvert
|
|
|
15151
15190
|
# width: 1,
|
|
15152
15191
|
# },
|
|
15153
15192
|
# ],
|
|
15193
|
+
# sdr_reference_white_level: 1,
|
|
15154
15194
|
# },
|
|
15155
15195
|
# noise_reducer: {
|
|
15156
15196
|
# filter: "BILATERAL", # accepts BILATERAL, MEAN, GAUSSIAN, LANCZOS, SHARPEN, CONSERVE, SPATIAL, TEMPORAL
|
|
@@ -15709,7 +15749,7 @@ module Aws::MediaConvert
|
|
|
15709
15749
|
# resp.preset.settings.video_description.sharpness #=> Integer
|
|
15710
15750
|
# resp.preset.settings.video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
15711
15751
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.brightness #=> Integer
|
|
15712
|
-
# 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"
|
|
15713
15753
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.contrast #=> Integer
|
|
15714
15754
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_x #=> Integer
|
|
15715
15755
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hdr_10_metadata.blue_primary_y #=> Integer
|
|
@@ -15726,6 +15766,7 @@ module Aws::MediaConvert
|
|
|
15726
15766
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.hue #=> Integer
|
|
15727
15767
|
# resp.preset.settings.video_description.video_preprocessors.color_corrector.sample_range_conversion #=> String, one of "LIMITED_RANGE_SQUEEZE", "NONE"
|
|
15728
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
|
|
15729
15770
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.algorithm #=> String, one of "INTERPOLATE", "INTERPOLATE_TICKER", "BLEND", "BLEND_TICKER"
|
|
15730
15771
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.control #=> String, one of "FORCE_ALL_FRAMES", "NORMAL"
|
|
15731
15772
|
# resp.preset.settings.video_description.video_preprocessors.deinterlacer.mode #=> String, one of "DEINTERLACE", "INVERSE_TELECINE", "ADAPTIVE"
|
|
@@ -15748,6 +15789,7 @@ module Aws::MediaConvert
|
|
|
15748
15789
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].opacity #=> Integer
|
|
15749
15790
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images[0].start_time #=> String
|
|
15750
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
|
|
15751
15793
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.filter #=> String, one of "BILATERAL", "MEAN", "GAUSSIAN", "LANCZOS", "SHARPEN", "CONSERVE", "SPATIAL", "TEMPORAL"
|
|
15752
15794
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.filter_settings.strength #=> Integer
|
|
15753
15795
|
# resp.preset.settings.video_description.video_preprocessors.noise_reducer.spatial_filter_settings.post_filter_sharpen_strength #=> Integer
|
|
@@ -15857,7 +15899,7 @@ module Aws::MediaConvert
|
|
|
15857
15899
|
params: params,
|
|
15858
15900
|
config: config)
|
|
15859
15901
|
context[:gem_name] = 'aws-sdk-mediaconvert'
|
|
15860
|
-
context[:gem_version] = '1.
|
|
15902
|
+
context[:gem_version] = '1.95.0'
|
|
15861
15903
|
Seahorse::Client::Request.new(handlers, context)
|
|
15862
15904
|
end
|
|
15863
15905
|
|
|
@@ -686,6 +686,7 @@ module Aws::MediaConvert
|
|
|
686
686
|
__integerMin1000Max30000 = Shapes::IntegerShape.new(name: '__integerMin1000Max30000')
|
|
687
687
|
__integerMin1000Max300000000 = Shapes::IntegerShape.new(name: '__integerMin1000Max300000000')
|
|
688
688
|
__integerMin1000Max480000000 = Shapes::IntegerShape.new(name: '__integerMin1000Max480000000')
|
|
689
|
+
__integerMin100Max1000 = Shapes::IntegerShape.new(name: '__integerMin100Max1000')
|
|
689
690
|
__integerMin10Max48 = Shapes::IntegerShape.new(name: '__integerMin10Max48')
|
|
690
691
|
__integerMin16000Max320000 = Shapes::IntegerShape.new(name: '__integerMin16000Max320000')
|
|
691
692
|
__integerMin16000Max48000 = Shapes::IntegerShape.new(name: '__integerMin16000Max48000')
|
|
@@ -716,6 +717,7 @@ module Aws::MediaConvert
|
|
|
716
717
|
__integerMin2Max2147483647 = Shapes::IntegerShape.new(name: '__integerMin2Max2147483647')
|
|
717
718
|
__integerMin2Max4096 = Shapes::IntegerShape.new(name: '__integerMin2Max4096')
|
|
718
719
|
__integerMin32000Max192000 = Shapes::IntegerShape.new(name: '__integerMin32000Max192000')
|
|
720
|
+
__integerMin32000Max3024000 = Shapes::IntegerShape.new(name: '__integerMin32000Max3024000')
|
|
719
721
|
__integerMin32000Max384000 = Shapes::IntegerShape.new(name: '__integerMin32000Max384000')
|
|
720
722
|
__integerMin32000Max48000 = Shapes::IntegerShape.new(name: '__integerMin32000Max48000')
|
|
721
723
|
__integerMin32Max8182 = Shapes::IntegerShape.new(name: '__integerMin32Max8182')
|
|
@@ -1130,6 +1132,7 @@ module Aws::MediaConvert
|
|
|
1130
1132
|
ColorCorrector.add_member(:hue, Shapes::ShapeRef.new(shape: __integerMinNegative180Max180, location_name: "hue"))
|
|
1131
1133
|
ColorCorrector.add_member(:sample_range_conversion, Shapes::ShapeRef.new(shape: SampleRangeConversion, location_name: "sampleRangeConversion"))
|
|
1132
1134
|
ColorCorrector.add_member(:saturation, Shapes::ShapeRef.new(shape: __integerMin1Max100, location_name: "saturation"))
|
|
1135
|
+
ColorCorrector.add_member(:sdr_reference_white_level, Shapes::ShapeRef.new(shape: __integerMin100Max1000, location_name: "sdrReferenceWhiteLevel"))
|
|
1133
1136
|
ColorCorrector.struct_class = Types::ColorCorrector
|
|
1134
1137
|
|
|
1135
1138
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
|
@@ -1353,7 +1356,7 @@ module Aws::MediaConvert
|
|
|
1353
1356
|
Eac3AtmosSettings.struct_class = Types::Eac3AtmosSettings
|
|
1354
1357
|
|
|
1355
1358
|
Eac3Settings.add_member(:attenuation_control, Shapes::ShapeRef.new(shape: Eac3AttenuationControl, location_name: "attenuationControl"))
|
|
1356
|
-
Eac3Settings.add_member(:bitrate, Shapes::ShapeRef.new(shape:
|
|
1359
|
+
Eac3Settings.add_member(:bitrate, Shapes::ShapeRef.new(shape: __integerMin32000Max3024000, location_name: "bitrate"))
|
|
1357
1360
|
Eac3Settings.add_member(:bitstream_mode, Shapes::ShapeRef.new(shape: Eac3BitstreamMode, location_name: "bitstreamMode"))
|
|
1358
1361
|
Eac3Settings.add_member(:coding_mode, Shapes::ShapeRef.new(shape: Eac3CodingMode, location_name: "codingMode"))
|
|
1359
1362
|
Eac3Settings.add_member(:dc_filter, Shapes::ShapeRef.new(shape: Eac3DcFilter, location_name: "dcFilter"))
|
|
@@ -1660,6 +1663,7 @@ module Aws::MediaConvert
|
|
|
1660
1663
|
Id3Insertion.struct_class = Types::Id3Insertion
|
|
1661
1664
|
|
|
1662
1665
|
ImageInserter.add_member(:insertable_images, Shapes::ShapeRef.new(shape: __listOfInsertableImage, location_name: "insertableImages"))
|
|
1666
|
+
ImageInserter.add_member(:sdr_reference_white_level, Shapes::ShapeRef.new(shape: __integerMin100Max1000, location_name: "sdrReferenceWhiteLevel"))
|
|
1663
1667
|
ImageInserter.struct_class = Types::ImageInserter
|
|
1664
1668
|
|
|
1665
1669
|
ImscDestinationSettings.add_member(:accessibility, Shapes::ShapeRef.new(shape: ImscAccessibilitySubs, location_name: "accessibility"))
|
|
@@ -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
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
|