aws-sdk-mediaconvert 1.153.0 → 1.155.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: f51001de5594f57998f13b605909cdde23b4bc092e99250f24481aa1c4cb1166
4
- data.tar.gz: 8d41f94da845811180930164a74ec0f70bf8e23d804bf81af121288782606b4e
3
+ metadata.gz: a17aaf835be828599cb047bd77204a04637b6fa981df58406b95b96301706ac0
4
+ data.tar.gz: 79efd2664f5cbaeead6756e08233a564e0f1d9a9797d901177420a0711fcd639
5
5
  SHA512:
6
- metadata.gz: 9216dda51d2cb0cd152ce83a58152d40fe84b60c4ad013688fa898d49511f7539aa6c4962894f3b23b365a25d91d6019492c93f7a6acbfa8c24bfe451c2fb109
7
- data.tar.gz: d5bde4c1516506d06770a47b3a63724b85872984df8b1d9236c8891540105ba3d4c9751a0a6664649c482d9143fb335f0e2a8bdc9c54e5531188e0954c258c70
6
+ metadata.gz: 16588bcc22addba872e4adf2a9a014730010a9f2203414fe894e1eda2b84a0e57c4a3489cc27b644af00060f5bd66c5c847c3a1e29d26afacd99432bd6e0ecf5
7
+ data.tar.gz: 76cf0e3d2846ff5ac423eee7973be87d13bee2aa7445e81b91ed74255b9b68b43f5fe38292af7147984eb9d0f59b39be9b5527d9475201540765b7c66e7b4e80
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.155.0 (2025-03-26)
5
+ ------------------
6
+
7
+ * Feature - This release adds a configurable Quality Level setting for the top rendition of Auto ABR jobs
8
+
9
+ 1.154.0 (2025-03-18)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for AVC passthrough, the ability to specify PTS offset without padding, and an A/V segment matching feature.
13
+
4
14
  1.153.0 (2025-02-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.153.0
1
+ 1.155.0
@@ -979,6 +979,7 @@ module Aws::MediaConvert
979
979
  # audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
980
980
  # audio_frames_per_pes: 1,
981
981
  # audio_pids: [1],
982
+ # audio_pts_offset_delta: 1,
982
983
  # bitrate: 1,
983
984
  # buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
984
985
  # data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
@@ -1017,7 +1018,7 @@ module Aws::MediaConvert
1017
1018
  # private_metadata_pid: 1,
1018
1019
  # program_number: 1,
1019
1020
  # pts_offset: 1,
1020
- # pts_offset_mode: "AUTO", # accepts AUTO, SECONDS
1021
+ # pts_offset_mode: "AUTO", # accepts AUTO, SECONDS, MILLISECONDS
1021
1022
  # rate_mode: "VBR", # accepts VBR, CBR
1022
1023
  # scte_35_esam: {
1023
1024
  # scte_35_esam_pid: 1,
@@ -1035,6 +1036,7 @@ module Aws::MediaConvert
1035
1036
  # audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
1036
1037
  # audio_frames_per_pes: 1,
1037
1038
  # audio_pids: [1],
1039
+ # audio_pts_offset_delta: 1,
1038
1040
  # data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
1039
1041
  # max_pcr_interval: 1,
1040
1042
  # nielsen_id_3: "INSERT", # accepts INSERT, NONE
@@ -1046,7 +1048,7 @@ module Aws::MediaConvert
1046
1048
  # private_metadata_pid: 1,
1047
1049
  # program_number: 1,
1048
1050
  # pts_offset: 1,
1049
- # pts_offset_mode: "AUTO", # accepts AUTO, SECONDS
1051
+ # pts_offset_mode: "AUTO", # accepts AUTO, SECONDS, MILLISECONDS
1050
1052
  # scte_35_pid: 1,
1051
1053
  # scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
1052
1054
  # timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
@@ -1736,6 +1738,7 @@ module Aws::MediaConvert
1736
1738
  # resp.preset.settings.container_settings.m2ts_settings.audio_frames_per_pes #=> Integer
1737
1739
  # resp.preset.settings.container_settings.m2ts_settings.audio_pids #=> Array
1738
1740
  # resp.preset.settings.container_settings.m2ts_settings.audio_pids[0] #=> Integer
1741
+ # resp.preset.settings.container_settings.m2ts_settings.audio_pts_offset_delta #=> Integer
1739
1742
  # resp.preset.settings.container_settings.m2ts_settings.bitrate #=> Integer
1740
1743
  # resp.preset.settings.container_settings.m2ts_settings.buffer_model #=> String, one of "MULTIPLEX", "NONE"
1741
1744
  # resp.preset.settings.container_settings.m2ts_settings.data_pts_control #=> String, one of "AUTO", "ALIGN_TO_VIDEO"
@@ -1769,7 +1772,7 @@ module Aws::MediaConvert
1769
1772
  # resp.preset.settings.container_settings.m2ts_settings.private_metadata_pid #=> Integer
1770
1773
  # resp.preset.settings.container_settings.m2ts_settings.program_number #=> Integer
1771
1774
  # resp.preset.settings.container_settings.m2ts_settings.pts_offset #=> Integer
1772
- # resp.preset.settings.container_settings.m2ts_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS"
1775
+ # resp.preset.settings.container_settings.m2ts_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS", "MILLISECONDS"
1773
1776
  # resp.preset.settings.container_settings.m2ts_settings.rate_mode #=> String, one of "VBR", "CBR"
1774
1777
  # resp.preset.settings.container_settings.m2ts_settings.scte_35_esam.scte_35_esam_pid #=> Integer
1775
1778
  # resp.preset.settings.container_settings.m2ts_settings.scte_35_pid #=> Integer
@@ -1784,6 +1787,7 @@ module Aws::MediaConvert
1784
1787
  # resp.preset.settings.container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
1785
1788
  # resp.preset.settings.container_settings.m3u_8_settings.audio_pids #=> Array
1786
1789
  # resp.preset.settings.container_settings.m3u_8_settings.audio_pids[0] #=> Integer
1790
+ # resp.preset.settings.container_settings.m3u_8_settings.audio_pts_offset_delta #=> Integer
1787
1791
  # resp.preset.settings.container_settings.m3u_8_settings.data_pts_control #=> String, one of "AUTO", "ALIGN_TO_VIDEO"
1788
1792
  # resp.preset.settings.container_settings.m3u_8_settings.max_pcr_interval #=> Integer
1789
1793
  # resp.preset.settings.container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
@@ -1795,7 +1799,7 @@ module Aws::MediaConvert
1795
1799
  # resp.preset.settings.container_settings.m3u_8_settings.private_metadata_pid #=> Integer
1796
1800
  # resp.preset.settings.container_settings.m3u_8_settings.program_number #=> Integer
1797
1801
  # resp.preset.settings.container_settings.m3u_8_settings.pts_offset #=> Integer
1798
- # resp.preset.settings.container_settings.m3u_8_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS"
1802
+ # resp.preset.settings.container_settings.m3u_8_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS", "MILLISECONDS"
1799
1803
  # resp.preset.settings.container_settings.m3u_8_settings.scte_35_pid #=> Integer
1800
1804
  # resp.preset.settings.container_settings.m3u_8_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
1801
1805
  # resp.preset.settings.container_settings.m3u_8_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
@@ -2719,6 +2723,7 @@ module Aws::MediaConvert
2719
2723
  # resp.preset.settings.container_settings.m2ts_settings.audio_frames_per_pes #=> Integer
2720
2724
  # resp.preset.settings.container_settings.m2ts_settings.audio_pids #=> Array
2721
2725
  # resp.preset.settings.container_settings.m2ts_settings.audio_pids[0] #=> Integer
2726
+ # resp.preset.settings.container_settings.m2ts_settings.audio_pts_offset_delta #=> Integer
2722
2727
  # resp.preset.settings.container_settings.m2ts_settings.bitrate #=> Integer
2723
2728
  # resp.preset.settings.container_settings.m2ts_settings.buffer_model #=> String, one of "MULTIPLEX", "NONE"
2724
2729
  # resp.preset.settings.container_settings.m2ts_settings.data_pts_control #=> String, one of "AUTO", "ALIGN_TO_VIDEO"
@@ -2752,7 +2757,7 @@ module Aws::MediaConvert
2752
2757
  # resp.preset.settings.container_settings.m2ts_settings.private_metadata_pid #=> Integer
2753
2758
  # resp.preset.settings.container_settings.m2ts_settings.program_number #=> Integer
2754
2759
  # resp.preset.settings.container_settings.m2ts_settings.pts_offset #=> Integer
2755
- # resp.preset.settings.container_settings.m2ts_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS"
2760
+ # resp.preset.settings.container_settings.m2ts_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS", "MILLISECONDS"
2756
2761
  # resp.preset.settings.container_settings.m2ts_settings.rate_mode #=> String, one of "VBR", "CBR"
2757
2762
  # resp.preset.settings.container_settings.m2ts_settings.scte_35_esam.scte_35_esam_pid #=> Integer
2758
2763
  # resp.preset.settings.container_settings.m2ts_settings.scte_35_pid #=> Integer
@@ -2767,6 +2772,7 @@ module Aws::MediaConvert
2767
2772
  # resp.preset.settings.container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
2768
2773
  # resp.preset.settings.container_settings.m3u_8_settings.audio_pids #=> Array
2769
2774
  # resp.preset.settings.container_settings.m3u_8_settings.audio_pids[0] #=> Integer
2775
+ # resp.preset.settings.container_settings.m3u_8_settings.audio_pts_offset_delta #=> Integer
2770
2776
  # resp.preset.settings.container_settings.m3u_8_settings.data_pts_control #=> String, one of "AUTO", "ALIGN_TO_VIDEO"
2771
2777
  # resp.preset.settings.container_settings.m3u_8_settings.max_pcr_interval #=> Integer
2772
2778
  # resp.preset.settings.container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
@@ -2778,7 +2784,7 @@ module Aws::MediaConvert
2778
2784
  # resp.preset.settings.container_settings.m3u_8_settings.private_metadata_pid #=> Integer
2779
2785
  # resp.preset.settings.container_settings.m3u_8_settings.program_number #=> Integer
2780
2786
  # resp.preset.settings.container_settings.m3u_8_settings.pts_offset #=> Integer
2781
- # resp.preset.settings.container_settings.m3u_8_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS"
2787
+ # resp.preset.settings.container_settings.m3u_8_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS", "MILLISECONDS"
2782
2788
  # resp.preset.settings.container_settings.m3u_8_settings.scte_35_pid #=> Integer
2783
2789
  # resp.preset.settings.container_settings.m3u_8_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
2784
2790
  # resp.preset.settings.container_settings.m3u_8_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
@@ -3570,6 +3576,7 @@ module Aws::MediaConvert
3570
3576
  # resp.presets[0].settings.container_settings.m2ts_settings.audio_frames_per_pes #=> Integer
3571
3577
  # resp.presets[0].settings.container_settings.m2ts_settings.audio_pids #=> Array
3572
3578
  # resp.presets[0].settings.container_settings.m2ts_settings.audio_pids[0] #=> Integer
3579
+ # resp.presets[0].settings.container_settings.m2ts_settings.audio_pts_offset_delta #=> Integer
3573
3580
  # resp.presets[0].settings.container_settings.m2ts_settings.bitrate #=> Integer
3574
3581
  # resp.presets[0].settings.container_settings.m2ts_settings.buffer_model #=> String, one of "MULTIPLEX", "NONE"
3575
3582
  # resp.presets[0].settings.container_settings.m2ts_settings.data_pts_control #=> String, one of "AUTO", "ALIGN_TO_VIDEO"
@@ -3603,7 +3610,7 @@ module Aws::MediaConvert
3603
3610
  # resp.presets[0].settings.container_settings.m2ts_settings.private_metadata_pid #=> Integer
3604
3611
  # resp.presets[0].settings.container_settings.m2ts_settings.program_number #=> Integer
3605
3612
  # resp.presets[0].settings.container_settings.m2ts_settings.pts_offset #=> Integer
3606
- # resp.presets[0].settings.container_settings.m2ts_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS"
3613
+ # resp.presets[0].settings.container_settings.m2ts_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS", "MILLISECONDS"
3607
3614
  # resp.presets[0].settings.container_settings.m2ts_settings.rate_mode #=> String, one of "VBR", "CBR"
3608
3615
  # resp.presets[0].settings.container_settings.m2ts_settings.scte_35_esam.scte_35_esam_pid #=> Integer
3609
3616
  # resp.presets[0].settings.container_settings.m2ts_settings.scte_35_pid #=> Integer
@@ -3618,6 +3625,7 @@ module Aws::MediaConvert
3618
3625
  # resp.presets[0].settings.container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
3619
3626
  # resp.presets[0].settings.container_settings.m3u_8_settings.audio_pids #=> Array
3620
3627
  # resp.presets[0].settings.container_settings.m3u_8_settings.audio_pids[0] #=> Integer
3628
+ # resp.presets[0].settings.container_settings.m3u_8_settings.audio_pts_offset_delta #=> Integer
3621
3629
  # resp.presets[0].settings.container_settings.m3u_8_settings.data_pts_control #=> String, one of "AUTO", "ALIGN_TO_VIDEO"
3622
3630
  # resp.presets[0].settings.container_settings.m3u_8_settings.max_pcr_interval #=> Integer
3623
3631
  # resp.presets[0].settings.container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
@@ -3629,7 +3637,7 @@ module Aws::MediaConvert
3629
3637
  # resp.presets[0].settings.container_settings.m3u_8_settings.private_metadata_pid #=> Integer
3630
3638
  # resp.presets[0].settings.container_settings.m3u_8_settings.program_number #=> Integer
3631
3639
  # resp.presets[0].settings.container_settings.m3u_8_settings.pts_offset #=> Integer
3632
- # resp.presets[0].settings.container_settings.m3u_8_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS"
3640
+ # resp.presets[0].settings.container_settings.m3u_8_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS", "MILLISECONDS"
3633
3641
  # resp.presets[0].settings.container_settings.m3u_8_settings.scte_35_pid #=> Integer
3634
3642
  # resp.presets[0].settings.container_settings.m3u_8_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
3635
3643
  # resp.presets[0].settings.container_settings.m3u_8_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
@@ -4159,12 +4167,14 @@ module Aws::MediaConvert
4159
4167
  req.send_request(options)
4160
4168
  end
4161
4169
 
4162
- # The Probe operation analyzes the provided media file and returns
4163
- # comprehensive metadata about its container format, tracks, and any
4164
- # encountered errors.
4170
+ # Use Probe to obtain detailed information about your input media files.
4171
+ # Probe returns a JSON that includes container, codec, frame rate,
4172
+ # resolution, track count, audio layout, captions, and more. You can use
4173
+ # this information to learn more about your media files, or to help make
4174
+ # decisions while automating your transcoding workflow.
4165
4175
  #
4166
4176
  # @option params [Array<Types::ProbeInputFile>] :input_files
4167
- # The list of input media files to be probed.
4177
+ # Specify a media file to probe.
4168
4178
  #
4169
4179
  # @return [Types::ProbeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4170
4180
  #
@@ -4730,6 +4740,7 @@ module Aws::MediaConvert
4730
4740
  # audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
4731
4741
  # audio_frames_per_pes: 1,
4732
4742
  # audio_pids: [1],
4743
+ # audio_pts_offset_delta: 1,
4733
4744
  # bitrate: 1,
4734
4745
  # buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
4735
4746
  # data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
@@ -4768,7 +4779,7 @@ module Aws::MediaConvert
4768
4779
  # private_metadata_pid: 1,
4769
4780
  # program_number: 1,
4770
4781
  # pts_offset: 1,
4771
- # pts_offset_mode: "AUTO", # accepts AUTO, SECONDS
4782
+ # pts_offset_mode: "AUTO", # accepts AUTO, SECONDS, MILLISECONDS
4772
4783
  # rate_mode: "VBR", # accepts VBR, CBR
4773
4784
  # scte_35_esam: {
4774
4785
  # scte_35_esam_pid: 1,
@@ -4786,6 +4797,7 @@ module Aws::MediaConvert
4786
4797
  # audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
4787
4798
  # audio_frames_per_pes: 1,
4788
4799
  # audio_pids: [1],
4800
+ # audio_pts_offset_delta: 1,
4789
4801
  # data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
4790
4802
  # max_pcr_interval: 1,
4791
4803
  # nielsen_id_3: "INSERT", # accepts INSERT, NONE
@@ -4797,7 +4809,7 @@ module Aws::MediaConvert
4797
4809
  # private_metadata_pid: 1,
4798
4810
  # program_number: 1,
4799
4811
  # pts_offset: 1,
4800
- # pts_offset_mode: "AUTO", # accepts AUTO, SECONDS
4812
+ # pts_offset_mode: "AUTO", # accepts AUTO, SECONDS, MILLISECONDS
4801
4813
  # scte_35_pid: 1,
4802
4814
  # scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
4803
4815
  # timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
@@ -5484,6 +5496,7 @@ module Aws::MediaConvert
5484
5496
  # resp.preset.settings.container_settings.m2ts_settings.audio_frames_per_pes #=> Integer
5485
5497
  # resp.preset.settings.container_settings.m2ts_settings.audio_pids #=> Array
5486
5498
  # resp.preset.settings.container_settings.m2ts_settings.audio_pids[0] #=> Integer
5499
+ # resp.preset.settings.container_settings.m2ts_settings.audio_pts_offset_delta #=> Integer
5487
5500
  # resp.preset.settings.container_settings.m2ts_settings.bitrate #=> Integer
5488
5501
  # resp.preset.settings.container_settings.m2ts_settings.buffer_model #=> String, one of "MULTIPLEX", "NONE"
5489
5502
  # resp.preset.settings.container_settings.m2ts_settings.data_pts_control #=> String, one of "AUTO", "ALIGN_TO_VIDEO"
@@ -5517,7 +5530,7 @@ module Aws::MediaConvert
5517
5530
  # resp.preset.settings.container_settings.m2ts_settings.private_metadata_pid #=> Integer
5518
5531
  # resp.preset.settings.container_settings.m2ts_settings.program_number #=> Integer
5519
5532
  # resp.preset.settings.container_settings.m2ts_settings.pts_offset #=> Integer
5520
- # resp.preset.settings.container_settings.m2ts_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS"
5533
+ # resp.preset.settings.container_settings.m2ts_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS", "MILLISECONDS"
5521
5534
  # resp.preset.settings.container_settings.m2ts_settings.rate_mode #=> String, one of "VBR", "CBR"
5522
5535
  # resp.preset.settings.container_settings.m2ts_settings.scte_35_esam.scte_35_esam_pid #=> Integer
5523
5536
  # resp.preset.settings.container_settings.m2ts_settings.scte_35_pid #=> Integer
@@ -5532,6 +5545,7 @@ module Aws::MediaConvert
5532
5545
  # resp.preset.settings.container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
5533
5546
  # resp.preset.settings.container_settings.m3u_8_settings.audio_pids #=> Array
5534
5547
  # resp.preset.settings.container_settings.m3u_8_settings.audio_pids[0] #=> Integer
5548
+ # resp.preset.settings.container_settings.m3u_8_settings.audio_pts_offset_delta #=> Integer
5535
5549
  # resp.preset.settings.container_settings.m3u_8_settings.data_pts_control #=> String, one of "AUTO", "ALIGN_TO_VIDEO"
5536
5550
  # resp.preset.settings.container_settings.m3u_8_settings.max_pcr_interval #=> Integer
5537
5551
  # resp.preset.settings.container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
@@ -5543,7 +5557,7 @@ module Aws::MediaConvert
5543
5557
  # resp.preset.settings.container_settings.m3u_8_settings.private_metadata_pid #=> Integer
5544
5558
  # resp.preset.settings.container_settings.m3u_8_settings.program_number #=> Integer
5545
5559
  # resp.preset.settings.container_settings.m3u_8_settings.pts_offset #=> Integer
5546
- # resp.preset.settings.container_settings.m3u_8_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS"
5560
+ # resp.preset.settings.container_settings.m3u_8_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS", "MILLISECONDS"
5547
5561
  # resp.preset.settings.container_settings.m3u_8_settings.scte_35_pid #=> Integer
5548
5562
  # resp.preset.settings.container_settings.m3u_8_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
5549
5563
  # resp.preset.settings.container_settings.m3u_8_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
@@ -6023,7 +6037,7 @@ module Aws::MediaConvert
6023
6037
  tracer: tracer
6024
6038
  )
