aws-sdk-mediaconvert 1.92.0 → 1.93.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: 15093a143915469caf9396882674eeab53c4f326620b021cce3a09e2e209a40d
4
- data.tar.gz: 888634bf9618d860b5397aff7096004ed3652443fc79eb0d01c9a23e436f65c5
3
+ metadata.gz: 1f387d315d585cbb595aa375afbf05e9fabd77846cf10df5ef49edc9975f024b
4
+ data.tar.gz: 9b94a76a16fd5f4eb8863e4d07ae076cd451f3c401c9466c39ebce9cc465915e
5
5
  SHA512:
6
- metadata.gz: 86166521157344b741c8d033750ff94c1b2ee9c3d6cd603a188af1565fd7eebdc11b6c66b097838b3784846a98e55baff0ef625030780b52596cda3205d2b8f1
7
- data.tar.gz: 01ee91b0f02d7fc67b8eca2402628397edd31b7d339d8bce1b559ef8d77af2cd2fd1a599d74737291b515f4b41afdb5a6d31ce325c6b4cbc76f9e532238d418f
6
+ metadata.gz: 87e221d49aa850370d8fa2fdad8bf9eed3be56e6afe295ecde850ac8be8ab0956ce40cb57d6d07b940571ddb80a266df71f65443122d252638ff073173931ea4
7
+ data.tar.gz: 6e700e777ec68feb2eabcfb94104ac772636a1e082b9646c47d47d3f2adab2e533a01c0e5b37e06932c44d73b29f2d389f9e5bc703fc8c1278cacb37a5460473
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.93.0 (2022-10-14)
5
+ ------------------
6
+
7
+ * Feature - MediaConvert now supports specifying the minimum percentage of the HRD buffer available at the end of each encoded video segment.
8
+
4
9
  1.92.0 (2022-06-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.92.0
1
+ 1.93.0
@@ -1441,6 +1441,7 @@ module Aws::MediaConvert
1441
1441
  # gop_closed_cadence: 1,
1442
1442
  # gop_size: 1.0,
1443
1443
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
1444
+ # hrd_buffer_final_fill_percentage: 1,
1444
1445
  # hrd_buffer_initial_fill_percentage: 1,
1445
1446
  # hrd_buffer_size: 1,
1446
1447
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -1486,6 +1487,7 @@ module Aws::MediaConvert
1486
1487
  # gop_closed_cadence: 1,
1487
1488
  # gop_size: 1.0,
1488
1489
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
1490
+ # hrd_buffer_final_fill_percentage: 1,
1489
1491
  # hrd_buffer_initial_fill_percentage: 1,
1490
1492
  # hrd_buffer_size: 1,
1491
1493
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -1529,6 +1531,7 @@ module Aws::MediaConvert
1529
1531
  # gop_closed_cadence: 1,
1530
1532
  # gop_size: 1.0,
1531
1533
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
1534
+ # hrd_buffer_final_fill_percentage: 1,
1532
1535
  # hrd_buffer_initial_fill_percentage: 1,
1533
1536
  # hrd_buffer_size: 1,
1534
1537
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -2489,6 +2492,7 @@ module Aws::MediaConvert
2489
2492
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
2490
2493
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
2491
2494
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
2495
+ # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
2492
2496
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
2493
2497
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
2494
2498
  # 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"
@@ -2530,6 +2534,7 @@ module Aws::MediaConvert
2530
2534
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
2531
2535
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
2532
2536
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
2537
+ # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
2533
2538
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
2534
2539
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
2535
2540
  # 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"
@@ -2569,6 +2574,7 @@ module Aws::MediaConvert
2569
2574
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
2570
2575
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
2571
2576
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
2577
+ # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
2572
2578
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
2573
2579
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
2574
2580
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -3770,6 +3776,7 @@ module Aws::MediaConvert
3770
3776
  # gop_closed_cadence: 1,
3771
3777
  # gop_size: 1.0,
3772
3778
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
3779
+ # hrd_buffer_final_fill_percentage: 1,
3773
3780
  # hrd_buffer_initial_fill_percentage: 1,
3774
3781
  # hrd_buffer_size: 1,
3775
3782
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -3815,6 +3822,7 @@ module Aws::MediaConvert
3815
3822
  # gop_closed_cadence: 1,
3816
3823
  # gop_size: 1.0,
3817
3824
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
3825
+ # hrd_buffer_final_fill_percentage: 1,
3818
3826
  # hrd_buffer_initial_fill_percentage: 1,
3819
3827
  # hrd_buffer_size: 1,
3820
3828
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -3858,6 +3866,7 @@ module Aws::MediaConvert
3858
3866
  # gop_closed_cadence: 1,
3859
3867
  # gop_size: 1.0,
3860
3868
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
3869
+ # hrd_buffer_final_fill_percentage: 1,
3861
3870
  # hrd_buffer_initial_fill_percentage: 1,
3862
3871
  # hrd_buffer_size: 1,
3863
3872
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -4787,6 +4796,7 @@ module Aws::MediaConvert
4787
4796
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
4788
4797
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
4789
4798
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
4799
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
4790
4800
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
4791
4801
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
4792
4802
  # 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"
@@ -4828,6 +4838,7 @@ module Aws::MediaConvert
4828
4838
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
4829
4839
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
4830
4840
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
4841
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
4831
4842
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
4832
4843
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
4833
4844
  # 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"
@@ -4867,6 +4878,7 @@ module Aws::MediaConvert
4867
4878
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
4868
4879
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
4869
4880
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
4881
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
4870
4882
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
4871
4883
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
4872
4884
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -5497,6 +5509,7 @@ module Aws::MediaConvert
5497
5509
  # gop_closed_cadence: 1,
5498
5510
  # gop_size: 1.0,
5499
5511
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
5512
+ # hrd_buffer_final_fill_percentage: 1,
5500
5513
  # hrd_buffer_initial_fill_percentage: 1,
5501
5514
  # hrd_buffer_size: 1,
5502
5515
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -5542,6 +5555,7 @@ module Aws::MediaConvert
5542
5555
  # gop_closed_cadence: 1,
5543
5556
  # gop_size: 1.0,
5544
5557
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
5558
+ # hrd_buffer_final_fill_percentage: 1,
5545
5559
  # hrd_buffer_initial_fill_percentage: 1,
5546
5560
  # hrd_buffer_size: 1,
5547
5561
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -5585,6 +5599,7 @@ module Aws::MediaConvert
5585
5599
  # gop_closed_cadence: 1,
5586
5600
  # gop_size: 1.0,
5587
5601
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
5602
+ # hrd_buffer_final_fill_percentage: 1,
5588
5603
  # hrd_buffer_initial_fill_percentage: 1,
5589
5604
  # hrd_buffer_size: 1,
5590
5605
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -6145,6 +6160,7 @@ module Aws::MediaConvert
6145
6160
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
6146
6161
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_size #=> Float
6147
6162
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
6163
+ # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
6148
6164
  # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
6149
6165
  # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
6150
6166
  # 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"
@@ -6186,6 +6202,7 @@ module Aws::MediaConvert
6186
6202
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
6187
6203
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_size #=> Float
6188
6204
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
6205
+ # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
6189
6206
  # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
6190
6207
  # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
6191
6208
  # 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"
@@ -6225,6 +6242,7 @@ module Aws::MediaConvert
6225
6242
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
6226
6243
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
6227
6244
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
6245
+ # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
6228
6246
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
6229
6247
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
6230
6248
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -7353,6 +7371,7 @@ module Aws::MediaConvert
7353
7371
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
7354
7372
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
7355
7373
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
7374
+ # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
7356
7375
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
7357
7376
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
7358
7377
  # 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"
@@ -7394,6 +7413,7 @@ module Aws::MediaConvert
7394
7413
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
7395
7414
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
7396
7415
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
7416
+ # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
7397
7417
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
7398
7418
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
7399
7419
  # 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"
@@ -7433,6 +7453,7 @@ module Aws::MediaConvert
7433
7453
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
7434
7454
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
7435
7455
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
7456
+ # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
7436
7457
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
7437
7458
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
7438
7459
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -8317,6 +8338,7 @@ module Aws::MediaConvert
8317
8338
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
8318
8339
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
8319
8340
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
8341
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
8320
8342
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
8321
8343
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
8322
8344
  # 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"
@@ -8358,6 +8380,7 @@ module Aws::MediaConvert
8358
8380
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
8359
8381
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
8360
8382
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
8383
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
8361
8384
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
8362
8385
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
8363
8386
  # 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"
@@ -8397,6 +8420,7 @@ module Aws::MediaConvert
8397
8420
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
8398
8421
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
8399
8422
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
8423
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
8400
8424
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
8401
8425
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
8402
8426
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -8946,6 +8970,7 @@ module Aws::MediaConvert
8946
8970
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
8947
8971
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_size #=> Float
8948
8972
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
8973
+ # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
8949
8974
  # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
8950
8975
  # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
8951
8976
  # 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"
@@ -8987,6 +9012,7 @@ module Aws::MediaConvert
8987
9012
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
8988
9013
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_size #=> Float
8989
9014
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
9015
+ # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
8990
9016
  # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
8991
9017
  # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
8992
9018
  # 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"
@@ -9026,6 +9052,7 @@ module Aws::MediaConvert
9026
9052
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
9027
9053
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
9028
9054
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
9055
+ # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
9029
9056
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
9030
9057
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
9031
9058
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -9969,6 +9996,7 @@ module Aws::MediaConvert
9969
9996
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
9970
9997
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
9971
9998
  # 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"
9999
+ # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
9972
10000
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
9973
10001
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
9974
10002
  # 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"
@@ -10010,6 +10038,7 @@ module Aws::MediaConvert
10010
10038
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
10011
10039
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
10012
10040
  # 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"
10041
+ # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
10013
10042
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
10014
10043
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
10015
10044
  # 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"
@@ -10049,6 +10078,7 @@ module Aws::MediaConvert
10049
10078
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
10050
10079
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
10051
10080
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
10081
+ # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
10052
10082
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
10053
10083
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
10054
10084
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -10984,6 +11014,7 @@ module Aws::MediaConvert
10984
11014
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
10985
11015
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
10986
11016
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
11017
+ # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
10987
11018
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
10988
11019
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
10989
11020
  # 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"
@@ -11025,6 +11056,7 @@ module Aws::MediaConvert
11025
11056
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
11026
11057
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
11027
11058
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
11059
+ # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
11028
11060
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
11029
11061
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
11030
11062
  # 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"
@@ -11064,6 +11096,7 @@ module Aws::MediaConvert
11064
11096
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
11065
11097
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
11066
11098
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
11099
+ # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
11067
11100
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
11068
11101
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
11069
11102
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -11630,6 +11663,7 @@ module Aws::MediaConvert
11630
11663
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
11631
11664
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.gop_size #=> Float
11632
11665
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
11666
+ # resp.presets[0].settings.video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
11633
11667
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
11634
11668
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
11635
11669
  # 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"
@@ -11671,6 +11705,7 @@ module Aws::MediaConvert
11671
11705
  # resp.presets[0].settings.video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
11672
11706
  # resp.presets[0].settings.video_description.codec_settings.h265_settings.gop_size #=> Float
11673
11707
  # resp.presets[0].settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
11708
+ # resp.presets[0].settings.video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
11674
11709
  # resp.presets[0].settings.video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
11675
11710
  # resp.presets[0].settings.video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
11676
11711
  # 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"
@@ -11710,6 +11745,7 @@ module Aws::MediaConvert
11710
11745
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
11711
11746
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
11712
11747
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
11748
+ # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
11713
11749
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
11714
11750
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
11715
11751
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -13085,6 +13121,7 @@ module Aws::MediaConvert
13085
13121
  # gop_closed_cadence: 1,
13086
13122
  # gop_size: 1.0,
13087
13123
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
13124
+ # hrd_buffer_final_fill_percentage: 1,
13088
13125
  # hrd_buffer_initial_fill_percentage: 1,
13089
13126
  # hrd_buffer_size: 1,
13090
13127
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -13130,6 +13167,7 @@ module Aws::MediaConvert
13130
13167
  # gop_closed_cadence: 1,
13131
13168
  # gop_size: 1.0,
13132
13169
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
13170
+ # hrd_buffer_final_fill_percentage: 1,
13133
13171
  # hrd_buffer_initial_fill_percentage: 1,
13134
13172
  # hrd_buffer_size: 1,
13135
13173
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -13173,6 +13211,7 @@ module Aws::MediaConvert
13173
13211
  # gop_closed_cadence: 1,
13174
13212
  # gop_size: 1.0,
13175
13213
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
13214
+ # hrd_buffer_final_fill_percentage: 1,
13176
13215
  # hrd_buffer_initial_fill_percentage: 1,
13177
13216
  # hrd_buffer_size: 1,
13178
13217
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -14099,6 +14138,7 @@ module Aws::MediaConvert
14099
14138
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
14100
14139
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
14101
14140
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
14141
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
14102
14142
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
14103
14143
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
14104
14144
  # 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"
@@ -14140,6 +14180,7 @@ module Aws::MediaConvert
14140
14180
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
14141
14181
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
14142
14182
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
14183
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
14143
14184
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
14144
14185
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
14145
14186
  # 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"
@@ -14179,6 +14220,7 @@ module Aws::MediaConvert
14179
14220
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
14180
14221
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
14181
14222
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
14223
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
14182
14224
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
14183
14225
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
14184
14226
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -14803,6 +14845,7 @@ module Aws::MediaConvert
14803
14845
  # gop_closed_cadence: 1,
14804
14846
  # gop_size: 1.0,
14805
14847
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
14848
+ # hrd_buffer_final_fill_percentage: 1,
14806
14849
  # hrd_buffer_initial_fill_percentage: 1,
14807
14850
  # hrd_buffer_size: 1,
14808
14851
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -14848,6 +14891,7 @@ module Aws::MediaConvert
14848
14891
  # gop_closed_cadence: 1,
14849
14892
  # gop_size: 1.0,
14850
14893
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
14894
+ # hrd_buffer_final_fill_percentage: 1,
14851
14895
  # hrd_buffer_initial_fill_percentage: 1,
14852
14896
  # hrd_buffer_size: 1,
14853
14897
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -14891,6 +14935,7 @@ module Aws::MediaConvert
14891
14935
  # gop_closed_cadence: 1,
14892
14936
  # gop_size: 1.0,
14893
14937
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
14938
+ # hrd_buffer_final_fill_percentage: 1,
14894
14939
  # hrd_buffer_initial_fill_percentage: 1,
14895
14940
  # hrd_buffer_size: 1,
14896
14941
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -15448,6 +15493,7 @@ module Aws::MediaConvert
15448
15493
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
15449
15494
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_size #=> Float
15450
15495
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
15496
+ # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
15451
15497
  # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
15452
15498
  # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
15453
15499
  # 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"
@@ -15489,6 +15535,7 @@ module Aws::MediaConvert
15489
15535
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
15490
15536
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_size #=> Float
15491
15537
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
15538
+ # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
15492
15539
  # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
15493
15540
  # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
15494
15541
  # 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"
@@ -15528,6 +15575,7 @@ module Aws::MediaConvert
15528
15575
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
15529
15576
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
15530
15577
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
15578
+ # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
15531
15579
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
15532
15580
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
15533
15581
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -15792,7 +15840,7 @@ module Aws::MediaConvert
15792
15840
  params: params,
15793
15841
  config: config)
