aws-sdk-medialive 1.70.0 → 1.71.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c410e74479cf3f0c7bfaa6fe16ad6303dac2a5af16d2e4d51dc0b2d3e0a287e6
4
- data.tar.gz: f1954335265eb634bf1b14a5bd99463851434e2c794519a50982a8dc01fb7959
3
+ metadata.gz: b4d78aad6f4135e388cadf20ac424b764b7afb53cfde9c450dc292eea058da79
4
+ data.tar.gz: f6d778d23bb2fbb94d9dfc4e705d1230e5a35f6422e04dfcacff2800683a271b
5
5
  SHA512:
6
- metadata.gz: 6212ea054f1dbffe33e019279ac231cc291d9121356730c2c01853aa1d64a05ed8fb90e4c27fee55d7c6909ccbac20dc5943078019c439d157e002e3daebb9fb
7
- data.tar.gz: a3661e697a562c4ae6a5bd352e8eb1ffd0019239fc5b4e5d55e2f97c04a4c5e6eb2d55668c4541f86fa87f2dfd7934898e3cbf78a6a4fc10c29ef0f98d43c7a7
6
+ metadata.gz: b24440200d1f6ce196f9a2536c8298de5c8ac78cd1fb747c74bc3074769195b40b74b1dbfaeec37ee19b67898cc787b596ce8708ed34980dcbc6acb18f57b56d
7
+ data.tar.gz: debf75c600f9d305740620222520db014f3355884a81b4d31e12b8c93c809c1ab2c5920a38e080531f7f24e66201ad5dcf3548e158a7f670c6f24fce514aeac3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.71.0 (2021-06-04)
5
+ ------------------
6
+
7
+ * Feature - Add support for automatically setting the H.264 adaptive quantization and GOP B-frame fields.
8
+
4
9
  1.70.0 (2021-04-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.70.0
1
+ 1.71.0
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-medialive/customizations'
49
49
  # @!group service
50
50
  module Aws::MediaLive
51
51
 
52
- GEM_VERSION = '1.70.0'
52
+ GEM_VERSION = '1.71.0'
53
53
 
54
54
  end
@@ -1476,7 +1476,7 @@ module Aws::MediaLive
1476
1476
  # capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
1477
1477
  # },
1478
1478
  # h264_settings: {
1479
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
1479
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
1480
1480
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
1481
1481
  # bitrate: 1,
1482
1482
  # buf_fill_pct: 1,
@@ -1531,7 +1531,7 @@ module Aws::MediaLive
1531
1531
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
1532
1532
  # },
1533
1533
  # h265_settings: {
1534
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
1534
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
1535
1535
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
1536
1536
  # alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
1537
1537
  # bitrate: 1,
@@ -2182,7 +2182,7 @@ module Aws::MediaLive
2182
2182
  # resp.channel.encoder_settings.video_descriptions #=> Array
2183
2183
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
2184
2184
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
2185
- # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
2185
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
2186
2186
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
2187
2187
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
2188
2188
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
@@ -2223,7 +2223,7 @@ module Aws::MediaLive
2223
2223
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
2224
2224
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
2225
2225
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
2226
- # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
2226
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
2227
2227
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
2228
2228
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
2229
2229
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
@@ -3224,7 +3224,7 @@ module Aws::MediaLive
3224
3224
  # resp.encoder_settings.video_descriptions #=> Array
3225
3225
  # resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
3226
3226
  # resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
3227
- # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
3227
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
3228
3228
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
3229
3229
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
3230
3230
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
@@ -3265,7 +3265,7 @@ module Aws::MediaLive
3265
3265
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
3266
3266
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
3267
3267
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
3268
- # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
3268
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
3269
3269
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
3270
3270
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
3271
3271
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
@@ -4137,7 +4137,7 @@ module Aws::MediaLive
4137
4137
  # resp.encoder_settings.video_descriptions #=> Array
4138
4138
  # resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
4139
4139
  # resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
4140
- # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
4140
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
4141
4141
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
4142
4142
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
4143
4143
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
@@ -4178,7 +4178,7 @@ module Aws::MediaLive
4178
4178
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
4179
4179
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
4180
4180
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
4181
- # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
4181
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
4182
4182
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
4183
4183
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
4184
4184
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
@@ -6060,7 +6060,7 @@ module Aws::MediaLive
6060
6060
  # resp.encoder_settings.video_descriptions #=> Array
6061
6061
  # resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
6062
6062
  # resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
6063
- # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
6063
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
6064
6064
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
6065
6065
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
6066
6066
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
@@ -6101,7 +6101,7 @@ module Aws::MediaLive
6101
6101
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
6102
6102
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
6103
6103
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
6104
- # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
6104
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
6105
6105
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
6106
6106
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
6107
6107
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
@@ -6755,7 +6755,7 @@ module Aws::MediaLive
6755
6755
  # resp.encoder_settings.video_descriptions #=> Array
6756
6756
  # resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
6757
6757
  # resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
6758
- # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
6758
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
6759
6759
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
6760
6760
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
6761
6761
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
@@ -6796,7 +6796,7 @@ module Aws::MediaLive
6796
6796
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
6797
6797
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
6798
6798
  # resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
6799
- # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
6799
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
6800
6800
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
6801
6801
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
6802
6802
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
@@ -7713,7 +7713,7 @@ module Aws::MediaLive
7713
7713
  # capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
7714
7714
  # },
7715
7715
  # h264_settings: {
7716
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
7716
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
7717
7717
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
7718
7718
  # bitrate: 1,
7719
7719
  # buf_fill_pct: 1,
@@ -7768,7 +7768,7 @@ module Aws::MediaLive
7768
7768
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
7769
7769
  # },
7770
7770
  # h265_settings: {
7771
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
7771
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
7772
7772
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
7773
7773
  # alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
7774
7774
  # bitrate: 1,
@@ -8409,7 +8409,7 @@ module Aws::MediaLive
8409
8409
  # resp.channel.encoder_settings.video_descriptions #=> Array
8410
8410
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
8411
8411
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
8412
- # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
8412
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
8413
8413
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
8414
8414
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
8415
8415
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
@@ -8450,7 +8450,7 @@ module Aws::MediaLive
8450
8450
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
8451
8451
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
8452
8452
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
8453
- # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
8453
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
8454
8454
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
8455
8455
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
8456
8456
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
@@ -9065,7 +9065,7 @@ module Aws::MediaLive
9065
9065
  # resp.channel.encoder_settings.video_descriptions #=> Array
9066
9066
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
9067
9067
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
9068
- # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
9068
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
9069
9069
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
9070
9070
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
9071
9071
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
@@ -9106,7 +9106,7 @@ module Aws::MediaLive
9106
9106
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
9107
9107
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
9108
9108
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
9109
- # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
9109
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
9110
9110
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
9111
9111
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
9112
9112
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
@@ -9675,7 +9675,7 @@ module Aws::MediaLive
9675
9675
  params: params,
9676
9676
  config: config)