6025
6039
  context[:gem_name] = 'aws-sdk-mediaconvert'
6026
- context[:gem_version] = '1.153.0'
6040
+ context[:gem_version] = '1.155.0'
6027
6041
  Seahorse::Client::Request.new(handlers, context)
6028
6042
  end
6029
6043
 
@@ -727,6 +727,7 @@ module Aws::MediaConvert
727
727
  __doubleMin0 = Shapes::FloatShape.new(name: '__doubleMin0')
728
728
  __doubleMin0Max1 = Shapes::FloatShape.new(name: '__doubleMin0Max1')
729
729
  __doubleMin0Max2147483647 = Shapes::FloatShape.new(name: '__doubleMin0Max2147483647')
730
+ __doubleMin1Max10 = Shapes::FloatShape.new(name: '__doubleMin1Max10')
730
731
  __doubleMinNegative59Max0 = Shapes::FloatShape.new(name: '__doubleMinNegative59Max0')
731
732
  __doubleMinNegative60Max3 = Shapes::FloatShape.new(name: '__doubleMinNegative60Max3')
732
733
  __doubleMinNegative60Max6 = Shapes::FloatShape.new(name: '__doubleMinNegative60Max6')
@@ -824,6 +825,7 @@ module Aws::MediaConvert
824
825
  __integerMin90Max105 = Shapes::IntegerShape.new(name: '__integerMin90Max105')