15794
15842
  context[:gem_name] = 'aws-sdk-mediaconvert'
15795
- context[:gem_version] = '1.92.0'
15843
+ context[:gem_version] = '1.93.0'
15796
15844
  Seahorse::Client::Request.new(handlers, context)
15797
15845
  end
15798
15846
 
@@ -1483,6 +1483,7 @@ module Aws::MediaConvert
1483
1483
  H264Settings.add_member(:gop_closed_cadence, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "gopClosedCadence"))
1484
1484
  H264Settings.add_member(:gop_size, Shapes::ShapeRef.new(shape: __doubleMin0, location_name: "gopSize"))
1485
1485
  H264Settings.add_member(:gop_size_units, Shapes::ShapeRef.new(shape: H264GopSizeUnits, location_name: "gopSizeUnits"))
1486
+ H264Settings.add_member(:hrd_buffer_final_fill_percentage, Shapes::ShapeRef.new(shape: __integerMin0Max100, location_name: "hrdBufferFinalFillPercentage"))
1486
1487
  H264Settings.add_member(:hrd_buffer_initial_fill_percentage, Shapes::ShapeRef.new(shape: __integerMin0Max100, location_name: "hrdBufferInitialFillPercentage"))
1487
1488
  H264Settings.add_member(:hrd_buffer_size, Shapes::ShapeRef.new(shape: __integerMin0Max1152000000, location_name: "hrdBufferSize"))