9677
9677
  context[:gem_name] = 'aws-sdk-medialive'
9678
- context[:gem_version] = '1.70.0'
9678
+ context[:gem_version] = '1.71.0'
9679
9679
  Seahorse::Client::Request.new(handlers, context)
9680
9680
  end
9681
9681
 
@@ -3760,7 +3760,7 @@ module Aws::MediaLive
3760
3760
  # capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
3761
3761
  # },
3762
3762
  # h264_settings: {
3763
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
3763
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
3764
3764
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
3765
3765
  # bitrate: 1,
3766
3766
  # buf_fill_pct: 1,
@@ -3815,7 +3815,7 @@ module Aws::MediaLive
3815
3815
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
3816
3816
  # },
3817
3817
  # h265_settings: {
3818
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
3818
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
3819
3819
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
3820
3820
  # alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
3821
3821
  # bitrate: 1,
@@ -7030,7 +7030,7 @@ module Aws::MediaLive
7030
7030
  # capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
7031
7031
  # },
7032
7032
  # h264_settings: {
7033
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
7033
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
7034
7034
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
7035
7035
  # bitrate: 1,
7036
7036
  # buf_fill_pct: 1,
@@ -7085,7 +7085,7 @@ module Aws::MediaLive
7085
7085
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
7086
7086
  # },
7087
7087
  # h265_settings: {
7088
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
7088
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
7089
7089
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
7090
7090
  # alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
7091
7091
  # bitrate: 1,
@@ -7773,7 +7773,7 @@ module Aws::MediaLive
7773
7773
  # data as a hash:
7774
7774
  #
7775
7775
  # {
7776
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
7776
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
7777
7777
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
7778
7778
  # bitrate: 1,
7779
7779
  # buf_fill_pct: 1,