825
826
  __integerMin920Max1023 = Shapes::IntegerShape.new(name: '__integerMin920Max1023')
826
827
  __integerMin96Max600 = Shapes::IntegerShape.new(name: '__integerMin96Max600')
828
+ __integerMinNegative10000Max10000 = Shapes::IntegerShape.new(name: '__integerMinNegative10000Max10000')
827
829
  __integerMinNegative1000Max1000 = Shapes::IntegerShape.new(name: '__integerMinNegative1000Max1000')
828
830
  __integerMinNegative180Max180 = Shapes::IntegerShape.new(name: '__integerMinNegative180Max180')
829
831
  __integerMinNegative1Max10 = Shapes::IntegerShape.new(name: '__integerMinNegative1Max10')
@@ -1073,6 +1075,7 @@ module Aws::MediaConvert
1073
1075
  AutomatedAbrRule.struct_class = Types::AutomatedAbrRule
1074
1076
 
1075
1077
  AutomatedAbrSettings.add_member(:max_abr_bitrate, Shapes::ShapeRef.new(shape: __integerMin100000Max100000000, location_name: "maxAbrBitrate"))
1078
+ AutomatedAbrSettings.add_member(:max_quality_level, Shapes::ShapeRef.new(shape: __doubleMin1Max10, location_name: "maxQualityLevel"))
1076
1079
  AutomatedAbrSettings.add_member(:max_renditions, Shapes::ShapeRef.new(shape: __integerMin3Max15, location_name: "maxRenditions"))
1077
1080
  AutomatedAbrSettings.add_member(:min_abr_bitrate, Shapes::ShapeRef.new(shape: __integerMin100000Max100000000, location_name: "minAbrBitrate"))
1078
1081
  AutomatedAbrSettings.add_member(:rules, Shapes::ShapeRef.new(shape: __listOfAutomatedAbrRule, location_name: "rules"))
@@ -2139,6 +2142,7 @@ module Aws::MediaConvert
2139
2142
  M2tsSettings.add_member(:audio_duration, Shapes::ShapeRef.new(shape: M2tsAudioDuration, location_name: "audioDuration"))
2140
2143
  M2tsSettings.add_member(:audio_frames_per_pes, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "audioFramesPerPes"))
2141
2144
  M2tsSettings.add_member(:audio_pids, Shapes::ShapeRef.new(shape: __listOf__integerMin32Max8182, location_name: "audioPids"))
2145
+ M2tsSettings.add_member(:audio_pts_offset_delta, Shapes::ShapeRef.new(shape: __integerMinNegative10000Max10000, location_name: "audioPtsOffsetDelta"))
2142
2146
  M2tsSettings.add_member(:bitrate, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "bitrate"))
2143
2147
  M2tsSettings.add_member(:buffer_model, Shapes::ShapeRef.new(shape: M2tsBufferModel, location_name: "bufferModel"))
2144
2148
  M2tsSettings.add_member(:data_pts_control, Shapes::ShapeRef.new(shape: M2tsDataPtsControl, location_name: "dataPTSControl"))
@@ -2182,6 +2186,7 @@ module Aws::MediaConvert
2182
2186
  M3u8Settings.add_member(:audio_duration, Shapes::ShapeRef.new(shape: M3u8AudioDuration, location_name: "audioDuration"))
2183
2187
  M3u8Settings.add_member(:audio_frames_per_pes, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "audioFramesPerPes"))
2184
2188
  M3u8Settings.add_member(:audio_pids, Shapes::ShapeRef.new(shape: __listOf__integerMin32Max8182, location_name: "audioPids"))
2189
+ M3u8Settings.add_member(:audio_pts_offset_delta, Shapes::ShapeRef.new(shape: __integerMinNegative10000Max10000, location_name: "audioPtsOffsetDelta"))
2185
2190
  M3u8Settings.add_member(:data_pts_control, Shapes::ShapeRef.new(shape: M3u8DataPtsControl, location_name: "dataPTSControl"))
2186
2191
  M3u8Settings.add_member(:max_pcr_interval, Shapes::ShapeRef.new(shape: __integerMin0Max500, location_name: "maxPcrInterval"))
2187
2192
  M3u8Settings.add_member(:nielsen_id_3, Shapes::ShapeRef.new(shape: M3u8NielsenId3, location_name: "nielsenId3"))
@@ -679,26 +679,27 @@ module Aws::MediaConvert
679
679
  include Aws::Structure
680
680
  end
681
681
 
682
- # Properties specific to audio tracks.
682
+ # Details about the media file's audio track.
683
683
  #
684
684
  # @!attribute [rw] bit_depth
685
685
  # The bit depth of the audio track.
686
686
  # @return [Integer]
687
687
  #
688
688
  # @!attribute [rw] bit_rate
689
- # The bit rate of the audio track in bits per second.
689
+ # The bit rate of the audio track, in bits per second.
690
690
  # @return [Integer]
691
691
  #
692
692
  # @!attribute [rw] channels
693
- # The number of audio channels.
693
+ # The number of audio channels in the audio track.
694
694
  # @return [Integer]
695
695
  #
696
696
  # @!attribute [rw] frame_rate
697
- # the calculated frame rate of the asset.
697
+ # The frame rate of the video or audio track.
698
698
  # @return [Types::FrameRate]
699
699
  #
700
700
  # @!attribute [rw] language_code
701
- # the language code of the track
701
+ # The language code of the audio track, in three character ISO 639-3
702
+ # format.
702
703
  # @return [String]
703
704
  #
704
705
  # @!attribute [rw] sample_rate
@@ -968,6 +969,16 @@ module Aws::MediaConvert
968
969
  # the value that you specify.
969
970
  # @return [Integer]
970
971
  #
972
+ # @!attribute [rw] max_quality_level
973
+ # Optional. Specify the QVBR quality level to use for all renditions
974
+ # in your automated ABR stack. To have MediaConvert automatically
975
+ # determine the quality level: Leave blank. To manually specify a
976
+ # quality level: Enter an integer from 1 to 10. MediaConvert will use
977
+ # a quality level up to the value that you specify, depending on your
978
+ # source. For more information about QVBR quality levels, see:
979
+ # https://docs.aws.amazon.com/mediaconvert/latest/ug/qvbr-guidelines.html
980
+ # @return [Float]
981
+ #
971
982
  # @!attribute [rw] max_renditions
972
983
  # Optional. The maximum number of renditions that MediaConvert will
973
984
  # create in your automated ABR stack. The number of renditions is
@@ -998,6 +1009,7 @@ module Aws::MediaConvert
998
1009
  #