1488
1489
  H264Settings.add_member(:interlace_mode, Shapes::ShapeRef.new(shape: H264InterlaceMode, location_name: "interlaceMode"))
@@ -1529,6 +1530,7 @@ module Aws::MediaConvert
1529
1530
  H265Settings.add_member(:gop_closed_cadence, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "gopClosedCadence"))
1530
1531
  H265Settings.add_member(:gop_size, Shapes::ShapeRef.new(shape: __doubleMin0, location_name: "gopSize"))
1531
1532
  H265Settings.add_member(:gop_size_units, Shapes::ShapeRef.new(shape: H265GopSizeUnits, location_name: "gopSizeUnits"))
1533
+ H265Settings.add_member(:hrd_buffer_final_fill_percentage, Shapes::ShapeRef.new(shape: __integerMin0Max100, location_name: "hrdBufferFinalFillPercentage"))
1532
1534
  H265Settings.add_member(:hrd_buffer_initial_fill_percentage, Shapes::ShapeRef.new(shape: __integerMin0Max100, location_name: "hrdBufferInitialFillPercentage"))
1533
1535
  H265Settings.add_member(:hrd_buffer_size, Shapes::ShapeRef.new(shape: __integerMin0Max1466400000, location_name: "hrdBufferSize"))
1534
1536
  H265Settings.add_member(:interlace_mode, Shapes::ShapeRef.new(shape: H265InterlaceMode, location_name: "interlaceMode"))