@@ -7829,8 +7829,16 @@ module Aws::MediaLive
7829
7829
  # }
7830
7830
  #
7831
7831
  # @!attribute [rw] adaptive_quantization
7832
- # Adaptive quantization. Allows intra-frame quantizers to vary to
7833
- # improve visual quality.
7832
+ # Enables or disables adaptive quantization, which is a technique
7833
+ # MediaLive can apply to video on a frame-by-frame basis to produce
7834
+ # more compression without losing quality. There are three types of
7835
+ # adaptive quantization: flicker, spatial, and temporal. Set the field
7836
+ # in one of these ways: Set to Auto. Recommended. For each type of AQ,
7837
+ # MediaLive will determine if AQ is needed, and if so, the appropriate
7838
+ # strength. Set a strength (a value other than Auto or Disable). This
7839
+ # strength will apply to any of the AQ fields that you choose to
7840
+ # enable. Set to Disabled to disable all types of adaptive
7841
+ # quantization.
7834
7842
  # @return [String]
7835
7843
  #
7836
7844
  # @!attribute [rw] afd_signaling
@@ -7880,8 +7888,17 @@ module Aws::MediaLive
7880
7888
  # @return [String]
7881
7889
  #
7882
7890
  # @!attribute [rw] flicker_aq
7883
- # If set to enabled, adjust quantization within each frame to reduce
7884
- # flicker or 'pop' on I-frames.
7891
+ # Flicker AQ makes adjustments within each frame to reduce flicker or
7892
+ # 'pop' on I-frames. The value to enter in this field depends on the
7893
+ # value in the Adaptive quantization field: If you have set the
7894
+ # Adaptive quantization field to Auto, MediaLive ignores any value in
7895
+ # this field. MediaLive will determine if flicker AQ is appropriate
7896
+ # and will apply the appropriate strength. If you have set the
7897
+ # Adaptive quantization field to a strength, you can set this field to
7898
+ # Enabled or Disabled. Enabled: MediaLive will apply flicker AQ using
7899
+ # the specified strength. Disabled: MediaLive won't apply flicker AQ.
7900
+ # If you have set the Adaptive quantization to Disabled, MediaLive
7901
+ # ignores any value in this field and doesn't apply flicker AQ.
7885
7902
  # @return [String]
7886
7903
  #
7887
7904
  # @!attribute [rw] force_field_pictures
@@ -8006,12 +8023,17 @@ module Aws::MediaLive
8006
8023
  #
8007
8024
  # @!attribute [rw] qvbr_quality_level
8008
8025
  # Controls the target quality for the video encode. Applies only when
8009
- # the rate control mode is QVBR. Set values for the QVBR quality level
8010
- # field and Max bitrate field that suit your most important viewing
8026
+ # the rate control mode is QVBR. You can set a target quality or you
8027
+ # can let MediaLive determine the best quality. To set a target
8028
+ # quality, enter values in the QVBR quality level field and the Max
8029
+ # bitrate field. Enter values that suit your most important viewing
8011
8030
  # devices. Recommended values are: - Primary screen: Quality level: 8
8012
8031
  # to 10. Max bitrate: 4M - PC or tablet: Quality level: 7. Max
8013
8032
  # bitrate: 1.5M to 3M - Smartphone: Quality level: 6. Max bitrate: 1M
8014
- # to 1.5M
8033
+ # to 1.5M To let MediaLive decide, leave the QVBR quality level field
8034
+ # empty, and in Max bitrate enter the maximum rate you want in the
8035
+ # video. For more information, see the section called "Video - rate
8036
+ # control mode" in the MediaLive user guide
8015
8037
  # @return [Integer]
8016
8038
  #
8017
8039
  # @!attribute [rw] rate_control_mode
@@ -8055,8 +8077,18 @@ module Aws::MediaLive
8055
8077
  # @return [Integer]
8056
8078
  #
8057
8079
  # @!attribute [rw] spatial_aq