999
1010
  class AutomatedAbrSettings < Struct.new(
1000
1011
  :max_abr_bitrate,
1012
+ :max_quality_level,
1001
1013
  :max_renditions,
1002
1014
  :min_abr_bitrate,
1003
1015
  :rules)
@@ -2398,11 +2410,25 @@ module Aws::MediaConvert
2398
2410
  # @return [Integer]
2399
2411
  #
2400
2412
  # @!attribute [rw] segment_length_control
2401
- # Specify how you want MediaConvert to determine the segment length.
2402
- # Choose Exact to have the encoder use the exact length that you
2403
- # specify with the setting Segment length. This might result in extra
2404
- # I-frames. Choose Multiple of GOP to have the encoder round up the
2405
- # segment lengths to match the next GOP boundary.
2413
+ # Specify how you want MediaConvert to determine segment lengths in
2414
+ # this output group. To use the exact value that you specify under
2415
+ # Segment length: Choose Exact. Note that this might result in
2416
+ # additional I-frames in the output GOP. To create segment lengths
2417
+ # that are a multiple of the GOP: Choose Multiple of GOP. MediaConvert
2418
+ # will round up the segment lengths to match the next GOP boundary. To
2419
+ # have MediaConvert automatically determine a segment duration that is
2420
+ # a multiple of both the audio packets and the frame rates: Choose
2421
+ # Match. When you do, also specify a target segment duration under
2422
+ # Segment length. This is useful for some ad-insertion or segment
2423
+ # replacement workflows. Note that Match has the following
2424
+ # requirements: - Output containers: Include at least one video output
2425
+ # and at least one audio output. Audio-only outputs are not supported.
2426
+ # - Output frame rate: Follow source is not supported. - Multiple
2427
+ # output frame rates: When you specify multiple outputs, we recommend
2428
+ # they share a similar frame rate (as in X/3, X/2, X, or 2X). For
2429
+ # example: 5, 15, 30 and 60. Or: 25 and 50. (Outputs must share an
2430
+ # integer multiple.) - Output audio codec: Specify Advanced Audio
2431
+ # Coding (AAC). - Output sample rate: Choose 48kHz.
2406
2432
  # @return [String]
2407
2433
  #
2408
2434
  # @!attribute [rw] stream_inf_resolution
@@ -2918,18 +2944,23 @@ module Aws::MediaConvert
2918
2944
  include Aws::Structure
2919
2945
  end
2920
2946
 
2921
- # Information about the container format of the media file.
2947
+ # The container of your media file. This information helps you
2948
+ # understand the overall structure and details of your media, including
2949
+ # format, duration, and track layout.
2922
2950
  #
2923
2951
  # @!attribute [rw] duration
2924
- # The duration of the media file in seconds.
2952
+ # The total duration of your media file, in seconds.
2925
2953
  # @return [Float]
2926
2954
  #
2927
2955
  # @!attribute [rw] format
2928
- # The format of the container
2956
+ # The format of your media file. For example: MP4, QuickTime (MOV),
2957
+ # Matroska (MKV), or WebM. Note that this will be blank if your media
2958
+ # file has a format that the MediaConvert Probe operation does not
2959
+ # recognize.
2929
2960
  # @return [String]
2930
2961
  #
2931
2962
  # @!attribute [rw] tracks
2932
- # List of Track objects.
2963
+ # Details about each track (video, audio, or data) in the media file.
2933
2964
  # @return [Array<Types::Track>]
2934
2965
  #
2935
2966
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Container AWS API Documentation
@@ -3609,11 +3640,25 @@ module Aws::MediaConvert
3609
3640
  # @return [Integer]
3610
3641
  #
3611
3642
  # @!attribute [rw] segment_length_control
3612
- # Specify how you want MediaConvert to determine the segment length.
3613
- # Choose Exact to have the encoder use the exact length that you
3614
- # specify with the setting Segment length. This might result in extra
3615
- # I-frames. Choose Multiple of GOP to have the encoder round up the
3616
- # segment lengths to match the next GOP boundary.
3643
+ # Specify how you want MediaConvert to determine segment lengths in
3644
+ # this output group. To use the exact value that you specify under
3645
+ # Segment length: Choose Exact. Note that this might result in
3646
+ # additional I-frames in the output GOP. To create segment lengths
3647
+ # that are a multiple of the GOP: Choose Multiple of GOP. MediaConvert
3648
+ # will round up the segment lengths to match the next GOP boundary. To
3649
+ # have MediaConvert automatically determine a segment duration that is
3650
+ # a multiple of both the audio packets and the frame rates: Choose
3651
+ # Match. When you do, also specify a target segment duration under
3652
+ # Segment length. This is useful for some ad-insertion or segment
3653
+ # replacement workflows. Note that Match has the following
3654
+ # requirements: - Output containers: Include at least one video output
3655
+ # and at least one audio output. Audio-only outputs are not supported.
3656
+ # - Output frame rate: Follow source is not supported. - Multiple
3657
+ # output frame rates: When you specify multiple outputs, we recommend
3658
+ # they share a similar frame rate (as in X/3, X/2, X, or 2X). For
3659
+ # example: 5, 15, 30 and 60. Or: 25 and 50. (Outputs must share an
3660
+ # integer multiple.) - Output audio codec: Specify Advanced Audio
3661
+ # Coding (AAC). - Output sample rate: Choose 48kHz.
3617
3662
  # @return [String]
3618
3663
  #
3619
3664
  # @!attribute [rw] video_composition_offsets
@@ -3722,10 +3767,11 @@ module Aws::MediaConvert
3722
3767
  include Aws::Structure
3723
3768
  end
3724
3769
 
3725
- # Properties specific to data tracks.
3770
+ # Details about the media file's data track.
3726
3771
  #
3727
3772
  # @!attribute [rw] language_code
3728
- # the language code of the track
3773
+ # The language code of the data track, in three character ISO 639-3
3774
+ # format.
3729
3775
  # @return [String]
3730
3776
  #
3731
3777
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/DataProperties AWS API Documentation
@@ -5342,14 +5388,18 @@ module Aws::MediaConvert
5342
5388
  include Aws::Structure
5343
5389
  end
5344
5390
 
5345
- # the calculated frame rate of the asset.
5391
+ # The frame rate of the video or audio track.
5346
5392
  #
5347
5393
  # @!attribute [rw] denominator
5348
- # the denominator of the frame rate of the asset.
5394
+ # The denominator, or bottom number, in the fractional frame rate. For
5395
+ # example, if your frame rate is 24000 / 1001 (23.976 frames per
5396
+ # second), then the denominator would be 1001.
5349
5397
  # @return [Integer]
5350
5398
  #
5351
5399
  # @!attribute [rw] numerator
5352
- # the numerator of the frame rate of the asset.
5400
+ # The numerator, or top number, in the fractional frame rate. For
5401
+ # example, if your frame rate is 24000 / 1001 (23.976 frames per
5402
+ # second), then the numerator would be 24000.
5353
5403
  # @return [Integer]
5354
5404
  #
5355
5405
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/FrameRate AWS API Documentation
@@ -7120,11 +7170,25 @@ module Aws::MediaConvert
7120
7170
  # @return [Integer]
7121
7171
  #
7122
7172
  # @!attribute [rw] segment_length_control
7123
- # Specify how you want MediaConvert to determine the segment length.
7124
- # Choose Exact to have the encoder use the exact length that you
7125
- # specify with the setting Segment length. This might result in extra
7126
- # I-frames. Choose Multiple of GOP to have the encoder round up the
7127
- # segment lengths to match the next GOP boundary.
7173
+ # Specify how you want MediaConvert to determine segment lengths in
7174
+ # this output group. To use the exact value that you specify under
7175
+ # Segment length: Choose Exact. Note that this might result in
7176
+ # additional I-frames in the output GOP. To create segment lengths
7177
+ # that are a multiple of the GOP: Choose Multiple of GOP. MediaConvert
7178
+ # will round up the segment lengths to match the next GOP boundary. To
7179
+ # have MediaConvert automatically determine a segment duration that is
7180
+ # a multiple of both the audio packets and the frame rates: Choose
7181
+ # Match. When you do, also specify a target segment duration under
7182
+ # Segment length. This is useful for some ad-insertion or segment
7183
+ # replacement workflows. Note that Match has the following
7184
+ # requirements: - Output containers: Include at least one video output
7185
+ # and at least one audio output. Audio-only outputs are not supported.
7186
+ # - Output frame rate: Follow source is not supported. - Multiple
7187
+ # output frame rates: When you specify multiple outputs, we recommend
7188
+ # they share a similar frame rate (as in X/3, X/2, X, or 2X). For
7189
+ # example: 5, 15, 30 and 60. Or: 25 and 50. (Outputs must share an
7190
+ # integer multiple.) - Output audio codec: Specify Advanced Audio
7191
+ # Coding (AAC). - Output sample rate: Choose 48kHz.
7128
7192
  # @return [String]
7129
7193
  #
7130
7194
  # @!attribute [rw] segments_per_subdirectory
@@ -9357,6 +9421,13 @@ module Aws::MediaConvert
9357
9421
  # array. Default is the range 482-492.
9358
9422
  # @return [Array<Integer>]
9359
9423
  #
9424
+ # @!attribute [rw] audio_pts_offset_delta
9425
+ # Manually specify the difference in PTS offset that will be applied
9426
+ # to the audio track, in seconds or milliseconds, when you set PTS
9427
+ # offset to Seconds or Milliseconds. Enter an integer from -10000 to
9428
+ # 10000. Leave blank to keep the default value 0.
9429
+ # @return [Integer]
9430
+ #
9360
9431
  # @!attribute [rw] bitrate