@@ -2012,6 +2014,7 @@ module Aws::MediaConvert
2012
2014
  Mpeg2Settings.add_member(:gop_closed_cadence, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "gopClosedCadence"))
2013
2015
  Mpeg2Settings.add_member(:gop_size, Shapes::ShapeRef.new(shape: __doubleMin0, location_name: "gopSize"))
2014
2016
  Mpeg2Settings.add_member(:gop_size_units, Shapes::ShapeRef.new(shape: Mpeg2GopSizeUnits, location_name: "gopSizeUnits"))
2017
+ Mpeg2Settings.add_member(:hrd_buffer_final_fill_percentage, Shapes::ShapeRef.new(shape: __integerMin0Max100, location_name: "hrdBufferFinalFillPercentage"))
2015
2018
  Mpeg2Settings.add_member(:hrd_buffer_initial_fill_percentage, Shapes::ShapeRef.new(shape: __integerMin0Max100, location_name: "hrdBufferInitialFillPercentage"))
2016
2019
  Mpeg2Settings.add_member(:hrd_buffer_size, Shapes::ShapeRef.new(shape: __integerMin0Max47185920, location_name: "hrdBufferSize"))
2017
2020
  Mpeg2Settings.add_member(:interlace_mode, Shapes::ShapeRef.new(shape: Mpeg2InterlaceMode, location_name: "interlaceMode"))
