aws-sdk-mediaconvert 1.78.0 → 1.82.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +55 -35
- data/lib/aws-sdk-mediaconvert/types.rb +157 -81
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7339c951e20079a225fa474a21e6f7cff954499cd1a1534563cf2c45a8cc7395
|
|
4
|
+
data.tar.gz: bd66001b5c128839eba93eb727584d4a42fa552c853733827c6f5a2883241091
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57b0d6b9a4f249373217399601e2b33f0e0e1b2f5fee9b1772f6e1aa5cb8985e1565d7ddc409055fa468e926b1066c0af63a4376ab44d7c1ac93ee1b23862c69
|
|
7
|
+
data.tar.gz: af30ec4aea8dcdbf3a2ec3864b02a2585dbc95936f71f8fc87523ccaf5aee9230a0f45f360884f5a70d9d1a099f51cca5ad5bf1f5603d4f813b24bdc3611c4a6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.82.0 (2021-12-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.81.0 (2021-11-30)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.80.0 (2021-11-12)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - AWS Elemental MediaConvert SDK has added automatic modes for GOP configuration and added the ability to ingest screen recordings generated by Safari on MacOS 12 Monterey.
|
|
18
|
+
|
|
19
|
+
1.79.0 (2021-11-04)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
23
|
+
|
|
4
24
|
1.78.0 (2021-10-20)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.82.0
|
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
31
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
|
32
33
|
|
|
@@ -73,6 +74,7 @@ module Aws::MediaConvert
|
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
77
79
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
|
78
80
|
|
|
@@ -119,7 +121,9 @@ module Aws::MediaConvert
|
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
-
# enable retries and extended timeouts.
|
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
|
126
|
+
# to true.
|
|
123
127
|
#
|
|
124
128
|
# @option options [required, String] :region
|
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -173,6 +177,10 @@ module Aws::MediaConvert
|
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
175
179
|
#
|
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
|
183
|
+
#
|
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
|
178
186
|
# to default service endpoint when available.
|
|
@@ -275,6 +283,15 @@ module Aws::MediaConvert
|
|
|
275
283
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
|
276
284
|
# requests are made, and retries are disabled.
|
|
277
285
|
#
|
|
286
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
|
287
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
|
288
|
+
# will be used if available.
|
|
289
|
+
#
|
|
290
|
+
# @option options [Boolean] :use_fips_endpoint
|
|
291
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
|
292
|
+
# When a `fips` region is used, the region is normalized and this config
|
|
293
|
+
# is set to `true`.
|
|
294
|
+
#
|
|
278
295
|
# @option options [Boolean] :validate_params (true)
|
|
279
296
|
# When `true`, request parameters are validated before
|
|
280
297
|
# sending the request.
|
|
@@ -286,7 +303,7 @@ module Aws::MediaConvert
|
|
|
286
303
|
# seconds to wait when opening a HTTP session before raising a
|
|
287
304
|
# `Timeout::Error`.
|
|
288
305
|
#
|
|
289
|
-
# @option options [
|
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
|
290
307
|
# number of seconds to wait for response data. This value can
|
|
291
308
|
# safely be set per-request on the session.
|
|
292
309
|
#
|
|
@@ -302,6 +319,9 @@ module Aws::MediaConvert
|
|
|
302
319
|
# disables this behaviour. This value can safely be set per
|
|
303
320
|
# request on the session.
|
|
304
321
|
#
|
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
|
323
|
+
# in seconds.
|
|
324
|
+
#
|
|
305
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
|
306
326
|
# HTTP debug output will be sent to the `:logger`.
|
|
307
327
|
#
|
|
@@ -1374,7 +1394,7 @@ module Aws::MediaConvert
|
|
|
1374
1394
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
1375
1395
|
# gop_closed_cadence: 1,
|
|
1376
1396
|
# gop_size: 1.0,
|
|
1377
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
1397
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
1378
1398
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
1379
1399
|
# hrd_buffer_size: 1,
|
|
1380
1400
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -1419,7 +1439,7 @@ module Aws::MediaConvert
|
|
|
1419
1439
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
1420
1440
|
# gop_closed_cadence: 1,
|
|
1421
1441
|
# gop_size: 1.0,
|
|
1422
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
1442
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
1423
1443
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
1424
1444
|
# hrd_buffer_size: 1,
|
|
1425
1445
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -2393,7 +2413,7 @@ module Aws::MediaConvert
|
|
|
2393
2413
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
2394
2414
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
|
|
2395
2415
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
|
|
2396
|
-
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
2416
|
+
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
2397
2417
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
2398
2418
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
|
|
2399
2419
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -2434,7 +2454,7 @@ module Aws::MediaConvert
|
|
|
2434
2454
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
2435
2455
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
|
|
2436
2456
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
|
|
2437
|
-
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
2457
|
+
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
2438
2458
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
2439
2459
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
|
|
2440
2460
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -3633,7 +3653,7 @@ module Aws::MediaConvert
|
|
|
3633
3653
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
3634
3654
|
# gop_closed_cadence: 1,
|
|
3635
3655
|
# gop_size: 1.0,
|
|
3636
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
3656
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
3637
3657
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
3638
3658
|
# hrd_buffer_size: 1,
|
|
3639
3659
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -3678,7 +3698,7 @@ module Aws::MediaConvert
|
|
|
3678
3698
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
3679
3699
|
# gop_closed_cadence: 1,
|
|
3680
3700
|
# gop_size: 1.0,
|
|
3681
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
3701
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
3682
3702
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
3683
3703
|
# hrd_buffer_size: 1,
|
|
3684
3704
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -4622,7 +4642,7 @@ module Aws::MediaConvert
|
|
|
4622
4642
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
4623
4643
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
|
|
4624
4644
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
|
|
4625
|
-
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
4645
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
4626
4646
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
4627
4647
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
|
|
4628
4648
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -4663,7 +4683,7 @@ module Aws::MediaConvert
|
|
|
4663
4683
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
4664
4684
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
|
|
4665
4685
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
|
|
4666
|
-
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
4686
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
4667
4687
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
4668
4688
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
|
|
4669
4689
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -5322,7 +5342,7 @@ module Aws::MediaConvert
|
|
|
5322
5342
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
5323
5343
|
# gop_closed_cadence: 1,
|
|
5324
5344
|
# gop_size: 1.0,
|
|
5325
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
5345
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
5326
5346
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
5327
5347
|
# hrd_buffer_size: 1,
|
|
5328
5348
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -5367,7 +5387,7 @@ module Aws::MediaConvert
|
|
|
5367
5387
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
5368
5388
|
# gop_closed_cadence: 1,
|
|
5369
5389
|
# gop_size: 1.0,
|
|
5370
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
5390
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
5371
5391
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
5372
5392
|
# hrd_buffer_size: 1,
|
|
5373
5393
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -5960,7 +5980,7 @@ module Aws::MediaConvert
|
|
|
5960
5980
|
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
5961
5981
|
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
|
|
5962
5982
|
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_size #=> Float
|
|
5963
|
-
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
5983
|
+
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
5964
5984
|
# resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
5965
5985
|
# resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
|
|
5966
5986
|
# resp.preset.settings.video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -6001,7 +6021,7 @@ module Aws::MediaConvert
|
|
|
6001
6021
|
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
6002
6022
|
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
|
|
6003
6023
|
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_size #=> Float
|
|
6004
|
-
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
6024
|
+
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
6005
6025
|
# resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
6006
6026
|
# resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
|
|
6007
6027
|
# resp.preset.settings.video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -7139,7 +7159,7 @@ module Aws::MediaConvert
|
|
|
7139
7159
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
7140
7160
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
|
|
7141
7161
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
|
|
7142
|
-
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
7162
|
+
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
7143
7163
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
7144
7164
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
|
|
7145
7165
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -7180,7 +7200,7 @@ module Aws::MediaConvert
|
|
|
7180
7200
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
7181
7201
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
|
|
7182
7202
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
|
|
7183
|
-
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
7203
|
+
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
7184
7204
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
7185
7205
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
|
|
7186
7206
|
# resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -8075,7 +8095,7 @@ module Aws::MediaConvert
|
|
|
8075
8095
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
8076
8096
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
|
|
8077
8097
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
|
|
8078
|
-
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
8098
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
8079
8099
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
8080
8100
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
|
|
8081
8101
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -8116,7 +8136,7 @@ module Aws::MediaConvert
|
|
|
8116
8136
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
8117
8137
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
|
|
8118
8138
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
|
|
8119
|
-
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
8139
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
8120
8140
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
8121
8141
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
|
|
8122
8142
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -8694,7 +8714,7 @@ module Aws::MediaConvert
|
|
|
8694
8714
|
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
8695
8715
|
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
|
|
8696
8716
|
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_size #=> Float
|
|
8697
|
-
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
8717
|
+
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
8698
8718
|
# resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
8699
8719
|
# resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
|
|
8700
8720
|
# resp.preset.settings.video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -8735,7 +8755,7 @@ module Aws::MediaConvert
|
|
|
8735
8755
|
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
8736
8756
|
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
|
|
8737
8757
|
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_size #=> Float
|
|
8738
|
-
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
8758
|
+
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
8739
8759
|
# resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
8740
8760
|
# resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
|
|
8741
8761
|
# resp.preset.settings.video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -9689,7 +9709,7 @@ module Aws::MediaConvert
|
|
|
9689
9709
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
9690
9710
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
|
|
9691
9711
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
|
|
9692
|
-
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
9712
|
+
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
9693
9713
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
9694
9714
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
|
|
9695
9715
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -9730,7 +9750,7 @@ module Aws::MediaConvert
|
|
|
9730
9750
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
9731
9751
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
|
|
9732
9752
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
|
|
9733
|
-
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
9753
|
+
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
9734
9754
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
9735
9755
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
|
|
9736
9756
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -10675,7 +10695,7 @@ module Aws::MediaConvert
|
|
|
10675
10695
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
10676
10696
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
|
|
10677
10697
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
|
|
10678
|
-
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
10698
|
+
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
10679
10699
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
10680
10700
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
|
|
10681
10701
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -10716,7 +10736,7 @@ module Aws::MediaConvert
|
|
|
10716
10736
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
10717
10737
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
|
|
10718
10738
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
|
|
10719
|
-
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
10739
|
+
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
10720
10740
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
10721
10741
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
|
|
10722
10742
|
# resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -11311,7 +11331,7 @@ module Aws::MediaConvert
|
|
|
11311
11331
|
# resp.presets[0].settings.video_description.codec_settings.h264_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
11312
11332
|
# resp.presets[0].settings.video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
|
|
11313
11333
|
# resp.presets[0].settings.video_description.codec_settings.h264_settings.gop_size #=> Float
|
|
11314
|
-
# resp.presets[0].settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
11334
|
+
# resp.presets[0].settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
11315
11335
|
# resp.presets[0].settings.video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
11316
11336
|
# resp.presets[0].settings.video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
|
|
11317
11337
|
# resp.presets[0].settings.video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -11352,7 +11372,7 @@ module Aws::MediaConvert
|
|
|
11352
11372
|
# resp.presets[0].settings.video_description.codec_settings.h265_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
11353
11373
|
# resp.presets[0].settings.video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
|
|
11354
11374
|
# resp.presets[0].settings.video_description.codec_settings.h265_settings.gop_size #=> Float
|
|
11355
|
-
# resp.presets[0].settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
11375
|
+
# resp.presets[0].settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
11356
11376
|
# resp.presets[0].settings.video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
11357
11377
|
# resp.presets[0].settings.video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
|
|
11358
11378
|
# resp.presets[0].settings.video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -12725,7 +12745,7 @@ module Aws::MediaConvert
|
|
|
12725
12745
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
12726
12746
|
# gop_closed_cadence: 1,
|
|
12727
12747
|
# gop_size: 1.0,
|
|
12728
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
12748
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
12729
12749
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
12730
12750
|
# hrd_buffer_size: 1,
|
|
12731
12751
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -12770,7 +12790,7 @@ module Aws::MediaConvert
|
|
|
12770
12790
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
12771
12791
|
# gop_closed_cadence: 1,
|
|
12772
12792
|
# gop_size: 1.0,
|
|
12773
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
12793
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
12774
12794
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
12775
12795
|
# hrd_buffer_size: 1,
|
|
12776
12796
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -13711,7 +13731,7 @@ module Aws::MediaConvert
|
|
|
13711
13731
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
13712
13732
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
|
|
13713
13733
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
|
|
13714
|
-
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
13734
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
13715
13735
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
13716
13736
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
|
|
13717
13737
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -13752,7 +13772,7 @@ module Aws::MediaConvert
|
|
|
13752
13772
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
13753
13773
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
|
|
13754
13774
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
|
|
13755
|
-
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
13775
|
+
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
13756
13776
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
13757
13777
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
|
|
13758
13778
|
# resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -14405,7 +14425,7 @@ module Aws::MediaConvert
|
|
|
14405
14425
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
14406
14426
|
# gop_closed_cadence: 1,
|
|
14407
14427
|
# gop_size: 1.0,
|
|
14408
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
14428
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
14409
14429
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
14410
14430
|
# hrd_buffer_size: 1,
|
|
14411
14431
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -14450,7 +14470,7 @@ module Aws::MediaConvert
|
|
|
14450
14470
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
14451
14471
|
# gop_closed_cadence: 1,
|
|
14452
14472
|
# gop_size: 1.0,
|
|
14453
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
14473
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
14454
14474
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
14455
14475
|
# hrd_buffer_size: 1,
|
|
14456
14476
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -15040,7 +15060,7 @@ module Aws::MediaConvert
|
|
|
15040
15060
|
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
15041
15061
|
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
|
|
15042
15062
|
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_size #=> Float
|
|
15043
|
-
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
15063
|
+
# resp.preset.settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
15044
15064
|
# resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
15045
15065
|
# resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
|
|
15046
15066
|
# resp.preset.settings.video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -15081,7 +15101,7 @@ module Aws::MediaConvert
|
|
|
15081
15101
|
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_b_reference #=> String, one of "DISABLED", "ENABLED"
|
|
15082
15102
|
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
|
|
15083
15103
|
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_size #=> Float
|
|
15084
|
-
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
|
15104
|
+
# resp.preset.settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
|
|
15085
15105
|
# resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
|
|
15086
15106
|
# resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
|
|
15087
15107
|
# resp.preset.settings.video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
@@ -15383,7 +15403,7 @@ module Aws::MediaConvert
|
|
|
15383
15403
|
params: params,
|
|
15384
15404
|
config: config)
|
|
15385
15405
|
context[:gem_name] = 'aws-sdk-mediaconvert'
|
|
15386
|
-
context[:gem_version] = '1.
|
|
15406
|
+
context[:gem_version] = '1.82.0'
|
|
15387
15407
|
Seahorse::Client::Request.new(handlers, context)
|
|
15388
15408
|
end
|
|
15389
15409
|
|
|
@@ -1651,8 +1651,7 @@ module Aws::MediaConvert
|
|
|
1651
1651
|
# Specify the color of the rectangle behind the captions. Leave
|
|
1652
1652
|
# background color (BackgroundColor) blank and set Style passthrough
|
|
1653
1653
|
# (StylePassthrough) to enabled to use the background color data from
|
|
1654
|
-
# your input captions, if present.
|
|
1655
|
-
# your DVB-Sub settings must be identical.
|
|
1654
|
+
# your input captions, if present.
|
|
1656
1655
|
# @return [String]
|
|
1657
1656
|
#
|
|
1658
1657
|
# @!attribute [rw] background_opacity
|
|
@@ -3166,7 +3165,7 @@ module Aws::MediaConvert
|
|
|
3166
3165
|
# video rendition. Use a comma-separated list. For example, say you
|
|
3167
3166
|
# want to include the audio rendition groups that have the audio group
|
|
3168
3167
|
# IDs "audio\_aac\_1" and "audio\_dolby". Then you would specify
|
|
3169
|
-
# this value: "audio\_aac\_1,
|
|
3168
|
+
# this value: "audio\_aac\_1,audio\_dolby". Related setting: The
|
|
3170
3169
|
# rendition groups that you include in your comma-separated list
|
|
3171
3170
|
# should all match values that you specify in the setting Audio group
|
|
3172
3171
|
# ID (AudioGroupId) for audio renditions in the same output group as
|
|
@@ -4482,7 +4481,7 @@ module Aws::MediaConvert
|
|
|
4482
4481
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
4483
4482
|
# gop_closed_cadence: 1,
|
|
4484
4483
|
# gop_size: 1.0,
|
|
4485
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
4484
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
4486
4485
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
4487
4486
|
# hrd_buffer_size: 1,
|
|
4488
4487
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -4527,7 +4526,7 @@ module Aws::MediaConvert
|
|
|
4527
4526
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
4528
4527
|
# gop_closed_cadence: 1,
|
|
4529
4528
|
# gop_size: 1.0,
|
|
4530
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
4529
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
4531
4530
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
4532
4531
|
# hrd_buffer_size: 1,
|
|
4533
4532
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -5869,7 +5868,7 @@ module Aws::MediaConvert
|
|
|
5869
5868
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
5870
5869
|
# gop_closed_cadence: 1,
|
|
5871
5870
|
# gop_size: 1.0,
|
|
5872
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
5871
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
5873
5872
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
5874
5873
|
# hrd_buffer_size: 1,
|
|
5875
5874
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -5914,7 +5913,7 @@ module Aws::MediaConvert
|
|
|
5914
5913
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
5915
5914
|
# gop_closed_cadence: 1,
|
|
5916
5915
|
# gop_size: 1.0,
|
|
5917
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
5916
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
5918
5917
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
5919
5918
|
# hrd_buffer_size: 1,
|
|
5920
5919
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -6714,7 +6713,7 @@ module Aws::MediaConvert
|
|
|
6714
6713
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
6715
6714
|
# gop_closed_cadence: 1,
|
|
6716
6715
|
# gop_size: 1.0,
|
|
6717
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
6716
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
6718
6717
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
6719
6718
|
# hrd_buffer_size: 1,
|
|
6720
6719
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -6759,7 +6758,7 @@ module Aws::MediaConvert
|
|
|
6759
6758
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
6760
6759
|
# gop_closed_cadence: 1,
|
|
6761
6760
|
# gop_size: 1.0,
|
|
6762
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
6761
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
6763
6762
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
6764
6763
|
# hrd_buffer_size: 1,
|
|
6765
6764
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -8268,8 +8267,8 @@ module Aws::MediaConvert
|
|
|
8268
8267
|
# @return [String]
|
|
8269
8268
|
#
|
|
8270
8269
|
# @!attribute [rw] teletext_spacing
|
|
8271
|
-
# Specify whether the Text spacing (
|
|
8272
|
-
# set by the captions grid, or varies depending on letter width.
|
|
8270
|
+
# Specify whether the Text spacing (TeletextSpacing) in your captions
|
|
8271
|
+
# is set by the captions grid, or varies depending on letter width.
|
|
8273
8272
|
# Choose fixed grid (FIXED\_GRID) to conform to the spacing specified
|
|
8274
8273
|
# in the captions file more accurately. Choose proportional
|
|
8275
8274
|
# (PROPORTIONAL) to make the text easier to read for closed captions.
|
|
@@ -9551,7 +9550,7 @@ module Aws::MediaConvert
|
|
|
9551
9550
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
9552
9551
|
# gop_closed_cadence: 1,
|
|
9553
9552
|
# gop_size: 1.0,
|
|
9554
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
9553
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
9555
9554
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
9556
9555
|
# hrd_buffer_size: 1,
|
|
9557
9556
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -9713,21 +9712,42 @@ module Aws::MediaConvert
|
|
|
9713
9712
|
# @return [String]
|
|
9714
9713
|
#
|
|
9715
9714
|
# @!attribute [rw] gop_closed_cadence
|
|
9716
|
-
#
|
|
9717
|
-
#
|
|
9718
|
-
#
|
|
9719
|
-
#
|
|
9715
|
+
# Specify the relative frequency of open to closed GOPs in this
|
|
9716
|
+
# output. For example, if you want to allow four open GOPs and then
|
|
9717
|
+
# require a closed GOP, set this value to 5. We recommend that you
|
|
9718
|
+
# have the transcoder automatically choose this value for you based on
|
|
9719
|
+
# characteristics of your input video. To enable this automatic
|
|
9720
|
+
# behavior, keep the default value by leaving this setting out of your
|
|
9721
|
+
# JSON job specification. In the console, do this by keeping the
|
|
9722
|
+
# default empty value. If you do explicitly specify a value, for
|
|
9723
|
+
# segmented outputs, don't set this value to 0.
|
|
9720
9724
|
# @return [Integer]
|
|
9721
9725
|
#
|
|
9722
9726
|
# @!attribute [rw] gop_size
|
|
9723
|
-
#
|
|
9724
|
-
#
|
|
9727
|
+
# Use this setting only when you set GOP mode control (GopSizeUnits)
|
|
9728
|
+
# to Specified, frames (FRAMES) or Specified, seconds (SECONDS).
|
|
9729
|
+
# Specify the GOP length using a whole number of frames or a decimal
|
|
9730
|
+
# value of seconds. MediaConvert will interpret this value as frames
|
|
9731
|
+
# or seconds depending on the value you choose for GOP mode control
|
|
9732
|
+
# (GopSizeUnits). If you want to allow MediaConvert to automatically
|
|
9733
|
+
# determine GOP size, leave GOP size blank and set GOP mode control to
|
|
9734
|
+
# Auto (AUTO). If your output group specifies HLS, DASH, or CMAF,
|
|
9735
|
+
# leave GOP size blank and set GOP mode control to Auto in each output
|
|
9736
|
+
# in your output group.
|
|
9725
9737
|
# @return [Float]
|
|
9726
9738
|
#
|
|
9727
9739
|
# @!attribute [rw] gop_size_units
|
|
9728
|
-
#
|
|
9729
|
-
#
|
|
9730
|
-
#
|
|
9740
|
+
# Specify how the transcoder determines GOP size for this output. We
|
|
9741
|
+
# recommend that you have the transcoder automatically choose this
|
|
9742
|
+
# value for you based on characteristics of your input video. To
|
|
9743
|
+
# enable this automatic behavior, choose Auto (AUTO) and and leave GOP
|
|
9744
|
+
# size (GopSize) blank. By default, if you don't specify GOP mode
|
|
9745
|
+
# control (GopSizeUnits), MediaConvert will use automatic behavior. If
|
|
9746
|
+
# your output group specifies HLS, DASH, or CMAF, set GOP mode control
|
|
9747
|
+
# to Auto and leave GOP size blank in each output in your output
|
|
9748
|
+
# group. To explicitly specify the GOP length, choose Specified,
|
|
9749
|
+
# frames (FRAMES) or Specified, seconds (SECONDS) and then provide the
|
|
9750
|
+
# GOP length in the related setting GOP size (GopSize).
|
|
9731
9751
|
# @return [String]
|
|
9732
9752
|
#
|
|
9733
9753
|
# @!attribute [rw] hrd_buffer_initial_fill_percentage
|
|
@@ -9763,21 +9783,36 @@ module Aws::MediaConvert
|
|
|
9763
9783
|
# @return [Integer]
|
|
9764
9784
|
#
|
|
9765
9785
|
# @!attribute [rw] min_i_interval
|
|
9766
|
-
#
|
|
9767
|
-
#
|
|
9768
|
-
#
|
|
9769
|
-
# and
|
|
9770
|
-
#
|
|
9771
|
-
#
|
|
9772
|
-
#
|
|
9773
|
-
#
|
|
9786
|
+
# Use this setting only when you also enable Scene change detection
|
|
9787
|
+
# (SceneChangeDetect). This setting determines how the encoder manages
|
|
9788
|
+
# the spacing between I-frames that it inserts as part of the I-frame
|
|
9789
|
+
# cadence and the I-frames that it inserts for Scene change detection.
|
|
9790
|
+
# We recommend that you have the transcoder automatically choose this
|
|
9791
|
+
# value for you based on characteristics of your input video. To
|
|
9792
|
+
# enable this automatic behavior, keep the default value by leaving
|
|
9793
|
+
# this setting out of your JSON job specification. In the console, do
|
|
9794
|
+
# this by keeping the default empty value. When you explicitly specify
|
|
9795
|
+
# a value for this setting, the encoder determines whether to skip a
|
|
9796
|
+
# cadence-driven I-frame by the value you set. For example, if you set
|
|
9797
|
+
# Min I interval (minIInterval) to 5 and a cadence-driven I-frame
|
|
9798
|
+
# would fall within 5 frames of a scene-change I-frame, then the
|
|
9799
|
+
# encoder skips the cadence-driven I-frame. In this way, one GOP is
|
|
9800
|
+
# shrunk slightly and one GOP is stretched slightly. When the
|
|
9801
|
+
# cadence-driven I-frames are farther from the scene-change I-frame
|
|
9802
|
+
# than the value you set, then the encoder leaves all I-frames in
|
|
9803
|
+
# place and the GOPs surrounding the scene change are smaller than the
|
|
9804
|
+
# usual cadence GOPs.
|
|
9774
9805
|
# @return [Integer]
|
|
9775
9806
|
#
|
|
9776
9807
|
# @!attribute [rw] number_b_frames_between_reference_frames
|
|
9777
|
-
#
|
|
9778
|
-
# reference frames in this output.
|
|
9779
|
-
#
|
|
9780
|
-
#
|
|
9808
|
+
# This setting to determines the number of B-frames that MediaConvert
|
|
9809
|
+
# puts between reference frames in this output. We recommend that you
|
|
9810
|
+
# use automatic behavior to allow the transcoder to choose the best
|
|
9811
|
+
# value based on characteristics of your input video. In the console,
|
|
9812
|
+
# choose AUTO to select this automatic behavior. When you manually
|
|
9813
|
+
# edit your JSON job specification, leave this setting out to choose
|
|
9814
|
+
# automatic behavior. When you want to specify this number explicitly,
|
|
9815
|
+
# choose a whole number from 0 through 7.
|
|
9781
9816
|
# @return [Integer]
|
|
9782
9817
|
#
|
|
9783
9818
|
# @!attribute [rw] number_reference_frames
|
|
@@ -10103,7 +10138,7 @@ module Aws::MediaConvert
|
|
|
10103
10138
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
10104
10139
|
# gop_closed_cadence: 1,
|
|
10105
10140
|
# gop_size: 1.0,
|
|
10106
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
10141
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
10107
10142
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
10108
10143
|
# hrd_buffer_size: 1,
|
|
10109
10144
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -10244,21 +10279,42 @@ module Aws::MediaConvert
|
|
|
10244
10279
|
# @return [String]
|
|
10245
10280
|
#
|
|
10246
10281
|
# @!attribute [rw] gop_closed_cadence
|
|
10247
|
-
#
|
|
10248
|
-
#
|
|
10249
|
-
#
|
|
10250
|
-
#
|
|
10282
|
+
# Specify the relative frequency of open to closed GOPs in this
|
|
10283
|
+
# output. For example, if you want to allow four open GOPs and then
|
|
10284
|
+
# require a closed GOP, set this value to 5. We recommend that you
|
|
10285
|
+
# have the transcoder automatically choose this value for you based on
|
|
10286
|
+
# characteristics of your input video. To enable this automatic
|
|
10287
|
+
# behavior, keep the default value by leaving this setting out of your
|
|
10288
|
+
# JSON job specification. In the console, do this by keeping the
|
|
10289
|
+
# default empty value. If you do explicitly specify a value, for
|
|
10290
|
+
# segmented outputs, don't set this value to 0.
|
|
10251
10291
|
# @return [Integer]
|
|
10252
10292
|
#
|
|
10253
10293
|
# @!attribute [rw] gop_size
|
|
10254
|
-
#
|
|
10255
|
-
#
|
|
10294
|
+
# Use this setting only when you set GOP mode control (GopSizeUnits)
|
|
10295
|
+
# to Specified, frames (FRAMES) or Specified, seconds (SECONDS).
|
|
10296
|
+
# Specify the GOP length using a whole number of frames or a decimal
|
|
10297
|
+
# value of seconds. MediaConvert will interpret this value as frames
|
|
10298
|
+
# or seconds depending on the value you choose for GOP mode control
|
|
10299
|
+
# (GopSizeUnits). If you want to allow MediaConvert to automatically
|
|
10300
|
+
# determine GOP size, leave GOP size blank and set GOP mode control to
|
|
10301
|
+
# Auto (AUTO). If your output group specifies HLS, DASH, or CMAF,
|
|
10302
|
+
# leave GOP size blank and set GOP mode control to Auto in each output
|
|
10303
|
+
# in your output group.
|
|
10256
10304
|
# @return [Float]
|
|
10257
10305
|
#
|
|
10258
10306
|
# @!attribute [rw] gop_size_units
|
|
10259
|
-
#
|
|
10260
|
-
#
|
|
10261
|
-
#
|
|
10307
|
+
# Specify how the transcoder determines GOP size for this output. We
|
|
10308
|
+
# recommend that you have the transcoder automatically choose this
|
|
10309
|
+
# value for you based on characteristics of your input video. To
|
|
10310
|
+
# enable this automatic behavior, choose Auto (AUTO) and and leave GOP
|
|
10311
|
+
# size (GopSize) blank. By default, if you don't specify GOP mode
|
|
10312
|
+
# control (GopSizeUnits), MediaConvert will use automatic behavior. If
|
|
10313
|
+
# your output group specifies HLS, DASH, or CMAF, set GOP mode control
|
|
10314
|
+
# to Auto and leave GOP size blank in each output in your output
|
|
10315
|
+
# group. To explicitly specify the GOP length, choose Specified,
|
|
10316
|
+
# frames (FRAMES) or Specified, seconds (SECONDS) and then provide the
|
|
10317
|
+
# GOP length in the related setting GOP size (GopSize).
|
|
10262
10318
|
# @return [String]
|
|
10263
10319
|
#
|
|
10264
10320
|
# @!attribute [rw] hrd_buffer_initial_fill_percentage
|
|
@@ -10294,14 +10350,25 @@ module Aws::MediaConvert
|
|
|
10294
10350
|
# @return [Integer]
|
|
10295
10351
|
#
|
|
10296
10352
|
# @!attribute [rw] min_i_interval
|
|
10297
|
-
#
|
|
10298
|
-
#
|
|
10299
|
-
#
|
|
10300
|
-
# and
|
|
10301
|
-
#
|
|
10302
|
-
#
|
|
10303
|
-
#
|
|
10304
|
-
#
|
|
10353
|
+
# Use this setting only when you also enable Scene change detection
|
|
10354
|
+
# (SceneChangeDetect). This setting determines how the encoder manages
|
|
10355
|
+
# the spacing between I-frames that it inserts as part of the I-frame
|
|
10356
|
+
# cadence and the I-frames that it inserts for Scene change detection.
|
|
10357
|
+
# We recommend that you have the transcoder automatically choose this
|
|
10358
|
+
# value for you based on characteristics of your input video. To
|
|
10359
|
+
# enable this automatic behavior, keep the default value by leaving
|
|
10360
|
+
# this setting out of your JSON job specification. In the console, do
|
|
10361
|
+
# this by keeping the default empty value. When you explicitly specify
|
|
10362
|
+
# a value for this setting, the encoder determines whether to skip a
|
|
10363
|
+
# cadence-driven I-frame by the value you set. For example, if you set
|
|
10364
|
+
# Min I interval (minIInterval) to 5 and a cadence-driven I-frame
|
|
10365
|
+
# would fall within 5 frames of a scene-change I-frame, then the
|
|
10366
|
+
# encoder skips the cadence-driven I-frame. In this way, one GOP is
|
|
10367
|
+
# shrunk slightly and one GOP is stretched slightly. When the
|
|
10368
|
+
# cadence-driven I-frames are farther from the scene-change I-frame
|
|
10369
|
+
# than the value you set, then the encoder leaves all I-frames in
|
|
10370
|
+
# place and the GOPs surrounding the scene change are smaller than the
|
|
10371
|
+
# usual cadence GOPs.
|
|
10305
10372
|
# @return [Integer]
|
|
10306
10373
|
#
|
|
10307
10374
|
# @!attribute [rw] number_b_frames_between_reference_frames
|
|
@@ -13548,7 +13615,7 @@ module Aws::MediaConvert
|
|
|
13548
13615
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
13549
13616
|
# gop_closed_cadence: 1,
|
|
13550
13617
|
# gop_size: 1.0,
|
|
13551
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
13618
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
13552
13619
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
13553
13620
|
# hrd_buffer_size: 1,
|
|
13554
13621
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -13593,7 +13660,7 @@ module Aws::MediaConvert
|
|
|
13593
13660
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
13594
13661
|
# gop_closed_cadence: 1,
|
|
13595
13662
|
# gop_size: 1.0,
|
|
13596
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
13663
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
13597
13664
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
13598
13665
|
# hrd_buffer_size: 1,
|
|
13599
13666
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -14985,7 +15052,7 @@ module Aws::MediaConvert
|
|
|
14985
15052
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
14986
15053
|
# gop_closed_cadence: 1,
|
|
14987
15054
|
# gop_size: 1.0,
|
|
14988
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
15055
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
14989
15056
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
14990
15057
|
# hrd_buffer_size: 1,
|
|
14991
15058
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -15030,7 +15097,7 @@ module Aws::MediaConvert
|
|
|
15030
15097
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
15031
15098
|
# gop_closed_cadence: 1,
|
|
15032
15099
|
# gop_size: 1.0,
|
|
15033
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
15100
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
15034
15101
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
15035
15102
|
# hrd_buffer_size: 1,
|
|
15036
15103
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -17073,10 +17140,13 @@ module Aws::MediaConvert
|
|
|
17073
17140
|
# @return [Integer]
|
|
17074
17141
|
#
|
|
17075
17142
|
# @!attribute [rw] gop_closed_cadence
|
|
17076
|
-
#
|
|
17077
|
-
#
|
|
17078
|
-
#
|
|
17079
|
-
#
|
|
17143
|
+
# Specify the relative frequency of open to closed GOPs in this
|
|
17144
|
+
# output. For example, if you want to allow four open GOPs and then
|
|
17145
|
+
# require a closed GOP, set this value to 5. When you create a
|
|
17146
|
+
# streaming output, we recommend that you keep the default value, 1,
|
|
17147
|
+
# so that players starting mid-stream receive an IDR frame as quickly
|
|
17148
|
+
# as possible. Don't set this value to 0; that would break output
|
|
17149
|
+
# segmenting.
|
|
17080
17150
|
# @return [Integer]
|
|
17081
17151
|
#
|
|
17082
17152
|
# @!attribute [rw] gop_size
|
|
@@ -17132,14 +17202,20 @@ module Aws::MediaConvert
|
|
|
17132
17202
|
# @return [Integer]
|
|
17133
17203
|
#
|
|
17134
17204
|
# @!attribute [rw] min_i_interval
|
|
17135
|
-
#
|
|
17136
|
-
#
|
|
17137
|
-
#
|
|
17138
|
-
# and
|
|
17139
|
-
#
|
|
17140
|
-
#
|
|
17141
|
-
#
|
|
17142
|
-
#
|
|
17205
|
+
# Use this setting only when you also enable Scene change detection
|
|
17206
|
+
# (SceneChangeDetect). This setting determines how the encoder manages
|
|
17207
|
+
# the spacing between I-frames that it inserts as part of the I-frame
|
|
17208
|
+
# cadence and the I-frames that it inserts for Scene change detection.
|
|
17209
|
+
# When you specify a value for this setting, the encoder determines
|
|
17210
|
+
# whether to skip a cadence-driven I-frame by the value you set. For
|
|
17211
|
+
# example, if you set Min I interval (minIInterval) to 5 and a
|
|
17212
|
+
# cadence-driven I-frame would fall within 5 frames of a scene-change
|
|
17213
|
+
# I-frame, then the encoder skips the cadence-driven I-frame. In this
|
|
17214
|
+
# way, one GOP is shrunk slightly and one GOP is stretched slightly.
|
|
17215
|
+
# When the cadence-driven I-frames are farther from the scene-change
|
|
17216
|
+
# I-frame than the value you set, then the encoder leaves all I-frames
|
|
17217
|
+
# in place and the GOPs surrounding the scene change are smaller than
|
|
17218
|
+
# the usual cadence GOPs.
|
|
17143
17219
|
# @return [Integer]
|
|
17144
17220
|
#
|
|
17145
17221
|
# @!attribute [rw] number_b_frames_between_reference_frames
|
|
@@ -18484,7 +18560,7 @@ module Aws::MediaConvert
|
|
|
18484
18560
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
18485
18561
|
# gop_closed_cadence: 1,
|
|
18486
18562
|
# gop_size: 1.0,
|
|
18487
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
18563
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
18488
18564
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
18489
18565
|
# hrd_buffer_size: 1,
|
|
18490
18566
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -18529,7 +18605,7 @@ module Aws::MediaConvert
|
|
|
18529
18605
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
18530
18606
|
# gop_closed_cadence: 1,
|
|
18531
18607
|
# gop_size: 1.0,
|
|
18532
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
18608
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
18533
18609
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
18534
18610
|
# hrd_buffer_size: 1,
|
|
18535
18611
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -19605,7 +19681,7 @@ module Aws::MediaConvert
|
|
|
19605
19681
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
19606
19682
|
# gop_closed_cadence: 1,
|
|
19607
19683
|
# gop_size: 1.0,
|
|
19608
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
19684
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
19609
19685
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
19610
19686
|
# hrd_buffer_size: 1,
|
|
19611
19687
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -19650,7 +19726,7 @@ module Aws::MediaConvert
|
|
|
19650
19726
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
19651
19727
|
# gop_closed_cadence: 1,
|
|
19652
19728
|
# gop_size: 1.0,
|
|
19653
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
19729
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
19654
19730
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
19655
19731
|
# hrd_buffer_size: 1,
|
|
19656
19732
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -20851,7 +20927,7 @@ module Aws::MediaConvert
|
|
|
20851
20927
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
20852
20928
|
# gop_closed_cadence: 1,
|
|
20853
20929
|
# gop_size: 1.0,
|
|
20854
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
20930
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
20855
20931
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
20856
20932
|
# hrd_buffer_size: 1,
|
|
20857
20933
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -20896,7 +20972,7 @@ module Aws::MediaConvert
|
|
|
20896
20972
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
20897
20973
|
# gop_closed_cadence: 1,
|
|
20898
20974
|
# gop_size: 1.0,
|
|
20899
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
20975
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
20900
20976
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
20901
20977
|
# hrd_buffer_size: 1,
|
|
20902
20978
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -23423,7 +23499,7 @@ module Aws::MediaConvert
|
|
|
23423
23499
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
23424
23500
|
# gop_closed_cadence: 1,
|
|
23425
23501
|
# gop_size: 1.0,
|
|
23426
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
23502
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
23427
23503
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
23428
23504
|
# hrd_buffer_size: 1,
|
|
23429
23505
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -23468,7 +23544,7 @@ module Aws::MediaConvert
|
|
|
23468
23544
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
23469
23545
|
# gop_closed_cadence: 1,
|
|
23470
23546
|
# gop_size: 1.0,
|
|
23471
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
23547
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
23472
23548
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
23473
23549
|
# hrd_buffer_size: 1,
|
|
23474
23550
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -24255,7 +24331,7 @@ module Aws::MediaConvert
|
|
|
24255
24331
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
24256
24332
|
# gop_closed_cadence: 1,
|
|
24257
24333
|
# gop_size: 1.0,
|
|
24258
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
24334
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
24259
24335
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
24260
24336
|
# hrd_buffer_size: 1,
|
|
24261
24337
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -24300,7 +24376,7 @@ module Aws::MediaConvert
|
|
|
24300
24376
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
24301
24377
|
# gop_closed_cadence: 1,
|
|
24302
24378
|
# gop_size: 1.0,
|
|
24303
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
24379
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
24304
24380
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
24305
24381
|
# hrd_buffer_size: 1,
|
|
24306
24382
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -24900,7 +24976,7 @@ module Aws::MediaConvert
|
|
|
24900
24976
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
24901
24977
|
# gop_closed_cadence: 1,
|
|
24902
24978
|
# gop_size: 1.0,
|
|
24903
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
24979
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
24904
24980
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
24905
24981
|
# hrd_buffer_size: 1,
|
|
24906
24982
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -24945,7 +25021,7 @@ module Aws::MediaConvert
|
|
|
24945
25021
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
24946
25022
|
# gop_closed_cadence: 1,
|
|
24947
25023
|
# gop_size: 1.0,
|
|
24948
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
25024
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
24949
25025
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
24950
25026
|
# hrd_buffer_size: 1,
|
|
24951
25027
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -25259,7 +25335,7 @@ module Aws::MediaConvert
|
|
|
25259
25335
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
25260
25336
|
# gop_closed_cadence: 1,
|
|
25261
25337
|
# gop_size: 1.0,
|
|
25262
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
25338
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
25263
25339
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
25264
25340
|
# hrd_buffer_size: 1,
|
|
25265
25341
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
@@ -25304,7 +25380,7 @@ module Aws::MediaConvert
|
|
|
25304
25380
|
# gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
|
|
25305
25381
|
# gop_closed_cadence: 1,
|
|
25306
25382
|
# gop_size: 1.0,
|
|
25307
|
-
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
|
25383
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
|
|
25308
25384
|
# hrd_buffer_initial_fill_percentage: 1,
|
|
25309
25385
|
# hrd_buffer_size: 1,
|
|
25310
25386
|
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
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.82.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-
|
|
11
|
+
date: 2021-12-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.125.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.125.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|