9361
9432
  # Specify the output bitrate of the transport stream in bits per
9362
9433
  # second. Setting to 0 lets the muxer automatically determine the
@@ -9537,7 +9608,8 @@ module Aws::MediaConvert
9537
9608
  # initial PTS will be at least two seconds and vary depending on your
9538
9609
  # output's bitrate, HRD buffer size and HRD buffer initial fill
9539
9610
  # percentage. To manually specify an initial PTS offset: Choose
9540
- # Seconds. Then specify the number of seconds with PTS offset.
9611
+ # Seconds or Milliseconds. Then specify the number of seconds or
9612
+ # milliseconds with PTS offset.
9541
9613
  # @return [String]
9542
9614
  #
9543
9615
  # @!attribute [rw] rate_mode
@@ -9626,6 +9698,7 @@ module Aws::MediaConvert
9626
9698
  :audio_duration,
9627
9699
  :audio_frames_per_pes,
9628
9700
  :audio_pids,
9701
+ :audio_pts_offset_delta,
9629
9702
  :bitrate,
9630
9703
  :buffer_model,
9631
9704
  :data_pts_control,
@@ -9699,6 +9772,13 @@ module Aws::MediaConvert
9699
9772
  # in ranges and/or by comma separation.
9700
9773
  # @return [Array<Integer>]
9701
9774
  #
9775
+ # @!attribute [rw] audio_pts_offset_delta
9776
+ # Manually specify the difference in PTS offset that will be applied
9777
+ # to the audio track, in seconds or milliseconds, when you set PTS
9778
+ # offset to Seconds or Milliseconds. Enter an integer from -10000 to
9779
+ # 10000. Leave blank to keep the default value 0.
9780
+ # @return [Integer]
9781
+ #
9702
9782
  # @!attribute [rw] data_pts_control
9703
9783
  # If you select ALIGN\_TO\_VIDEO, MediaConvert writes captions and
9704
9784
  # data packets with Presentation Timestamp (PTS) values greater than
@@ -9769,7 +9849,8 @@ module Aws::MediaConvert
9769
9849
  # initial PTS will be at least two seconds and vary depending on your
9770
9850
  # output's bitrate, HRD buffer size and HRD buffer initial fill
9771
9851
  # percentage. To manually specify an initial PTS offset: Choose
9772
- # Seconds. Then specify the number of seconds with PTS offset.
9852
+ # Seconds or Milliseconds. Then specify the number of seconds or
9853
+ # milliseconds with PTS offset.
9773
9854
  # @return [String]
9774
9855
  #
9775
9856
  # @!attribute [rw] scte_35_pid
@@ -9816,6 +9897,7 @@ module Aws::MediaConvert
9816
9897
  :audio_duration,
9817
9898
  :audio_frames_per_pes,
9818
9899
  :audio_pids,
9900
+ :audio_pts_offset_delta,
9819
9901
  :data_pts_control,
9820
9902
  :max_pcr_interval,
9821
9903
  :nielsen_id_3,
@@ -9838,22 +9920,22 @@ module Aws::MediaConvert
9838
9920
  include Aws::Structure
9839
9921
  end
9840
9922
 
9841
- # Metadata about the file.
9923
+ # Metadata and other file information.
9842
9924
  #
9843
9925
  # @!attribute [rw] etag
9844
- # The ETag of the file.
9926
+ # The entity tag (ETag) of the file.
9845
9927
  # @return [String]
9846
9928
  #
9847
9929
  # @!attribute [rw] file_size
9848
- # The size of the file in bytes.
9930
+ # The size of the media file, in bytes.
9849
9931
  # @return [Integer]
9850
9932
  #
9851
9933
  # @!attribute [rw] last_modified
9852
- # The last modification time of the file.
9934
+ # The last modification timestamp of the media file, in Unix time.
9853
9935
  # @return [Time]
9854
9936
  #
9855
9937
  # @!attribute [rw] mime_type
9856
- # The MIME type of the file.
9938
+ # The MIME type of the media file.
9857
9939
  # @return [String]
9858
9940
  #
9859
9941
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Metadata AWS API Documentation
@@ -11625,8 +11707,7 @@ module Aws::MediaConvert
11625
11707
  # The input file that needs to be analyzed.
11626
11708
  #
11627
11709
  # @!attribute [rw] file_url
11628
- # The URI to your input file(s) that is stored in Amazon S3 or on an
11629
- # HTTP(S) server.
11710
+ # Specify the S3, HTTP, or HTTPS URL for your media file.
11630
11711
  # @return [String]
11631
11712
  #
11632
11713
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ProbeInputFile AWS API Documentation
@@ -11641,7 +11722,7 @@ module Aws::MediaConvert
11641
11722
  # about them.
11642
11723
  #
11643
11724
  # @!attribute [rw] input_files
11644
- # The list of input media files to be probed.
11725
+ # Specify a media file to probe.
11645
11726
  # @return [Array<Types::ProbeInputFile>]
11646
11727
  #
11647
11728
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ProbeRequest AWS API Documentation
@@ -11652,12 +11733,11 @@ module Aws::MediaConvert
11652
11733
  include Aws::Structure
11653
11734
  end
11654
11735
 
11655
- # The response from a media file probe operation, providing
11656
- # comprehensive metadata about the file, including its container format,
11657
- # tracks (video, audio, data).
11736
+ # The response from a MediaConvert Probe operation, in JSON form, with
11737
+ # detailed information about your input media.
11658
11738
  #
11659
11739
  # @!attribute [rw] probe_results
11660
- # List of probe results for the input media file(s).
11740
+ # Probe results for your media file.
11661
11741
  # @return [Array<Types::ProbeResult>]
11662
11742
  #
11663
11743
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ProbeResponse AWS API Documentation
@@ -11668,18 +11748,20 @@ module Aws::MediaConvert
11668
11748
  include Aws::Structure
11669
11749
  end
11670
11750
 
11671
- # The metadata and analysis results for a media file.
11751
+ # Probe results for your media file.
11672
11752
  #
11673
11753
  # @!attribute [rw] container
11674
- # Information about the container format of the media file.
11754
+ # The container of your media file. This information helps you
11755
+ # understand the overall structure and details of your media,
11756
+ # including format, duration, and track layout.
11675
11757
  # @return [Types::Container]
11676
11758
  #
11677
11759
  # @!attribute [rw] metadata
11678
- # Metadata about the file.
11760
+ # Metadata and other file information.
11679
11761
  # @return [Types::Metadata]
11680
11762
  #
11681
11763
  # @!attribute [rw] track_mappings
11682
- # List of Track mapping objects.
11764
+ # An array containing track mapping information.
11683
11765
  # @return [Array<Types::TrackMapping>]
11684
11766
  #
11685
11767
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ProbeResult AWS API Documentation
@@ -12477,8 +12559,8 @@ module Aws::MediaConvert
12477
12559
  #
12478
12560
  # @!attribute [rw] system_ids
12479
12561
  # Relates to SPEKE implementation. DRM system identifiers. DASH output
12480
- # groups support a max of two system ids. Other group types support
12481
- # one system id. See
12562
+ # groups support a max of two system ids. HLS output groups support a
12563
+ # max of 3 system ids. Other group types support one system id. See
12482
12564
  # https://dashif.org/identifiers/content\_protection/ for more
12483
12565
  # details.
12484
12566
  # @return [Array<String>]
@@ -12529,10 +12611,9 @@ module Aws::MediaConvert
12529
12611
  # @return [Types::EncryptionContractConfiguration]
12530
12612
  #
12531
12613
  # @!attribute [rw] hls_signaled_system_ids
12532
- # Specify the DRM system ID that you want signaled in the HLS manifest
12533
- # that MediaConvert creates as part of this CMAF package. The HLS
12534
- # manifest can currently signal only one system ID. For more
12535
- # information, see
12614
+ # Specify up to 3 DRM system IDs that you want signaled in the HLS
12615
+ # manifest that MediaConvert creates as part of this CMAF package. For
12616
+ # more information, see
12536
12617
  # https://dashif.org/identifiers/content\_protection/.
12537
12618
  # @return [Array<String>]
12538
12619
  #
@@ -12832,34 +12913,35 @@ module Aws::MediaConvert
12832
12913
  include Aws::Structure
12833
12914
  end
12834
12915
 
12835
- # The track information such as codec, duration, etc.
12916
+ # Details about each track (video, audio, or data) in the media file.
12836
12917
  #
12837
12918
  # @!attribute [rw] audio_properties
12838
- # Properties specific to audio tracks.
12919
+ # Details about the media file's audio track.
12839
12920
  # @return [Types::AudioProperties]
12840
12921
  #
12841
12922
  # @!attribute [rw] codec
12842
- # The codec used for the track.
12923
+ # The codec of the audio or video track, or caption format of the data
12924
+ # track.
12843
12925
  # @return [String]
12844
12926
  #
12845
12927
  # @!attribute [rw] data_properties
12846
- # Properties specific to data tracks.
12928
+ # Details about the media file's data track.
12847
12929
  # @return [Types::DataProperties]
12848
12930
  #
12849
12931
  # @!attribute [rw] duration
12850
- # The duration of the track in seconds.
12932
+ # The duration of the track, in seconds.
12851
12933
  # @return [Float]
12852
12934
  #
12853
12935
  # @!attribute [rw] index
12854
- # The index of the track.
12936
+ # The unique index number of the track, starting at 1.
12855
12937
  # @return [Integer]
12856
12938
  #