@@ -4807,6 +4807,7 @@ module Aws::MediaConvert
4807
4807
  # gop_closed_cadence: 1,
4808
4808
  # gop_size: 1.0,
4809
4809
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
4810
+ # hrd_buffer_final_fill_percentage: 1,
4810
4811
  # hrd_buffer_initial_fill_percentage: 1,
4811
4812
  # hrd_buffer_size: 1,
4812
4813
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -4852,6 +4853,7 @@ module Aws::MediaConvert
4852
4853
  # gop_closed_cadence: 1,
4853
4854
  # gop_size: 1.0,
4854
4855
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
4856
+ # hrd_buffer_final_fill_percentage: 1,
4855
4857
  # hrd_buffer_initial_fill_percentage: 1,
4856
4858
  # hrd_buffer_size: 1,
4857
4859
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -4895,6 +4897,7 @@ module Aws::MediaConvert
4895
4897
  # gop_closed_cadence: 1,
4896
4898
  # gop_size: 1.0,
4897
4899
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
4900
+ # hrd_buffer_final_fill_percentage: 1,
4898
4901
  # hrd_buffer_initial_fill_percentage: 1,
4899
4902
  # hrd_buffer_size: 1,
4900
4903
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -6235,6 +6238,7 @@ module Aws::MediaConvert
6235
6238
  # gop_closed_cadence: 1,
6236
6239
  # gop_size: 1.0,
6237
6240
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
6241
+ # hrd_buffer_final_fill_percentage: 1,
6238
6242
  # hrd_buffer_initial_fill_percentage: 1,
6239
6243
  # hrd_buffer_size: 1,
6240
6244
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -6280,6 +6284,7 @@ module Aws::MediaConvert
6280
6284
  # gop_closed_cadence: 1,
6281
6285
  # gop_size: 1.0,
6282
6286
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
6287
+ # hrd_buffer_final_fill_percentage: 1,
6283
6288
  # hrd_buffer_initial_fill_percentage: 1,
6284
6289
  # hrd_buffer_size: 1,
6285
6290
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -6323,6 +6328,7 @@ module Aws::MediaConvert
6323
6328
  # gop_closed_cadence: 1,
6324
6329
  # gop_size: 1.0,
6325
6330
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
6331
+ # hrd_buffer_final_fill_percentage: 1,
6326
6332
  # hrd_buffer_initial_fill_percentage: 1,
6327
6333
  # hrd_buffer_size: 1,
6328
6334
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -7090,6 +7096,7 @@ module Aws::MediaConvert
7090
7096
  # gop_closed_cadence: 1,
7091
7097
  # gop_size: 1.0,
7092
7098
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
7099
+ # hrd_buffer_final_fill_percentage: 1,
7093
7100
  # hrd_buffer_initial_fill_percentage: 1,
7094
7101
  # hrd_buffer_size: 1,
7095
7102
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -7135,6 +7142,7 @@ module Aws::MediaConvert
7135
7142
  # gop_closed_cadence: 1,
7136
7143
  # gop_size: 1.0,
7137
7144
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
7145
+ # hrd_buffer_final_fill_percentage: 1,
7138
7146
  # hrd_buffer_initial_fill_percentage: 1,
7139
7147
  # hrd_buffer_size: 1,
7140
7148
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -7178,6 +7186,7 @@ module Aws::MediaConvert
7178
7186
  # gop_closed_cadence: 1,
7179
7187
  # gop_size: 1.0,
7180
7188
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
7189
+ # hrd_buffer_final_fill_percentage: 1,
7181
7190
  # hrd_buffer_initial_fill_percentage: 1,
7182
7191
  # hrd_buffer_size: 1,
7183
7192
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -9985,6 +9994,7 @@ module Aws::MediaConvert
9985
9994
  # gop_closed_cadence: 1,
9986
9995
  # gop_size: 1.0,
9987
9996
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
9997
+ # hrd_buffer_final_fill_percentage: 1,
9988
9998
  # hrd_buffer_initial_fill_percentage: 1,
9989
9999
  # hrd_buffer_size: 1,
9990
10000
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -10184,6 +10194,14 @@ module Aws::MediaConvert
10184
10194
  # GOP length in the related setting GOP size (GopSize).
10185
10195
  # @return [String]
10186
10196
  #
10197
+ # @!attribute [rw] hrd_buffer_final_fill_percentage
10198
+ # If your downstream systems have strict buffer requirements: Specify
10199
+ # the minimum percentage of the HRD buffer that's available at the
10200
+ # end of each encoded video segment. For the best video quality: Set
10201
+ # to 0 or leave blank to automatically determine the final buffer fill
10202
+ # percentage.
10203
+ # @return [Integer]
10204
+ #
10187
10205
  # @!attribute [rw] hrd_buffer_initial_fill_percentage
10188
10206
  # Percentage of the buffer that should initially be filled (HRD buffer
10189
10207
  # model).
@@ -10463,6 +10481,7 @@ module Aws::MediaConvert
10463
10481
  :gop_closed_cadence,