8058
- # If set to enabled, adjust quantization within each frame based on
8059
- # spatial variation of content complexity.
8080
+ # Spatial AQ makes adjustments within each frame based on spatial
8081
+ # variation of content complexity. The value to enter in this field
8082
+ # depends on the value in the Adaptive quantization field: If you have
8083
+ # set the Adaptive quantization field to Auto, MediaLive ignores any
8084
+ # value in this field. MediaLive will determine if spatial AQ is
8085
+ # appropriate and will apply the appropriate strength. If you have set
8086
+ # the Adaptive quantization field to a strength, you can set this
8087
+ # field to Enabled or Disabled. Enabled: MediaLive will apply spatial
8088
+ # AQ using the specified strength. Disabled: MediaLive won't apply
8089
+ # spatial AQ. If you have set the Adaptive quantization to Disabled,
8090
+ # MediaLive ignores any value in this field and doesn't apply spatial
8091
+ # AQ.
8060
8092
  # @return [String]
8061
8093
  #
8062
8094
  # @!attribute [rw] subgop_length
@@ -8070,8 +8102,18 @@ module Aws::MediaLive
8070
8102
  # @return [String]
8071
8103
  #
8072
8104
  # @!attribute [rw] temporal_aq
8073
- # If set to enabled, adjust quantization within each frame based on
8074
- # temporal variation of content complexity.
8105
+ # Temporal makes adjustments within each frame based on temporal
8106
+ # variation of content complexity. The value to enter in this field
8107
+ # depends on the value in the Adaptive quantization field: If you have
8108
+ # set the Adaptive quantization field to Auto, MediaLive ignores any
8109
+ # value in this field. MediaLive will determine if temporal AQ is
8110
+ # appropriate and will apply the appropriate strength. If you have set
8111
+ # the Adaptive quantization field to a strength, you can set this
8112
+ # field to Enabled or Disabled. Enabled: MediaLive will apply temporal
8113
+ # AQ using the specified strength. Disabled: MediaLive won't apply
8114
+ # temporal AQ. If you have set the Adaptive quantization to Disabled,
8115
+ # MediaLive ignores any value in this field and doesn't apply
8116
+ # temporal AQ.
8075
8117
  # @return [String]
8076
8118
  #
8077
8119
  # @!attribute [rw] timecode_insertion
@@ -8204,7 +8246,7 @@ module Aws::MediaLive
8204
8246
  # data as a hash:
8205
8247
  #
8206
8248
  # {
8207
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
8249
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
8208
8250
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
8209
8251
  # alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
8210
8252
  # bitrate: 1,
@@ -18073,7 +18115,7 @@ module Aws::MediaLive
18073
18115
  # capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
18074
18116
  # },
18075
18117
  # h264_settings: {
18076
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
18118
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
18077
18119
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
18078
18120
  # bitrate: 1,
18079
18121
  # buf_fill_pct: 1,
@@ -18128,7 +18170,7 @@ module Aws::MediaLive
18128
18170
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
18129
18171
  # },
18130
18172
  # h265_settings: {
18131
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
18173
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
18132
18174
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
18133
18175
  # alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
18134
18176
  # bitrate: 1,
@@ -19025,7 +19067,7 @@ module Aws::MediaLive
19025
19067
  # capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
19026
19068
  # },
19027
19069
  # h264_settings: {
19028
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
19070
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
19029
19071
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
19030
19072
  # bitrate: 1,
19031
19073
  # buf_fill_pct: 1,
@@ -19080,7 +19122,7 @@ module Aws::MediaLive
19080
19122
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
19081
19123
  # },
19082
19124
  # h265_settings: {
19083
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
19125
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
19084
19126
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
19085
19127
  # alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
19086
19128
  # bitrate: 1,
@@ -19190,7 +19232,7 @@ module Aws::MediaLive
19190
19232
  # capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
19191
19233
  # },
19192
19234
  # h264_settings: {
19193
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
19235
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
19194
19236
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
19195
19237
  # bitrate: 1,
19196
19238
  # buf_fill_pct: 1,
@@ -19245,7 +19287,7 @@ module Aws::MediaLive
19245
19287
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
19246
19288
  # },
19247
19289
  # h265_settings: {
19248
- # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
19290
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
19249
19291
  # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
19250
19292
  # alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
19251
19293
  # bitrate: 1,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-medialive
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.70.0
4
+ version: 1.71.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: 2021-04-06 00:00:00.000000000 Z
11
+ date: 2021-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -84,8 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  - !ruby/object:Gem::Version
85
85
  version: '0'
86
86
  requirements: []
87
- rubyforge_project:
88
- rubygems_version: 2.7.6.2
87
+ rubygems_version: 3.1.6
89
88
  signing_key:
90
89
  specification_version: 4
91
90
  summary: AWS SDK for Ruby - MediaLive