12857
12939
  # @!attribute [rw] track_type
12858
- # The type of the track (video, audio, or data).
12940
+ # The type of track: video, audio, or data.
12859
12941
  # @return [String]
12860
12942
  #
12861
12943
  # @!attribute [rw] video_properties
12862
- # Properties specific to video tracks.
12944
+ # Details about the media file's video track.
12863
12945
  # @return [Types::VideoProperties]
12864
12946
  #
12865
12947
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Track AWS API Documentation
@@ -12876,18 +12958,18 @@ module Aws::MediaConvert
12876
12958
  include Aws::Structure
12877
12959
  end
12878
12960
 
12879
- # Track mapping information.
12961
+ # An array containing track mapping information.
12880
12962
  #
12881
12963
  # @!attribute [rw] audio_track_indexes
12882
- # The indexes of the audio tracks.
12964
+ # The index numbers of the audio tracks in your media file.
12883
12965
  # @return [Array<Integer>]
12884
12966
  #
12885
12967
  # @!attribute [rw] data_track_indexes
12886
- # The indexes of the data tracks.
12968
+ # The index numbers of the data tracks in your media file.
12887
12969
  # @return [Array<Integer>]
12888
12970
  #
12889
12971
  # @!attribute [rw] video_track_indexes
12890
- # The indexes of the video tracks.
12972
+ # The index numbers of the video tracks in your media file.
12891
12973
  # @return [Array<Integer>]
12892
12974
  #
12893
12975
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/TrackMapping AWS API Documentation
@@ -14011,38 +14093,38 @@ module Aws::MediaConvert
14011
14093
  include Aws::Structure
14012
14094
  end
14013
14095
 
14014
- # Properties specific to video tracks.
14096
+ # Details about the media file's video track.
14015
14097
  #
14016
14098
  # @!attribute [rw] bit_depth
14017
14099
  # The bit depth of the video track.
14018
14100
  # @return [Integer]
14019
14101
  #
14020
14102
  # @!attribute [rw] bit_rate
14021
- # The bit rate of the video track in bits per second.
14103
+ # The bit rate of the video track, in bits per second.
14022
14104
  # @return [Integer]
14023
14105
  #
14024
14106
  # @!attribute [rw] color_primaries
14025
- # the color primaries.
14107
+ # The color space color primaries of the video track.
14026
14108
  # @return [String]
14027
14109
  #
14028
14110
  # @!attribute [rw] frame_rate
14029
- # the calculated frame rate of the asset.
14111
+ # The frame rate of the video or audio track.
14030
14112
  # @return [Types::FrameRate]
14031
14113
  #
14032
14114
  # @!attribute [rw] height
14033
- # The height of the video track in pixels.
14115
+ # The height of the video track, in pixels.
14034
14116
  # @return [Integer]
14035
14117
  #
14036
14118
  # @!attribute [rw] matrix_coefficients
14037
- # the matrix coefficients.
14119
+ # The color space matrix coefficients of the video track.
14038
14120
  # @return [String]
14039
14121
  #
14040
14122
  # @!attribute [rw] transfer_characteristics
14041
- # the transfer characteristics.
14123
+ # The color space transfer characteristics of the video track.
14042
14124
  # @return [String]
14043
14125
  #
14044
14126
  # @!attribute [rw] width
14045
- # The width of the video track in pixels.
14127
+ # The width of the video track, in pixels.
14046
14128
  # @return [Integer]
14047
14129
  #
14048
14130
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/VideoProperties AWS API Documentation
@@ -54,7 +54,7 @@ module Aws::MediaConvert
54
54
  autoload :EndpointProvider, 'aws-sdk-mediaconvert/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-mediaconvert/endpoints'
56
56
 