10464
10482
  :gop_size,
10465
10483
  :gop_size_units,
10484
+ :hrd_buffer_final_fill_percentage,
10466
10485
  :hrd_buffer_initial_fill_percentage,
10467
10486
  :hrd_buffer_size,
10468
10487
  :interlace_mode,
@@ -10573,6 +10592,7 @@ module Aws::MediaConvert
10573
10592
  # gop_closed_cadence: 1,
10574
10593
  # gop_size: 1.0,
10575
10594
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
10595
+ # hrd_buffer_final_fill_percentage: 1,
10576
10596
  # hrd_buffer_initial_fill_percentage: 1,
10577
10597
  # hrd_buffer_size: 1,
10578
10598
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -10756,6 +10776,14 @@ module Aws::MediaConvert
10756
10776
  # GOP length in the related setting GOP size (GopSize).
10757
10777
  # @return [String]
10758
10778
  #
10779
+ # @!attribute [rw] hrd_buffer_final_fill_percentage
10780
+ # If your downstream systems have strict buffer requirements: Specify
10781
+ # the minimum percentage of the HRD buffer that's available at the
10782
+ # end of each encoded video segment. For the best video quality: Set
10783
+ # to 0 or leave blank to automatically determine the final buffer fill
10784
+ # percentage.
10785
+ # @return [Integer]
10786
+ #
10759
10787
  # @!attribute [rw] hrd_buffer_initial_fill_percentage
10760
10788
  # Percentage of the buffer that should initially be filled (HRD buffer
10761
10789
  # model).
@@ -11023,6 +11051,7 @@ module Aws::MediaConvert
11023
11051
  :gop_closed_cadence,
11024
11052
  :gop_size,
11025
11053
  :gop_size_units,
11054
+ :hrd_buffer_final_fill_percentage,
11026
11055
  :hrd_buffer_initial_fill_percentage,
11027
11056
  :hrd_buffer_size,
11028
11057
  :interlace_mode,
@@ -14213,6 +14242,7 @@ module Aws::MediaConvert
14213
14242
  # gop_closed_cadence: 1,
14214
14243
  # gop_size: 1.0,
14215
14244
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
14245
+ # hrd_buffer_final_fill_percentage: 1,
14216
14246
  # hrd_buffer_initial_fill_percentage: 1,
14217
14247
  # hrd_buffer_size: 1,
14218
14248
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -14258,6 +14288,7 @@ module Aws::MediaConvert
14258
14288
  # gop_closed_cadence: 1,
14259
14289
  # gop_size: 1.0,
14260
14290
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
14291
+ # hrd_buffer_final_fill_percentage: 1,
14261
14292
  # hrd_buffer_initial_fill_percentage: 1,
14262
14293
  # hrd_buffer_size: 1,
14263
14294
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -14301,6 +14332,7 @@ module Aws::MediaConvert
14301
14332
  # gop_closed_cadence: 1,
14302
14333
  # gop_size: 1.0,
14303
14334
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
14335
+ # hrd_buffer_final_fill_percentage: 1,
14304
14336
  # hrd_buffer_initial_fill_percentage: 1,
14305
14337
  # hrd_buffer_size: 1,
14306
14338
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -15691,6 +15723,7 @@ module Aws::MediaConvert
15691
15723
  # gop_closed_cadence: 1,
15692
15724
  # gop_size: 1.0,
15693
15725
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
15726
+ # hrd_buffer_final_fill_percentage: 1,
15694
15727
  # hrd_buffer_initial_fill_percentage: 1,
15695
15728
  # hrd_buffer_size: 1,
15696
15729
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -15736,6 +15769,7 @@ module Aws::MediaConvert
15736
15769
  # gop_closed_cadence: 1,
15737
15770
  # gop_size: 1.0,
15738
15771
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
15772
+ # hrd_buffer_final_fill_percentage: 1,
15739
15773
  # hrd_buffer_initial_fill_percentage: 1,
15740
15774
  # hrd_buffer_size: 1,
15741
15775
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -15779,6 +15813,7 @@ module Aws::MediaConvert
15779
15813
  # gop_closed_cadence: 1,
15780
15814
  # gop_size: 1.0,
15781
15815
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
15816
+ # hrd_buffer_final_fill_percentage: 1,
15782
15817
  # hrd_buffer_initial_fill_percentage: 1,
15783
15818
  # hrd_buffer_size: 1,
15784
15819
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -17777,6 +17812,7 @@ module Aws::MediaConvert
17777
17812
  # gop_closed_cadence: 1,
17778
17813
  # gop_size: 1.0,
17779
17814
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
17815
+ # hrd_buffer_final_fill_percentage: 1,
17780
17816
  # hrd_buffer_initial_fill_percentage: 1,
17781
17817
  # hrd_buffer_size: 1,
17782
17818
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -17907,6 +17943,14 @@ module Aws::MediaConvert
17907
17943
  # value here, by default the encoder measures GOP size in frames.