57
- GEM_VERSION = '1.153.0'
57
+ GEM_VERSION = '1.155.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -416,6 +416,7 @@ module Aws
416
416
  automated_encoding_settings: {
417
417
  abr_settings: {
418
418
  max_abr_bitrate: ::Integer?,
419
+ max_quality_level: ::Float?,
419
420
  max_renditions: ::Integer?,
420
421
  min_abr_bitrate: ::Integer?,
421
422
  rules: Array[
@@ -517,7 +518,7 @@ module Aws
517
518
  pts_offset_handling_for_b_frames: ("ZERO_BASED" | "MATCH_INITIAL_PTS")?,
518
519
  segment_control: ("SINGLE_FILE" | "SEGMENTED_FILES")?,
519
520
  segment_length: ::Integer?,
520
- segment_length_control: ("EXACT" | "GOP_MULTIPLE")?,
521
+ segment_length_control: ("EXACT" | "GOP_MULTIPLE" | "MATCH")?,
521
522
  stream_inf_resolution: ("INCLUDE" | "EXCLUDE")?,
522
523
  target_duration_compatibility_mode: ("LEGACY" | "SPEC_COMPLIANT")?,
523
524
  video_composition_offsets: ("SIGNED" | "UNSIGNED")?,
@@ -581,7 +582,7 @@ module Aws
581
582
  pts_offset_handling_for_b_frames: ("ZERO_BASED" | "MATCH_INITIAL_PTS")?,
582
583
  segment_control: ("SINGLE_FILE" | "SEGMENTED_FILES")?,
583
584
  segment_length: ::Integer?,
584
- segment_length_control: ("EXACT" | "GOP_MULTIPLE")?,
585
+ segment_length_control: ("EXACT" | "GOP_MULTIPLE" | "MATCH")?,
585
586
  video_composition_offsets: ("SIGNED" | "UNSIGNED")?,
586
587
  write_segment_timeline_in_representation: ("ENABLED" | "DISABLED")?
587
588
  }?,
@@ -680,7 +681,7 @@ module Aws
680
681
  progressive_write_hls_manifest: ("ENABLED" | "DISABLED")?,
681
682
  segment_control: ("SINGLE_FILE" | "SEGMENTED_FILES")?,
682
683
  segment_length: ::Integer?,
683
- segment_length_control: ("EXACT" | "GOP_MULTIPLE")?,
684
+ segment_length_control: ("EXACT" | "GOP_MULTIPLE" | "MATCH")?,
684
685
  segments_per_subdirectory: ::Integer?,
685
686
  stream_inf_resolution: ("INCLUDE" | "EXCLUDE")?,
686
687
  target_duration_compatibility_mode: ("LEGACY" | "SPEC_COMPLIANT")?,
@@ -997,6 +998,7 @@ module Aws
997
998
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
998
999
  audio_frames_per_pes: ::Integer?,
999
1000
  audio_pids: Array[::Integer]?,
1001
+ audio_pts_offset_delta: ::Integer?,
1000
1002
  bitrate: ::Integer?,
1001
1003
  buffer_model: ("MULTIPLEX" | "NONE")?,
1002
1004
  data_pts_control: ("AUTO" | "ALIGN_TO_VIDEO")?,
@@ -1035,7 +1037,7 @@ module Aws
1035
1037
  private_metadata_pid: ::Integer?,
1036
1038
  program_number: ::Integer?,
1037
1039
  pts_offset: ::Integer?,
1038
- pts_offset_mode: ("AUTO" | "SECONDS")?,
1040
+ pts_offset_mode: ("AUTO" | "SECONDS" | "MILLISECONDS")?,
1039
1041
  rate_mode: ("VBR" | "CBR")?,
1040
1042
  scte_35_esam: {
1041
1043
  scte_35_esam_pid: ::Integer?
@@ -1053,6 +1055,7 @@ module Aws
1053
1055
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
1054
1056
  audio_frames_per_pes: ::Integer?,
1055
1057
  audio_pids: Array[::Integer]?,
1058
+ audio_pts_offset_delta: ::Integer?,
1056
1059
  data_pts_control: ("AUTO" | "ALIGN_TO_VIDEO")?,
1057
1060
  max_pcr_interval: ::Integer?,
1058
1061
  nielsen_id_3: ("INSERT" | "NONE")?,
@@ -1064,7 +1067,7 @@ module Aws
1064
1067
  private_metadata_pid: ::Integer?,
1065
1068
  program_number: ::Integer?,
1066
1069
  pts_offset: ::Integer?,
1067
- pts_offset_mode: ("AUTO" | "SECONDS")?,
1070
+ pts_offset_mode: ("AUTO" | "SECONDS" | "MILLISECONDS")?,
1068
1071
  scte_35_pid: ::Integer?,
1069
1072
  scte_35_source: ("PASSTHROUGH" | "NONE")?,
1070
1073
  timed_metadata: ("PASSTHROUGH" | "NONE")?,
@@ -1880,6 +1883,7 @@ module Aws
1880
1883
  automated_encoding_settings: {
1881
1884
  abr_settings: {
1882
1885
  max_abr_bitrate: ::Integer?,
1886
+ max_quality_level: ::Float?,
1883
1887
  max_renditions: ::Integer?,
1884
1888
  min_abr_bitrate: ::Integer?,
1885
1889
  rules: Array[
@@ -1981,7 +1985,7 @@ module Aws
1981
1985
  pts_offset_handling_for_b_frames: ("ZERO_BASED" | "MATCH_INITIAL_PTS")?,
1982
1986
  segment_control: ("SINGLE_FILE" | "SEGMENTED_FILES")?,
1983
1987
  segment_length: ::Integer?,
1984
- segment_length_control: ("EXACT" | "GOP_MULTIPLE")?,
1988
+ segment_length_control: ("EXACT" | "GOP_MULTIPLE" | "MATCH")?,
1985
1989
  stream_inf_resolution: ("INCLUDE" | "EXCLUDE")?,
1986
1990
  target_duration_compatibility_mode: ("LEGACY" | "SPEC_COMPLIANT")?,
1987
1991
  video_composition_offsets: ("SIGNED" | "UNSIGNED")?,
@@ -2045,7 +2049,7 @@ module Aws
2045
2049
  pts_offset_handling_for_b_frames: ("ZERO_BASED" | "MATCH_INITIAL_PTS")?,
2046
2050
  segment_control: ("SINGLE_FILE" | "SEGMENTED_FILES")?,
2047
2051
  segment_length: ::Integer?,
2048
- segment_length_control: ("EXACT" | "GOP_MULTIPLE")?,
2052
+ segment_length_control: ("EXACT" | "GOP_MULTIPLE" | "MATCH")?,
2049
2053
  video_composition_offsets: ("SIGNED" | "UNSIGNED")?,
2050
2054
  write_segment_timeline_in_representation: ("ENABLED" | "DISABLED")?
2051
2055
  }?,
@@ -2144,7 +2148,7 @@ module Aws
2144
2148
  progressive_write_hls_manifest: ("ENABLED" | "DISABLED")?,
2145
2149
  segment_control: ("SINGLE_FILE" | "SEGMENTED_FILES")?,
2146
2150
  segment_length: ::Integer?,
2147
- segment_length_control: ("EXACT" | "GOP_MULTIPLE")?,
2151
+ segment_length_control: ("EXACT" | "GOP_MULTIPLE" | "MATCH")?,
2148
2152
  segments_per_subdirectory: ::Integer?,
2149
2153
  stream_inf_resolution: ("INCLUDE" | "EXCLUDE")?,
2150
2154
  target_duration_compatibility_mode: ("LEGACY" | "SPEC_COMPLIANT")?,
@@ -2461,6 +2465,7 @@ module Aws
2461
2465
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
2462
2466
  audio_frames_per_pes: ::Integer?,
2463
2467
  audio_pids: Array[::Integer]?,
2468
+ audio_pts_offset_delta: ::Integer?,
2464
2469
  bitrate: ::Integer?,
2465
2470
  buffer_model: ("MULTIPLEX" | "NONE")?,
2466
2471
  data_pts_control: ("AUTO" | "ALIGN_TO_VIDEO")?,
@@ -2499,7 +2504,7 @@ module Aws
2499
2504
  private_metadata_pid: ::Integer?,
2500
2505
  program_number: ::Integer?,
2501
2506
  pts_offset: ::Integer?,
2502
- pts_offset_mode: ("AUTO" | "SECONDS")?,
2507
+ pts_offset_mode: ("AUTO" | "SECONDS" | "MILLISECONDS")?,
2503
2508
  rate_mode: ("VBR" | "CBR")?,
2504
2509
  scte_35_esam: {
2505
2510
  scte_35_esam_pid: ::Integer?
@@ -2517,6 +2522,7 @@ module Aws
2517
2522
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
2518
2523
  audio_frames_per_pes: ::Integer?,
2519
2524
  audio_pids: Array[::Integer]?,
2525
+ audio_pts_offset_delta: ::Integer?,
2520
2526
  data_pts_control: ("AUTO" | "ALIGN_TO_VIDEO")?,
2521
2527
  max_pcr_interval: ::Integer?,
2522
2528
  nielsen_id_3: ("INSERT" | "NONE")?,
@@ -2528,7 +2534,7 @@ module Aws
2528
2534
  private_metadata_pid: ::Integer?,
2529
2535
  program_number: ::Integer?,
2530
2536
  pts_offset: ::Integer?,
2531
- pts_offset_mode: ("AUTO" | "SECONDS")?,
2537
+ pts_offset_mode: ("AUTO" | "SECONDS" | "MILLISECONDS")?,
2532
2538
  scte_35_pid: ::Integer?,
2533
2539
  scte_35_source: ("PASSTHROUGH" | "NONE")?,
2534
2540
  timed_metadata: ("PASSTHROUGH" | "NONE")?,
@@ -3314,6 +3320,7 @@ module Aws
3314
3320
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
3315
3321
  audio_frames_per_pes: ::Integer?,
3316
3322
  audio_pids: Array[::Integer]?,
3323
+ audio_pts_offset_delta: ::Integer?,
3317
3324
  bitrate: ::Integer?,
3318
3325
  buffer_model: ("MULTIPLEX" | "NONE")?,
3319
3326
  data_pts_control: ("AUTO" | "ALIGN_TO_VIDEO")?,
@@ -3352,7 +3359,7 @@ module Aws
3352
3359
  private_metadata_pid: ::Integer?,
3353
3360
  program_number: ::Integer?,
3354
3361
  pts_offset: ::Integer?,
3355
- pts_offset_mode: ("AUTO" | "SECONDS")?,
3362
+ pts_offset_mode: ("AUTO" | "SECONDS" | "MILLISECONDS")?,
3356
3363
  rate_mode: ("VBR" | "CBR")?,
3357
3364
  scte_35_esam: {
3358
3365
  scte_35_esam_pid: ::Integer?
@@ -3370,6 +3377,7 @@ module Aws
3370
3377
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
3371
3378
  audio_frames_per_pes: ::Integer?,
3372
3379
  audio_pids: Array[::Integer]?,
3380
+ audio_pts_offset_delta: ::Integer?,
3373
3381
  data_pts_control: ("AUTO" | "ALIGN_TO_VIDEO")?,
3374
3382
  max_pcr_interval: ::Integer?,
3375
3383
  nielsen_id_3: ("INSERT" | "NONE")?,
@@ -3381,7 +3389,7 @@ module Aws
3381
3389
  private_metadata_pid: ::Integer?,
3382
3390
  program_number: ::Integer?,
3383
3391
  pts_offset: ::Integer?,
3384
- pts_offset_mode: ("AUTO" | "SECONDS")?,
3392
+ pts_offset_mode: ("AUTO" | "SECONDS" | "MILLISECONDS")?,
3385
3393
  scte_35_pid: ::Integer?,
3386
3394
  scte_35_source: ("PASSTHROUGH" | "NONE")?,
3387
3395
  timed_metadata: ("PASSTHROUGH" | "NONE")?,
@@ -4435,6 +4443,7 @@ module Aws
4435
4443
  automated_encoding_settings: {
4436
4444
  abr_settings: {
4437
4445
  max_abr_bitrate: ::Integer?,
4446
+ max_quality_level: ::Float?,
4438
4447
  max_renditions: ::Integer?,
4439
4448
  min_abr_bitrate: ::Integer?,
4440
4449
  rules: Array[
@@ -4536,7 +4545,7 @@ module Aws
4536
4545
  pts_offset_handling_for_b_frames: ("ZERO_BASED" | "MATCH_INITIAL_PTS")?,
4537
4546
  segment_control: ("SINGLE_FILE" | "SEGMENTED_FILES")?,
4538
4547
  segment_length: ::Integer?,
4539
- segment_length_control: ("EXACT" | "GOP_MULTIPLE")?,
4548
+ segment_length_control: ("EXACT" | "GOP_MULTIPLE" | "MATCH")?,
4540
4549
  stream_inf_resolution: ("INCLUDE" | "EXCLUDE")?,
4541
4550
  target_duration_compatibility_mode: ("LEGACY" | "SPEC_COMPLIANT")?,
4542
4551
  video_composition_offsets: ("SIGNED" | "UNSIGNED")?,
@@ -4600,7 +4609,7 @@ module Aws
4600
4609
  pts_offset_handling_for_b_frames: ("ZERO_BASED" | "MATCH_INITIAL_PTS")?,
4601
4610
  segment_control: ("SINGLE_FILE" | "SEGMENTED_FILES")?,
4602
4611
  segment_length: ::Integer?,
4603
- segment_length_control: ("EXACT" | "GOP_MULTIPLE")?,
4612
+ segment_length_control: ("EXACT" | "GOP_MULTIPLE" | "MATCH")?,
4604
4613
  video_composition_offsets: ("SIGNED" | "UNSIGNED")?,
4605
4614
  write_segment_timeline_in_representation: ("ENABLED" | "DISABLED")?
4606
4615
  }?,
@@ -4699,7 +4708,7 @@ module Aws
4699
4708
  progressive_write_hls_manifest: ("ENABLED" | "DISABLED")?,
4700
4709
  segment_control: ("SINGLE_FILE" | "SEGMENTED_FILES")?,
4701
4710
  segment_length: ::Integer?,
4702
- segment_length_control: ("EXACT" | "GOP_MULTIPLE")?,
4711
+ segment_length_control: ("EXACT" | "GOP_MULTIPLE" | "MATCH")?,
4703
4712
  segments_per_subdirectory: ::Integer?,
4704
4713
  stream_inf_resolution: ("INCLUDE" | "EXCLUDE")?,
4705
4714
  target_duration_compatibility_mode: ("LEGACY" | "SPEC_COMPLIANT")?,
@@ -5016,6 +5025,7 @@ module Aws
5016
5025
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
5017
5026
  audio_frames_per_pes: ::Integer?,
5018
5027
  audio_pids: Array[::Integer]?,
5028
+ audio_pts_offset_delta: ::Integer?,
5019
5029
  bitrate: ::Integer?,
5020
5030
  buffer_model: ("MULTIPLEX" | "NONE")?,
5021
5031
  data_pts_control: ("AUTO" | "ALIGN_TO_VIDEO")?,
@@ -5054,7 +5064,7 @@ module Aws
5054
5064
  private_metadata_pid: ::Integer?,
5055
5065
  program_number: ::Integer?,
5056
5066
  pts_offset: ::Integer?,
5057
- pts_offset_mode: ("AUTO" | "SECONDS")?,
5067
+ pts_offset_mode: ("AUTO" | "SECONDS" | "MILLISECONDS")?,
5058
5068
  rate_mode: ("VBR" | "CBR")?,
5059
5069
  scte_35_esam: {
5060
5070
  scte_35_esam_pid: ::Integer?
@@ -5072,6 +5082,7 @@ module Aws
5072
5082
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
5073
5083
  audio_frames_per_pes: ::Integer?,
5074
5084
  audio_pids: Array[::Integer]?,
5085
+ audio_pts_offset_delta: ::Integer?,
5075
5086
  data_pts_control: ("AUTO" | "ALIGN_TO_VIDEO")?,
5076
5087
  max_pcr_interval: ::Integer?,
5077
5088
  nielsen_id_3: ("INSERT" | "NONE")?,
@@ -5083,7 +5094,7 @@ module Aws
5083
5094
  private_metadata_pid: ::Integer?,
5084
5095
  program_number: ::Integer?,
5085
5096
  pts_offset: ::Integer?,
5086
- pts_offset_mode: ("AUTO" | "SECONDS")?,
5097
+ pts_offset_mode: ("AUTO" | "SECONDS" | "MILLISECONDS")?,
5087
5098
  scte_35_pid: ::Integer?,
5088
5099
  scte_35_source: ("PASSTHROUGH" | "NONE")?,
5089
5100
  timed_metadata: ("PASSTHROUGH" | "NONE")?,
@@ -5868,6 +5879,7 @@ module Aws
5868
5879
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
5869
5880
  audio_frames_per_pes: ::Integer?,
5870
5881
  audio_pids: Array[::Integer]?,
5882
+ audio_pts_offset_delta: ::Integer?,
5871
5883
  bitrate: ::Integer?,
5872
5884
  buffer_model: ("MULTIPLEX" | "NONE")?,
5873
5885
  data_pts_control: ("AUTO" | "ALIGN_TO_VIDEO")?,
@@ -5906,7 +5918,7 @@ module Aws
5906
5918
  private_metadata_pid: ::Integer?,
5907
5919
  program_number: ::Integer?,
5908
5920
  pts_offset: ::Integer?,
5909
- pts_offset_mode: ("AUTO" | "SECONDS")?,
5921
+ pts_offset_mode: ("AUTO" | "SECONDS" | "MILLISECONDS")?,
5910
5922
  rate_mode: ("VBR" | "CBR")?,
5911
5923
  scte_35_esam: {
5912
5924
  scte_35_esam_pid: ::Integer?
@@ -5924,6 +5936,7 @@ module Aws
5924
5936
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
5925
5937
  audio_frames_per_pes: ::Integer?,
5926
5938
  audio_pids: Array[::Integer]?,
5939
+ audio_pts_offset_delta: ::Integer?,
5927
5940
  data_pts_control: ("AUTO" | "ALIGN_TO_VIDEO")?,
5928
5941
  max_pcr_interval: ::Integer?,
5929
5942
  nielsen_id_3: ("INSERT" | "NONE")?,
@@ -5935,7 +5948,7 @@ module Aws
5935
5948
  private_metadata_pid: ::Integer?,
5936
5949
  program_number: ::Integer?,
5937
5950
  pts_offset: ::Integer?,
5938
- pts_offset_mode: ("AUTO" | "SECONDS")?,
5951
+ pts_offset_mode: ("AUTO" | "SECONDS" | "MILLISECONDS")?,
5939
5952
  scte_35_pid: ::Integer?,
5940
5953
  scte_35_source: ("PASSTHROUGH" | "NONE")?,
5941
5954
  timed_metadata: ("PASSTHROUGH" | "NONE")?,
data/sig/types.rbs CHANGED
@@ -165,6 +165,7 @@ module Aws::MediaConvert
165
165
 
166
166
  class AutomatedAbrSettings
167
167
  attr_accessor max_abr_bitrate: ::Integer
168
+ attr_accessor max_quality_level: ::Float
168
169
  attr_accessor max_renditions: ::Integer
169
170
  attr_accessor min_abr_bitrate: ::Integer
170
171
  attr_accessor rules: ::Array[Types::AutomatedAbrRule]
@@ -380,7 +381,7 @@ module Aws::MediaConvert
380
381
  attr_accessor pts_offset_handling_for_b_frames: ("ZERO_BASED" | "MATCH_INITIAL_PTS")
381
382
  attr_accessor segment_control: ("SINGLE_FILE" | "SEGMENTED_FILES")
382
383
  attr_accessor segment_length: ::Integer
383
- attr_accessor segment_length_control: ("EXACT" | "GOP_MULTIPLE")
384
+ attr_accessor segment_length_control: ("EXACT" | "GOP_MULTIPLE" | "MATCH")
384
385
  attr_accessor stream_inf_resolution: ("INCLUDE" | "EXCLUDE")
385
386
  attr_accessor target_duration_compatibility_mode: ("LEGACY" | "SPEC_COMPLIANT")
386
387
  attr_accessor video_composition_offsets: ("SIGNED" | "UNSIGNED")
@@ -571,7 +572,7 @@ module Aws::MediaConvert
571
572
  attr_accessor pts_offset_handling_for_b_frames: ("ZERO_BASED" | "MATCH_INITIAL_PTS")
572
573
  attr_accessor segment_control: ("SINGLE_FILE" | "SEGMENTED_FILES")
573
574
  attr_accessor segment_length: ::Integer
574
- attr_accessor segment_length_control: ("EXACT" | "GOP_MULTIPLE")
575
+ attr_accessor segment_length_control: ("EXACT" | "GOP_MULTIPLE" | "MATCH")
575
576
  attr_accessor video_composition_offsets: ("SIGNED" | "UNSIGNED")
576
577
  attr_accessor write_segment_timeline_in_representation: ("ENABLED" | "DISABLED")
577
578
  SENSITIVE: []
@@ -1131,7 +1132,7 @@ module Aws::MediaConvert
1131
1132
  attr_accessor progressive_write_hls_manifest: ("ENABLED" | "DISABLED")
1132
1133
  attr_accessor segment_control: ("SINGLE_FILE" | "SEGMENTED_FILES")
1133
1134
  attr_accessor segment_length: ::Integer
1134
- attr_accessor segment_length_control: ("EXACT" | "GOP_MULTIPLE")
1135
+ attr_accessor segment_length_control: ("EXACT" | "GOP_MULTIPLE" | "MATCH")
1135
1136
  attr_accessor segments_per_subdirectory: ::Integer
1136
1137
  attr_accessor stream_inf_resolution: ("INCLUDE" | "EXCLUDE")
1137
1138
  attr_accessor target_duration_compatibility_mode: ("LEGACY" | "SPEC_COMPLIANT")
@@ -1501,6 +1502,7 @@ module Aws::MediaConvert
1501
1502
  attr_accessor audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")
1502
1503
  attr_accessor audio_frames_per_pes: ::Integer
1503
1504
  attr_accessor audio_pids: ::Array[::Integer]
1505
+ attr_accessor audio_pts_offset_delta: ::Integer
1504
1506
  attr_accessor bitrate: ::Integer
1505
1507
  attr_accessor buffer_model: ("MULTIPLEX" | "NONE")
1506
1508
  attr_accessor data_pts_control: ("AUTO" | "ALIGN_TO_VIDEO")
@@ -1528,7 +1530,7 @@ module Aws::MediaConvert
1528
1530
  attr_accessor private_metadata_pid: ::Integer
1529
1531
  attr_accessor program_number: ::Integer
1530
1532
  attr_accessor pts_offset: ::Integer
1531
- attr_accessor pts_offset_mode: ("AUTO" | "SECONDS")
1533
+ attr_accessor pts_offset_mode: ("AUTO" | "SECONDS" | "MILLISECONDS")
1532
1534
  attr_accessor rate_mode: ("VBR" | "CBR")
1533
1535
  attr_accessor scte_35_esam: Types::M2tsScte35Esam
1534
1536
  attr_accessor scte_35_pid: ::Integer
@@ -1546,6 +1548,7 @@ module Aws::MediaConvert
1546
1548
  attr_accessor audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")
1547
1549
  attr_accessor audio_frames_per_pes: ::Integer
1548
1550
  attr_accessor audio_pids: ::Array[::Integer]
1551
+ attr_accessor audio_pts_offset_delta: ::Integer
1549
1552
  attr_accessor data_pts_control: ("AUTO" | "ALIGN_TO_VIDEO")
1550
1553
  attr_accessor max_pcr_interval: ::Integer
1551
1554
  attr_accessor nielsen_id_3: ("INSERT" | "NONE")
@@ -1557,7 +1560,7 @@ module Aws::MediaConvert
1557
1560
  attr_accessor private_metadata_pid: ::Integer
1558
1561
  attr_accessor program_number: ::Integer
1559
1562
  attr_accessor pts_offset: ::Integer
1560
- attr_accessor pts_offset_mode: ("AUTO" | "SECONDS")
1563
+ attr_accessor pts_offset_mode: ("AUTO" | "SECONDS" | "MILLISECONDS")
1561
1564
  attr_accessor scte_35_pid: ::Integer
1562
1565
  attr_accessor scte_35_source: ("PASSTHROUGH" | "NONE")
1563
1566
  attr_accessor timed_metadata: ("PASSTHROUGH" | "NONE")
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.153.0
4
+ version: 1.155.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: 2025-02-28 00:00:00.000000000 Z
11
+ date: 2025-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core