17908
17944
  # @return [String]
17909
17945
  #
17946
+ # @!attribute [rw] hrd_buffer_final_fill_percentage
17947
+ # If your downstream systems have strict buffer requirements: Specify
17948
+ # the minimum percentage of the HRD buffer that's available at the
17949
+ # end of each encoded video segment. For the best video quality: Set
17950
+ # to 0 or leave blank to automatically determine the final buffer fill
17951
+ # percentage.
17952
+ # @return [Integer]
17953
+ #
17910
17954
  # @!attribute [rw] hrd_buffer_initial_fill_percentage
17911
17955
  # Percentage of the buffer that should initially be filled (HRD buffer
17912
17956
  # model).
@@ -18132,6 +18176,7 @@ module Aws::MediaConvert
18132
18176
  :gop_closed_cadence,
18133
18177
  :gop_size,
18134
18178
  :gop_size_units,
18179
+ :hrd_buffer_final_fill_percentage,
18135
18180
  :hrd_buffer_initial_fill_percentage,
18136
18181
  :hrd_buffer_size,
18137
18182
  :interlace_mode,
@@ -19330,6 +19375,7 @@ module Aws::MediaConvert
19330
19375
  # gop_closed_cadence: 1,
19331
19376
  # gop_size: 1.0,
19332
19377
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
19378
+ # hrd_buffer_final_fill_percentage: 1,
19333
19379
  # hrd_buffer_initial_fill_percentage: 1,
19334
19380
  # hrd_buffer_size: 1,
19335
19381
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -19375,6 +19421,7 @@ module Aws::MediaConvert
19375
19421
  # gop_closed_cadence: 1,
19376
19422
  # gop_size: 1.0,
19377
19423
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
19424
+ # hrd_buffer_final_fill_percentage: 1,
19378
19425
  # hrd_buffer_initial_fill_percentage: 1,
19379
19426
  # hrd_buffer_size: 1,
19380
19427
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -19418,6 +19465,7 @@ module Aws::MediaConvert
19418
19465
  # gop_closed_cadence: 1,
19419
19466
  # gop_size: 1.0,
19420
19467
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
19468
+ # hrd_buffer_final_fill_percentage: 1,
19421
19469
  # hrd_buffer_initial_fill_percentage: 1,
19422
19470
  # hrd_buffer_size: 1,
19423
19471
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -20488,6 +20536,7 @@ module Aws::MediaConvert
20488
20536
  # gop_closed_cadence: 1,
20489
20537
  # gop_size: 1.0,
20490
20538
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
20539
+ # hrd_buffer_final_fill_percentage: 1,
20491
20540
  # hrd_buffer_initial_fill_percentage: 1,
20492
20541
  # hrd_buffer_size: 1,
20493
20542
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -20533,6 +20582,7 @@ module Aws::MediaConvert
20533
20582
  # gop_closed_cadence: 1,
20534
20583
  # gop_size: 1.0,
20535
20584
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
20585
+ # hrd_buffer_final_fill_percentage: 1,
20536
20586
  # hrd_buffer_initial_fill_percentage: 1,
20537
20587
  # hrd_buffer_size: 1,
20538
20588
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -20576,6 +20626,7 @@ module Aws::MediaConvert
20576
20626
  # gop_closed_cadence: 1,
20577
20627
  # gop_size: 1.0,
20578
20628
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
20629
+ # hrd_buffer_final_fill_percentage: 1,
20579
20630
  # hrd_buffer_initial_fill_percentage: 1,
20580
20631
  # hrd_buffer_size: 1,
20581
20632
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -21745,6 +21796,7 @@ module Aws::MediaConvert
21745
21796
  # gop_closed_cadence: 1,
21746
21797
  # gop_size: 1.0,
21747
21798
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
21799
+ # hrd_buffer_final_fill_percentage: 1,
21748
21800
  # hrd_buffer_initial_fill_percentage: 1,
21749
21801
  # hrd_buffer_size: 1,
21750
21802
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -21790,6 +21842,7 @@ module Aws::MediaConvert
21790
21842
  # gop_closed_cadence: 1,
21791
21843
  # gop_size: 1.0,
21792
21844
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
21845
+ # hrd_buffer_final_fill_percentage: 1,
21793
21846
  # hrd_buffer_initial_fill_percentage: 1,
21794
21847
  # hrd_buffer_size: 1,
21795
21848
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -21833,6 +21886,7 @@ module Aws::MediaConvert
21833
21886
  # gop_closed_cadence: 1,
21834
21887
  # gop_size: 1.0,
21835
21888
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
21889
+ # hrd_buffer_final_fill_percentage: 1,
21836
21890
  # hrd_buffer_initial_fill_percentage: 1,
21837
21891
  # hrd_buffer_size: 1,
21838
21892
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -24358,6 +24412,7 @@ module Aws::MediaConvert
24358
24412
  # gop_closed_cadence: 1,
24359
24413
  # gop_size: 1.0,
24360
24414
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
24415
+ # hrd_buffer_final_fill_percentage: 1,
24361
24416
  # hrd_buffer_initial_fill_percentage: 1,
24362
24417
  # hrd_buffer_size: 1,
24363
24418
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -24403,6 +24458,7 @@ module Aws::MediaConvert
24403
24458
  # gop_closed_cadence: 1,
24404
24459
  # gop_size: 1.0,
24405
24460
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
24461
+ # hrd_buffer_final_fill_percentage: 1,
24406
24462
  # hrd_buffer_initial_fill_percentage: 1,
24407
24463
  # hrd_buffer_size: 1,
24408
24464
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -24446,6 +24502,7 @@ module Aws::MediaConvert
24446
24502
  # gop_closed_cadence: 1,
24447
24503
  # gop_size: 1.0,
24448
24504
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
24505
+ # hrd_buffer_final_fill_percentage: 1,
24449
24506
  # hrd_buffer_initial_fill_percentage: 1,
24450
24507
  # hrd_buffer_size: 1,
24451
24508
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -25200,6 +25257,7 @@ module Aws::MediaConvert
25200
25257
  # gop_closed_cadence: 1,
25201
25258
  # gop_size: 1.0,
25202
25259
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
25260
+ # hrd_buffer_final_fill_percentage: 1,
25203
25261
  # hrd_buffer_initial_fill_percentage: 1,
25204
25262
  # hrd_buffer_size: 1,
25205
25263
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -25245,6 +25303,7 @@ module Aws::MediaConvert
25245
25303
  # gop_closed_cadence: 1,
25246
25304
  # gop_size: 1.0,
25247
25305
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
25306
+ # hrd_buffer_final_fill_percentage: 1,
25248
25307
  # hrd_buffer_initial_fill_percentage: 1,
25249
25308
  # hrd_buffer_size: 1,
25250
25309
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -25288,6 +25347,7 @@ module Aws::MediaConvert
25288
25347
  # gop_closed_cadence: 1,
25289
25348
  # gop_size: 1.0,
25290
25349
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
25350
+ # hrd_buffer_final_fill_percentage: 1,
25291
25351
  # hrd_buffer_initial_fill_percentage: 1,
25292
25352
  # hrd_buffer_size: 1,
25293
25353
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -25848,6 +25908,7 @@ module Aws::MediaConvert
25848
25908
  # gop_closed_cadence: 1,
25849
25909
  # gop_size: 1.0,
25850
25910
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
25911
+ # hrd_buffer_final_fill_percentage: 1,
25851
25912
  # hrd_buffer_initial_fill_percentage: 1,
25852
25913
  # hrd_buffer_size: 1,
25853
25914
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -25893,6 +25954,7 @@ module Aws::MediaConvert
25893
25954
  # gop_closed_cadence: 1,
25894
25955
  # gop_size: 1.0,
25895
25956
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
25957
+ # hrd_buffer_final_fill_percentage: 1,
25896
25958
  # hrd_buffer_initial_fill_percentage: 1,
25897
25959
  # hrd_buffer_size: 1,
25898
25960
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -25936,6 +25998,7 @@ module Aws::MediaConvert
25936
25998
  # gop_closed_cadence: 1,
25937
25999
  # gop_size: 1.0,
25938
26000
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
26001
+ # hrd_buffer_final_fill_percentage: 1,
25939
26002
  # hrd_buffer_initial_fill_percentage: 1,
25940
26003
  # hrd_buffer_size: 1,
25941
26004
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -26208,6 +26271,7 @@ module Aws::MediaConvert
26208
26271
  # gop_closed_cadence: 1,
26209
26272
  # gop_size: 1.0,
26210
26273
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
26274
+ # hrd_buffer_final_fill_percentage: 1,
26211
26275
  # hrd_buffer_initial_fill_percentage: 1,
26212
26276
  # hrd_buffer_size: 1,
26213
26277
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -26253,6 +26317,7 @@ module Aws::MediaConvert
26253
26317
  # gop_closed_cadence: 1,
26254
26318
  # gop_size: 1.0,
26255
26319
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
26320
+ # hrd_buffer_final_fill_percentage: 1,
26256
26321
  # hrd_buffer_initial_fill_percentage: 1,
26257
26322
  # hrd_buffer_size: 1,
26258
26323
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -26296,6 +26361,7 @@ module Aws::MediaConvert
26296
26361
  # gop_closed_cadence: 1,
26297
26362
  # gop_size: 1.0,
26298
26363
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
26364
+ # hrd_buffer_final_fill_percentage: 1,
26299
26365
  # hrd_buffer_initial_fill_percentage: 1,
26300
26366
  # hrd_buffer_size: 1,
26301
26367
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-mediaconvert/customizations'
48
48
  # @!group service
49
49
  module Aws::MediaConvert
50
50
 
51
- GEM_VERSION = '1.92.0'
51
+ GEM_VERSION = '1.93.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconvert
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.92.0
4
+ version: 1.93.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-23 00:00:00.000000000 Z
11
+ date: 2022-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core