aws-sdk-mediaconvert 1.68.0 → 1.69.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0f2bf7fd8004308fc957d90993ea9cbf0388cfb34ccc2713da449dcca78861e9
4
- data.tar.gz: 68fca526723d3edc11f448c78b4df95e798ec80767500f5cc5b15608ed2b0081
3
+ metadata.gz: e23199d0be30bf4253110a572edd6a974923d47573b8aa7590ac09ce415de861
4
+ data.tar.gz: c0d70a9d98dec732eb9cc09f0979c4ca76dcf07782c9ac94eabea03e09385fe3
5
5
  SHA512:
6
- metadata.gz: e5e7287055de5c324489bf2193abfbd342861c6a37938c93afc54b3eeb13487c2b4fae7b4d595ba13aa44d87cf302172481a72eeaa804c45fa96620f3e465e30
7
- data.tar.gz: 7928f1ced664c23fe854a86e7be5a4e4c87840bc2ba6cd4b67fe8f223f7578d5dd40dd31d47baced62e71708167630c1e575e1fa410a893329e7aee69122b6c1
6
+ metadata.gz: d93d203e380b1f6491a458db488bd07696ec257a8b4798b8443dcad2e9a7109a641148545c1251c27e732dcb03440ef251010f17129dc28622296bde664ae48b
7
+ data.tar.gz: bf5dbba63b070a07139962200aa1c70cda41d941b333e0c4c929fcdc28dca4b14d1a91e17687800ea5c72fb6dd453001958736dd991f21ed470767117f867f35
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.0 (2021-07-09)
5
+ ------------------
6
+
7
+ * Feature - MediaConvert now supports color, style and position information passthrough from 608 and Teletext to SRT and WebVTT subtitles. MediaConvert now also supports Automatic QVBR quality levels for QVBR RateControlMode.
8
+
4
9
  1.68.0 (2021-06-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.69.0
@@ -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.68.0'
51
+ GEM_VERSION = '1.69.0'
52
52
 
53
53
  end
@@ -758,6 +758,7 @@ module Aws::MediaConvert
758
758
  # segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
759
759
  # segment_length: 1,
760
760
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
761
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
761
762
  # write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
762
763
  # write_hls_manifest: "DISABLED", # accepts DISABLED, ENABLED
763
764
  # write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
@@ -882,6 +883,7 @@ module Aws::MediaConvert
882
883
  # segment_length: 1,
883
884
  # segments_per_subdirectory: 1,
884
885
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
886
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
885
887
  # timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
886
888
  # timed_metadata_id_3_period: 1,
887
889
  # timestamp_delta_milliseconds: 1,
@@ -1116,6 +1118,9 @@ module Aws::MediaConvert
1116
1118
  # scc_destination_settings: {
1117
1119
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
1118
1120
  # },
1121
+ # srt_destination_settings: {
1122
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
1123
+ # },
1119
1124
  # teletext_destination_settings: {
1120
1125
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
1121
1126
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -1892,6 +1897,7 @@ module Aws::MediaConvert
1892
1897
  # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_control #=> String, one of "SINGLE_FILE", "SEGMENTED_FILES"
1893
1898
  # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_length #=> Integer
1894
1899
  # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
1900
+ # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
1895
1901
  # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_dash_manifest #=> String, one of "DISABLED", "ENABLED"
1896
1902
  # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_hls_manifest #=> String, one of "DISABLED", "ENABLED"
1897
1903
  # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_segment_timeline_in_representation #=> String, one of "ENABLED", "DISABLED"
@@ -1972,6 +1978,7 @@ module Aws::MediaConvert
1972
1978
  # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
1973
1979
  # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.segments_per_subdirectory #=> Integer
1974
1980
  # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
1981
+ # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
1975
1982
  # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
1976
1983
  # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_period #=> Integer
1977
1984
  # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.timestamp_delta_milliseconds #=> Integer
@@ -2142,6 +2149,7 @@ module Aws::MediaConvert
2142
2149
  # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.embedded_destination_settings.destination_708_service_number #=> Integer
2143
2150
  # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.imsc_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
2144
2151
  # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.scc_destination_settings.framerate #=> String, one of "FRAMERATE_23_97", "FRAMERATE_24", "FRAMERATE_25", "FRAMERATE_29_97_DROPFRAME", "FRAMERATE_29_97_NON_DROPFRAME"
2152
+ # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.srt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
2145
2153
  # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
2146
2154
  # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
2147
2155
  # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
@@ -2921,6 +2929,7 @@ module Aws::MediaConvert
2921
2929
  # segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
2922
2930
  # segment_length: 1,
2923
2931
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
2932
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
2924
2933
  # write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
2925
2934
  # write_hls_manifest: "DISABLED", # accepts DISABLED, ENABLED
2926
2935
  # write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
@@ -3045,6 +3054,7 @@ module Aws::MediaConvert
3045
3054
  # segment_length: 1,
3046
3055
  # segments_per_subdirectory: 1,
3047
3056
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
3057
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
3048
3058
  # timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
3049
3059
  # timed_metadata_id_3_period: 1,
3050
3060
  # timestamp_delta_milliseconds: 1,
@@ -3279,6 +3289,9 @@ module Aws::MediaConvert
3279
3289
  # scc_destination_settings: {
3280
3290
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
3281
3291
  # },
3292
+ # srt_destination_settings: {
3293
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
3294
+ # },
3282
3295
  # teletext_destination_settings: {
3283
3296
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
3284
3297
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -4025,6 +4038,7 @@ module Aws::MediaConvert
4025
4038
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_control #=> String, one of "SINGLE_FILE", "SEGMENTED_FILES"
4026
4039
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_length #=> Integer
4027
4040
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
4041
+ # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
4028
4042
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_dash_manifest #=> String, one of "DISABLED", "ENABLED"
4029
4043
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_hls_manifest #=> String, one of "DISABLED", "ENABLED"
4030
4044
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_segment_timeline_in_representation #=> String, one of "ENABLED", "DISABLED"
@@ -4105,6 +4119,7 @@ module Aws::MediaConvert
4105
4119
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
4106
4120
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.segments_per_subdirectory #=> Integer
4107
4121
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
4122
+ # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
4108
4123
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
4109
4124
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_period #=> Integer
4110
4125
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.timestamp_delta_milliseconds #=> Integer
@@ -4275,6 +4290,7 @@ module Aws::MediaConvert
4275
4290
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.embedded_destination_settings.destination_708_service_number #=> Integer
4276
4291
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.imsc_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
4277
4292
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.scc_destination_settings.framerate #=> String, one of "FRAMERATE_23_97", "FRAMERATE_24", "FRAMERATE_25", "FRAMERATE_29_97_DROPFRAME", "FRAMERATE_29_97_NON_DROPFRAME"
4293
+ # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.srt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
4278
4294
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
4279
4295
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
4280
4296
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
@@ -4926,6 +4942,9 @@ module Aws::MediaConvert
4926
4942
  # scc_destination_settings: {
4927
4943
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
4928
4944
  # },
4945
+ # srt_destination_settings: {
4946
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
4947
+ # },
4929
4948
  # teletext_destination_settings: {
4930
4949
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
4931
4950
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -5599,6 +5618,7 @@ module Aws::MediaConvert
5599
5618
  # resp.preset.settings.caption_descriptions[0].destination_settings.embedded_destination_settings.destination_708_service_number #=> Integer
5600
5619
  # resp.preset.settings.caption_descriptions[0].destination_settings.imsc_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
5601
5620
  # resp.preset.settings.caption_descriptions[0].destination_settings.scc_destination_settings.framerate #=> String, one of "FRAMERATE_23_97", "FRAMERATE_24", "FRAMERATE_25", "FRAMERATE_29_97_DROPFRAME", "FRAMERATE_29_97_NON_DROPFRAME"
5621
+ # resp.preset.settings.caption_descriptions[0].destination_settings.srt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
5602
5622
  # resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
5603
5623
  # resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
5604
5624
  # resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
@@ -6462,6 +6482,7 @@ module Aws::MediaConvert
6462
6482
  # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_control #=> String, one of "SINGLE_FILE", "SEGMENTED_FILES"
6463
6483
  # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_length #=> Integer
6464
6484
  # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
6485
+ # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
6465
6486
  # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_dash_manifest #=> String, one of "DISABLED", "ENABLED"
6466
6487
  # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_hls_manifest #=> String, one of "DISABLED", "ENABLED"
6467
6488
  # resp.job.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_segment_timeline_in_representation #=> String, one of "ENABLED", "DISABLED"
@@ -6542,6 +6563,7 @@ module Aws::MediaConvert
6542
6563
  # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
6543
6564
  # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.segments_per_subdirectory #=> Integer
6544
6565
  # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
6566
+ # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
6545
6567
  # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
6546
6568
  # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_period #=> Integer
6547
6569
  # resp.job.settings.output_groups[0].output_group_settings.hls_group_settings.timestamp_delta_milliseconds #=> Integer
@@ -6712,6 +6734,7 @@ module Aws::MediaConvert
6712
6734
  # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.embedded_destination_settings.destination_708_service_number #=> Integer
6713
6735
  # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.imsc_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
6714
6736
  # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.scc_destination_settings.framerate #=> String, one of "FRAMERATE_23_97", "FRAMERATE_24", "FRAMERATE_25", "FRAMERATE_29_97_DROPFRAME", "FRAMERATE_29_97_NON_DROPFRAME"
6737
+ # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.srt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
6715
6738
  # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
6716
6739
  # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
6717
6740
  # resp.job.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
@@ -7355,6 +7378,7 @@ module Aws::MediaConvert
7355
7378
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_control #=> String, one of "SINGLE_FILE", "SEGMENTED_FILES"
7356
7379
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_length #=> Integer
7357
7380
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
7381
+ # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
7358
7382
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_dash_manifest #=> String, one of "DISABLED", "ENABLED"
7359
7383
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_hls_manifest #=> String, one of "DISABLED", "ENABLED"
7360
7384
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_segment_timeline_in_representation #=> String, one of "ENABLED", "DISABLED"
@@ -7435,6 +7459,7 @@ module Aws::MediaConvert
7435
7459
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
7436
7460
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.segments_per_subdirectory #=> Integer
7437
7461
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
7462
+ # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
7438
7463
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
7439
7464
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_period #=> Integer
7440
7465
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.timestamp_delta_milliseconds #=> Integer
@@ -7605,6 +7630,7 @@ module Aws::MediaConvert
7605
7630
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.embedded_destination_settings.destination_708_service_number #=> Integer
7606
7631
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.imsc_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
7607
7632
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.scc_destination_settings.framerate #=> String, one of "FRAMERATE_23_97", "FRAMERATE_24", "FRAMERATE_25", "FRAMERATE_29_97_DROPFRAME", "FRAMERATE_29_97_NON_DROPFRAME"
7633
+ # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.srt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
7608
7634
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
7609
7635
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
7610
7636
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
@@ -8202,6 +8228,7 @@ module Aws::MediaConvert
8202
8228
  # resp.preset.settings.caption_descriptions[0].destination_settings.embedded_destination_settings.destination_708_service_number #=> Integer
8203
8229
  # resp.preset.settings.caption_descriptions[0].destination_settings.imsc_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
8204
8230
  # resp.preset.settings.caption_descriptions[0].destination_settings.scc_destination_settings.framerate #=> String, one of "FRAMERATE_23_97", "FRAMERATE_24", "FRAMERATE_25", "FRAMERATE_29_97_DROPFRAME", "FRAMERATE_29_97_NON_DROPFRAME"
8231
+ # resp.preset.settings.caption_descriptions[0].destination_settings.srt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
8205
8232
  # resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
8206
8233
  # resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
8207
8234
  # resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
@@ -8894,6 +8921,7 @@ module Aws::MediaConvert
8894
8921
  # resp.job_templates[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_control #=> String, one of "SINGLE_FILE", "SEGMENTED_FILES"
8895
8922
  # resp.job_templates[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_length #=> Integer
8896
8923
  # resp.job_templates[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
8924
+ # resp.job_templates[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
8897
8925
  # resp.job_templates[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.write_dash_manifest #=> String, one of "DISABLED", "ENABLED"
8898
8926
  # resp.job_templates[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.write_hls_manifest #=> String, one of "DISABLED", "ENABLED"
8899
8927
  # resp.job_templates[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.write_segment_timeline_in_representation #=> String, one of "ENABLED", "DISABLED"
@@ -8974,6 +9002,7 @@ module Aws::MediaConvert
8974
9002
  # resp.job_templates[0].settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
8975
9003
  # resp.job_templates[0].settings.output_groups[0].output_group_settings.hls_group_settings.segments_per_subdirectory #=> Integer
8976
9004
  # resp.job_templates[0].settings.output_groups[0].output_group_settings.hls_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
9005
+ # resp.job_templates[0].settings.output_groups[0].output_group_settings.hls_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
8977
9006
  # resp.job_templates[0].settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
8978
9007
  # resp.job_templates[0].settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_period #=> Integer
8979
9008
  # resp.job_templates[0].settings.output_groups[0].output_group_settings.hls_group_settings.timestamp_delta_milliseconds #=> Integer
@@ -9144,6 +9173,7 @@ module Aws::MediaConvert
9144
9173
  # resp.job_templates[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.embedded_destination_settings.destination_708_service_number #=> Integer
9145
9174
  # resp.job_templates[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.imsc_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
9146
9175
  # resp.job_templates[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.scc_destination_settings.framerate #=> String, one of "FRAMERATE_23_97", "FRAMERATE_24", "FRAMERATE_25", "FRAMERATE_29_97_DROPFRAME", "FRAMERATE_29_97_NON_DROPFRAME"
9176
+ # resp.job_templates[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.srt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
9147
9177
  # resp.job_templates[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
9148
9178
  # resp.job_templates[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
9149
9179
  # resp.job_templates[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
@@ -9837,6 +9867,7 @@ module Aws::MediaConvert
9837
9867
  # resp.jobs[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_control #=> String, one of "SINGLE_FILE", "SEGMENTED_FILES"
9838
9868
  # resp.jobs[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_length #=> Integer
9839
9869
  # resp.jobs[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
9870
+ # resp.jobs[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
9840
9871
  # resp.jobs[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.write_dash_manifest #=> String, one of "DISABLED", "ENABLED"
9841
9872
  # resp.jobs[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.write_hls_manifest #=> String, one of "DISABLED", "ENABLED"
9842
9873
  # resp.jobs[0].settings.output_groups[0].output_group_settings.cmaf_group_settings.write_segment_timeline_in_representation #=> String, one of "ENABLED", "DISABLED"
@@ -9917,6 +9948,7 @@ module Aws::MediaConvert
9917
9948
  # resp.jobs[0].settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
9918
9949
  # resp.jobs[0].settings.output_groups[0].output_group_settings.hls_group_settings.segments_per_subdirectory #=> Integer
9919
9950
  # resp.jobs[0].settings.output_groups[0].output_group_settings.hls_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
9951
+ # resp.jobs[0].settings.output_groups[0].output_group_settings.hls_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
9920
9952
  # resp.jobs[0].settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
9921
9953
  # resp.jobs[0].settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_period #=> Integer
9922
9954
  # resp.jobs[0].settings.output_groups[0].output_group_settings.hls_group_settings.timestamp_delta_milliseconds #=> Integer
@@ -10087,6 +10119,7 @@ module Aws::MediaConvert
10087
10119
  # resp.jobs[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.embedded_destination_settings.destination_708_service_number #=> Integer
10088
10120
  # resp.jobs[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.imsc_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
10089
10121
  # resp.jobs[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.scc_destination_settings.framerate #=> String, one of "FRAMERATE_23_97", "FRAMERATE_24", "FRAMERATE_25", "FRAMERATE_29_97_DROPFRAME", "FRAMERATE_29_97_NON_DROPFRAME"
10122
+ # resp.jobs[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.srt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
10090
10123
  # resp.jobs[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
10091
10124
  # resp.jobs[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
10092
10125
  # resp.jobs[0].settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
@@ -10722,6 +10755,7 @@ module Aws::MediaConvert
10722
10755
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.embedded_destination_settings.destination_708_service_number #=> Integer
10723
10756
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.imsc_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
10724
10757
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.scc_destination_settings.framerate #=> String, one of "FRAMERATE_23_97", "FRAMERATE_24", "FRAMERATE_25", "FRAMERATE_29_97_DROPFRAME", "FRAMERATE_29_97_NON_DROPFRAME"
10758
+ # resp.presets[0].settings.caption_descriptions[0].destination_settings.srt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
10725
10759
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
10726
10760
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
10727
10761
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
@@ -11626,6 +11660,7 @@ module Aws::MediaConvert
11626
11660
  # segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
11627
11661
  # segment_length: 1,
11628
11662
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
11663
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
11629
11664
  # write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
11630
11665
  # write_hls_manifest: "DISABLED", # accepts DISABLED, ENABLED
11631
11666
  # write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
@@ -11750,6 +11785,7 @@ module Aws::MediaConvert
11750
11785
  # segment_length: 1,
11751
11786
  # segments_per_subdirectory: 1,
11752
11787
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
11788
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
11753
11789
  # timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
11754
11790
  # timed_metadata_id_3_period: 1,
11755
11791
  # timestamp_delta_milliseconds: 1,
@@ -11984,6 +12020,9 @@ module Aws::MediaConvert
11984
12020
  # scc_destination_settings: {
11985
12021
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
11986
12022
  # },
12023
+ # srt_destination_settings: {
12024
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
12025
+ # },
11987
12026
  # teletext_destination_settings: {
11988
12027
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
11989
12028
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -12727,6 +12766,7 @@ module Aws::MediaConvert
12727
12766
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_control #=> String, one of "SINGLE_FILE", "SEGMENTED_FILES"
12728
12767
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.segment_length #=> Integer
12729
12768
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
12769
+ # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
12730
12770
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_dash_manifest #=> String, one of "DISABLED", "ENABLED"
12731
12771
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_hls_manifest #=> String, one of "DISABLED", "ENABLED"
12732
12772
  # resp.job_template.settings.output_groups[0].output_group_settings.cmaf_group_settings.write_segment_timeline_in_representation #=> String, one of "ENABLED", "DISABLED"
@@ -12807,6 +12847,7 @@ module Aws::MediaConvert
12807
12847
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
12808
12848
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.segments_per_subdirectory #=> Integer
12809
12849
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.stream_inf_resolution #=> String, one of "INCLUDE", "EXCLUDE"
12850
+ # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.target_duration_compatibility_mode #=> String, one of "LEGACY", "SPEC_COMPLIANT"
12810
12851
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
12811
12852
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.timed_metadata_id_3_period #=> Integer
12812
12853
  # resp.job_template.settings.output_groups[0].output_group_settings.hls_group_settings.timestamp_delta_milliseconds #=> Integer
@@ -12977,6 +13018,7 @@ module Aws::MediaConvert
12977
13018
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.embedded_destination_settings.destination_708_service_number #=> Integer
12978
13019
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.imsc_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
12979
13020
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.scc_destination_settings.framerate #=> String, one of "FRAMERATE_23_97", "FRAMERATE_24", "FRAMERATE_25", "FRAMERATE_29_97_DROPFRAME", "FRAMERATE_29_97_NON_DROPFRAME"
13021
+ # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.srt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
12980
13022
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
12981
13023
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
12982
13024
  # resp.job_template.settings.output_groups[0].outputs[0].caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
@@ -13622,6 +13664,9 @@ module Aws::MediaConvert
13622
13664
  # scc_destination_settings: {
13623
13665
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
13624
13666
  # },
13667
+ # srt_destination_settings: {
13668
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
13669
+ # },
13625
13670
  # teletext_destination_settings: {
13626
13671
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
13627
13672
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -14292,6 +14337,7 @@ module Aws::MediaConvert
14292
14337
  # resp.preset.settings.caption_descriptions[0].destination_settings.embedded_destination_settings.destination_708_service_number #=> Integer
14293
14338
  # resp.preset.settings.caption_descriptions[0].destination_settings.imsc_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
14294
14339
  # resp.preset.settings.caption_descriptions[0].destination_settings.scc_destination_settings.framerate #=> String, one of "FRAMERATE_23_97", "FRAMERATE_24", "FRAMERATE_25", "FRAMERATE_29_97_DROPFRAME", "FRAMERATE_29_97_NON_DROPFRAME"
14340
+ # resp.preset.settings.caption_descriptions[0].destination_settings.srt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
14295
14341
  # resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
14296
14342
  # resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
14297
14343
  # resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
@@ -14780,7 +14826,7 @@ module Aws::MediaConvert
14780
14826
  params: params,
14781
14827
  config: config)
14782
14828
  context[:gem_name] = 'aws-sdk-mediaconvert'
14783
- context[:gem_version] = '1.68.0'
14829
+ context[:gem_version] = '1.69.0'
14784
14830
  Seahorse::Client::Request.new(handlers, context)
14785
14831
  end
14786
14832
 
@@ -112,6 +112,7 @@ module Aws::MediaConvert
112
112
  CmafPtsOffsetHandlingForBFrames = Shapes::StringShape.new(name: 'CmafPtsOffsetHandlingForBFrames')
113
113
  CmafSegmentControl = Shapes::StringShape.new(name: 'CmafSegmentControl')
114
114
  CmafStreamInfResolution = Shapes::StringShape.new(name: 'CmafStreamInfResolution')
115
+ CmafTargetDurationCompatibilityMode = Shapes::StringShape.new(name: 'CmafTargetDurationCompatibilityMode')
115
116
  CmafWriteDASHManifest = Shapes::StringShape.new(name: 'CmafWriteDASHManifest')
116
117
  CmafWriteHLSManifest = Shapes::StringShape.new(name: 'CmafWriteHLSManifest')
117
118
  CmafWriteSegmentTimelineInRepresentation = Shapes::StringShape.new(name: 'CmafWriteSegmentTimelineInRepresentation')
@@ -318,6 +319,7 @@ module Aws::MediaConvert
318
319
  HlsSegmentControl = Shapes::StringShape.new(name: 'HlsSegmentControl')
319
320
  HlsSettings = Shapes::StructureShape.new(name: 'HlsSettings')
320
321
  HlsStreamInfResolution = Shapes::StringShape.new(name: 'HlsStreamInfResolution')
322
+ HlsTargetDurationCompatibilityMode = Shapes::StringShape.new(name: 'HlsTargetDurationCompatibilityMode')
321
323
  HlsTimedMetadataId3Frame = Shapes::StringShape.new(name: 'HlsTimedMetadataId3Frame')
322
324
  HopDestination = Shapes::StructureShape.new(name: 'HopDestination')
323
325
  Id3Insertion = Shapes::StructureShape.new(name: 'Id3Insertion')
@@ -495,6 +497,8 @@ module Aws::MediaConvert
495
497
  SimulateReservedQueue = Shapes::StringShape.new(name: 'SimulateReservedQueue')
496
498
  SpekeKeyProvider = Shapes::StructureShape.new(name: 'SpekeKeyProvider')
497
499
  SpekeKeyProviderCmaf = Shapes::StructureShape.new(name: 'SpekeKeyProviderCmaf')
500
+ SrtDestinationSettings = Shapes::StructureShape.new(name: 'SrtDestinationSettings')
501
+ SrtStylePassthrough = Shapes::StringShape.new(name: 'SrtStylePassthrough')
498
502
  StaticKeyProvider = Shapes::StructureShape.new(name: 'StaticKeyProvider')
499
503
  StatusUpdateInterval = Shapes::StringShape.new(name: 'StatusUpdateInterval')
500
504
  TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
@@ -951,6 +955,7 @@ module Aws::MediaConvert
951
955
  CaptionDestinationSettings.add_member(:embedded_destination_settings, Shapes::ShapeRef.new(shape: EmbeddedDestinationSettings, location_name: "embeddedDestinationSettings"))
952
956
  CaptionDestinationSettings.add_member(:imsc_destination_settings, Shapes::ShapeRef.new(shape: ImscDestinationSettings, location_name: "imscDestinationSettings"))
953
957
  CaptionDestinationSettings.add_member(:scc_destination_settings, Shapes::ShapeRef.new(shape: SccDestinationSettings, location_name: "sccDestinationSettings"))
958
+ CaptionDestinationSettings.add_member(:srt_destination_settings, Shapes::ShapeRef.new(shape: SrtDestinationSettings, location_name: "srtDestinationSettings"))
954
959
  CaptionDestinationSettings.add_member(:teletext_destination_settings, Shapes::ShapeRef.new(shape: TeletextDestinationSettings, location_name: "teletextDestinationSettings"))
955
960
  CaptionDestinationSettings.add_member(:ttml_destination_settings, Shapes::ShapeRef.new(shape: TtmlDestinationSettings, location_name: "ttmlDestinationSettings"))
956
961
  CaptionDestinationSettings.add_member(:webvtt_destination_settings, Shapes::ShapeRef.new(shape: WebvttDestinationSettings, location_name: "webvttDestinationSettings"))
@@ -1008,6 +1013,7 @@ module Aws::MediaConvert
1008
1013
  CmafGroupSettings.add_member(:segment_control, Shapes::ShapeRef.new(shape: CmafSegmentControl, location_name: "segmentControl"))
1009
1014
  CmafGroupSettings.add_member(:segment_length, Shapes::ShapeRef.new(shape: __integerMin1Max2147483647, location_name: "segmentLength"))
1010
1015
  CmafGroupSettings.add_member(:stream_inf_resolution, Shapes::ShapeRef.new(shape: CmafStreamInfResolution, location_name: "streamInfResolution"))
1016
+ CmafGroupSettings.add_member(:target_duration_compatibility_mode, Shapes::ShapeRef.new(shape: CmafTargetDurationCompatibilityMode, location_name: "targetDurationCompatibilityMode"))
1011
1017
  CmafGroupSettings.add_member(:write_dash_manifest, Shapes::ShapeRef.new(shape: CmafWriteDASHManifest, location_name: "writeDashManifest"))
1012
1018
  CmafGroupSettings.add_member(:write_hls_manifest, Shapes::ShapeRef.new(shape: CmafWriteHLSManifest, location_name: "writeHlsManifest"))
1013
1019
  CmafGroupSettings.add_member(:write_segment_timeline_in_representation, Shapes::ShapeRef.new(shape: CmafWriteSegmentTimelineInRepresentation, location_name: "writeSegmentTimelineInRepresentation"))
@@ -1484,6 +1490,7 @@ module Aws::MediaConvert
1484
1490
  HlsGroupSettings.add_member(:segment_length, Shapes::ShapeRef.new(shape: __integerMin1Max2147483647, location_name: "segmentLength"))
1485
1491
  HlsGroupSettings.add_member(:segments_per_subdirectory, Shapes::ShapeRef.new(shape: __integerMin1Max2147483647, location_name: "segmentsPerSubdirectory"))
1486
1492
  HlsGroupSettings.add_member(:stream_inf_resolution, Shapes::ShapeRef.new(shape: HlsStreamInfResolution, location_name: "streamInfResolution"))
1493
+ HlsGroupSettings.add_member(:target_duration_compatibility_mode, Shapes::ShapeRef.new(shape: HlsTargetDurationCompatibilityMode, location_name: "targetDurationCompatibilityMode"))
1487
1494
  HlsGroupSettings.add_member(:timed_metadata_id_3_frame, Shapes::ShapeRef.new(shape: HlsTimedMetadataId3Frame, location_name: "timedMetadataId3Frame"))
1488
1495
  HlsGroupSettings.add_member(:timed_metadata_id_3_period, Shapes::ShapeRef.new(shape: __integerMinNegative2147483648Max2147483647, location_name: "timedMetadataId3Period"))
1489
1496
  HlsGroupSettings.add_member(:timestamp_delta_milliseconds, Shapes::ShapeRef.new(shape: __integerMinNegative2147483648Max2147483647, location_name: "timestampDeltaMilliseconds"))
@@ -2089,6 +2096,9 @@ module Aws::MediaConvert
2089
2096
  SpekeKeyProviderCmaf.add_member(:url, Shapes::ShapeRef.new(shape: __stringPatternHttps, location_name: "url"))
2090
2097
  SpekeKeyProviderCmaf.struct_class = Types::SpekeKeyProviderCmaf
2091
2098
 
2099
+ SrtDestinationSettings.add_member(:style_passthrough, Shapes::ShapeRef.new(shape: SrtStylePassthrough, location_name: "stylePassthrough"))
2100
+ SrtDestinationSettings.struct_class = Types::SrtDestinationSettings
2101
+
2092
2102
  StaticKeyProvider.add_member(:key_format, Shapes::ShapeRef.new(shape: __stringPatternIdentityAZaZ26AZaZ09163, location_name: "keyFormat"))
2093
2103
  StaticKeyProvider.add_member(:key_format_versions, Shapes::ShapeRef.new(shape: __stringPatternDD, location_name: "keyFormatVersions"))
2094
2104
  StaticKeyProvider.add_member(:static_key_value, Shapes::ShapeRef.new(shape: __stringPatternAZaZ0932, location_name: "staticKeyValue"))
@@ -1150,10 +1150,9 @@ module Aws::MediaConvert
1150
1150
  include Aws::Structure
1151
1151
  end
1152
1152
 
1153
- # Settings for quality-defined variable bitrate encoding with the AV1
1154
- # codec. Required when you set Rate control mode to QVBR. Not valid when
1155
- # you set Rate control mode to a value other than QVBR, or when you
1156
- # don't define Rate control mode.
1153
+ # Settings for quality-defined variable bitrate encoding with the H.265
1154
+ # codec. Use these settings only when you set QVBR for Rate control mode
1155
+ # (RateControlMode).
1157
1156
  #
1158
1157
  # @note When making an API call, you may pass Av1QvbrSettings
1159
1158
  # data as a hash:
@@ -1164,15 +1163,20 @@ module Aws::MediaConvert
1164
1163
  # }
1165
1164
  #
1166
1165
  # @!attribute [rw] qvbr_quality_level
1167
- # Required when you use QVBR rate control mode. That is, when you
1168
- # specify qvbrSettings within av1Settings. Specify the general target
1169
- # quality level for this output, from 1 to 10. Use higher numbers for
1170
- # greater quality. Level 10 results in nearly lossless compression.
1171
- # The quality level for most broadcast-quality transcodes is between 6
1172
- # and 9. Optionally, to specify a value between whole numbers, also
1173
- # provide a value for the setting qvbrQualityLevelFineTune. For
1174
- # example, if you want your QVBR quality level to be 7.33, set
1175
- # qvbrQualityLevel to 7 and set qvbrQualityLevelFineTune to .33.
1166
+ # Use this setting only when you set Rate control mode
1167
+ # (RateControlMode) to QVBR. Specify the target quality level for this
1168
+ # output. MediaConvert determines the right number of bits to use for
1169
+ # each part of the video to maintain the video quality that you
1170
+ # specify. When you keep the default value, AUTO, MediaConvert picks a
1171
+ # quality level for you, based on characteristics of your input video.
1172
+ # If you prefer to specify a quality level, specify a number from 1
1173
+ # through 10. Use higher numbers for greater quality. Level 10 results
1174
+ # in nearly lossless compression. The quality level for most
1175
+ # broadcast-quality transcodes is between 6 and 9. Optionally, to
1176
+ # specify a value between whole numbers, also provide a value for the
1177
+ # setting qvbrQualityLevelFineTune. For example, if you want your QVBR
1178
+ # quality level to be 7.33, set qvbrQualityLevel to 7 and set
1179
+ # qvbrQualityLevelFineTune to .33.
1176
1180
  # @return [Integer]
1177
1181
  #
1178
1182
  # @!attribute [rw] qvbr_quality_level_fine_tune
@@ -1296,10 +1300,9 @@ module Aws::MediaConvert
1296
1300
  # @return [Integer]
1297
1301
  #
1298
1302
  # @!attribute [rw] qvbr_settings
1299
- # Settings for quality-defined variable bitrate encoding with the AV1
1300
- # codec. Required when you set Rate control mode to QVBR. Not valid
1301
- # when you set Rate control mode to a value other than QVBR, or when
1302
- # you don't define Rate control mode.
1303
+ # Settings for quality-defined variable bitrate encoding with the
1304
+ # H.265 codec. Use these settings only when you set QVBR for Rate
1305
+ # control mode (RateControlMode).
1303
1306
  # @return [Types::Av1QvbrSettings]
1304
1307
  #
1305
1308
  # @!attribute [rw] rate_control_mode
@@ -1858,6 +1861,9 @@ module Aws::MediaConvert
1858
1861
  # scc_destination_settings: {
1859
1862
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
1860
1863
  # },
1864
+ # srt_destination_settings: {
1865
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
1866
+ # },
1861
1867
  # teletext_destination_settings: {
1862
1868
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
1863
1869
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -1991,6 +1997,9 @@ module Aws::MediaConvert
1991
1997
  # scc_destination_settings: {
1992
1998
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
1993
1999
  # },
2000
+ # srt_destination_settings: {
2001
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
2002
+ # },
1994
2003
  # teletext_destination_settings: {
1995
2004
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
1996
2005
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -2123,6 +2132,9 @@ module Aws::MediaConvert
2123
2132
  # scc_destination_settings: {
2124
2133
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
2125
2134
  # },
2135
+ # srt_destination_settings: {
2136
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
2137
+ # },
2126
2138
  # teletext_destination_settings: {
2127
2139
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
2128
2140
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -2198,6 +2210,10 @@ module Aws::MediaConvert
2198
2210
  # SCC.
2199
2211
  # @return [Types::SccDestinationSettings]
2200
2212
  #
2213
+ # @!attribute [rw] srt_destination_settings
2214
+ # SRT Destination Settings
2215
+ # @return [Types::SrtDestinationSettings]
2216
+ #
2201
2217
  # @!attribute [rw] teletext_destination_settings
2202
2218
  # Settings related to teletext captions. Set up teletext captions in
2203
2219
  # the same output as your video. For more information, see
@@ -2231,6 +2247,7 @@ module Aws::MediaConvert
2231
2247
  :embedded_destination_settings,
2232
2248
  :imsc_destination_settings,
2233
2249
  :scc_destination_settings,
2250
+ :srt_destination_settings,
2234
2251
  :teletext_destination_settings,
2235
2252
  :ttml_destination_settings,
2236
2253
  :webvtt_destination_settings)
@@ -2691,6 +2708,7 @@ module Aws::MediaConvert
2691
2708
  # segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
2692
2709
  # segment_length: 1,
2693
2710
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
2711
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
2694
2712
  # write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
2695
2713
  # write_hls_manifest: "DISABLED", # accepts DISABLED, ENABLED
2696
2714
  # write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
@@ -2846,6 +2864,19 @@ module Aws::MediaConvert
2846
2864
  # EXT-X-STREAM-INF tag of variant manifest.
2847
2865
  # @return [String]
2848
2866
  #
2867
+ # @!attribute [rw] target_duration_compatibility_mode
2868
+ # When set to LEGACY, the segment target duration is always rounded up
2869
+ # to the nearest integer value above its current value in seconds.
2870
+ # When set to SPEC\\\\\_COMPLIANT, the segment target duration is
2871
+ # rounded up to the nearest integer value if fraction seconds are
2872
+ # greater than or equal to 0.5 (>= 0.5) and rounded down if less than
2873
+ # 0.5 (< 0.5). You may need to use LEGACY if your client needs to
2874
+ # ensure that the target duration is always longer than the actual
2875
+ # duration of the segment. Some older players may experience
2876
+ # interrupted playback when the actual duration of a track in a
2877
+ # segment is longer than the target duration.
2878
+ # @return [String]
2879
+ #
2849
2880
  # @!attribute [rw] write_dash_manifest
2850
2881
  # When set to ENABLED, a DASH MPD manifest will be generated for this
2851
2882
  # output.
@@ -2888,6 +2919,7 @@ module Aws::MediaConvert
2888
2919
  :segment_control,
2889
2920
  :segment_length,
2890
2921
  :stream_inf_resolution,
2922
+ :target_duration_compatibility_mode,
2891
2923
  :write_dash_manifest,
2892
2924
  :write_hls_manifest,
2893
2925
  :write_segment_timeline_in_representation)
@@ -3648,6 +3680,7 @@ module Aws::MediaConvert
3648
3680
  # segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
3649
3681
  # segment_length: 1,
3650
3682
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
3683
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
3651
3684
  # write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
3652
3685
  # write_hls_manifest: "DISABLED", # accepts DISABLED, ENABLED
3653
3686
  # write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
@@ -3772,6 +3805,7 @@ module Aws::MediaConvert
3772
3805
  # segment_length: 1,
3773
3806
  # segments_per_subdirectory: 1,
3774
3807
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
3808
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
3775
3809
  # timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
3776
3810
  # timed_metadata_id_3_period: 1,
3777
3811
  # timestamp_delta_milliseconds: 1,
@@ -4006,6 +4040,9 @@ module Aws::MediaConvert
4006
4040
  # scc_destination_settings: {
4007
4041
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
4008
4042
  # },
4043
+ # srt_destination_settings: {
4044
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
4045
+ # },
4009
4046
  # teletext_destination_settings: {
4010
4047
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
4011
4048
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -4982,6 +5019,7 @@ module Aws::MediaConvert
4982
5019
  # segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
4983
5020
  # segment_length: 1,
4984
5021
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
5022
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
4985
5023
  # write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
4986
5024
  # write_hls_manifest: "DISABLED", # accepts DISABLED, ENABLED
4987
5025
  # write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
@@ -5106,6 +5144,7 @@ module Aws::MediaConvert
5106
5144
  # segment_length: 1,
5107
5145
  # segments_per_subdirectory: 1,
5108
5146
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
5147
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
5109
5148
  # timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
5110
5149
  # timed_metadata_id_3_period: 1,
5111
5150
  # timestamp_delta_milliseconds: 1,
@@ -5340,6 +5379,9 @@ module Aws::MediaConvert
5340
5379
  # scc_destination_settings: {
5341
5380
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
5342
5381
  # },
5382
+ # srt_destination_settings: {
5383
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
5384
+ # },
5343
5385
  # teletext_destination_settings: {
5344
5386
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
5345
5387
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -6186,6 +6228,9 @@ module Aws::MediaConvert
6186
6228
  # scc_destination_settings: {
6187
6229
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
6188
6230
  # },
6231
+ # srt_destination_settings: {
6232
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
6233
+ # },
6189
6234
  # teletext_destination_settings: {
6190
6235
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
6191
6236
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -7669,7 +7714,7 @@ module Aws::MediaConvert
7669
7714
  # @return [Integer]
7670
7715
  #
7671
7716
  # @!attribute [rw] font_color
7672
- # Specifies the color of the burned-in captions. This option is not
7717
+ # Specifies the color of the DVB-SUB captions. This option is not
7673
7718
  # valid for source captions that are STL, 608/embedded or teletext.
7674
7719
  # These source settings are already pre-defined by the caption stream.
7675
7720
  # All burn-in and DVB-Sub font settings must match.
@@ -8867,10 +8912,9 @@ module Aws::MediaConvert
8867
8912
  include Aws::Structure
8868
8913
  end
8869
8914
 
8870
- # Settings for quality-defined variable bitrate encoding with the H.264
8871
- # codec. Required when you set Rate control mode to QVBR. Not valid when
8872
- # you set Rate control mode to a value other than QVBR, or when you
8873
- # don't define Rate control mode.
8915
+ # Settings for quality-defined variable bitrate encoding with the H.265
8916
+ # codec. Use these settings only when you set QVBR for Rate control mode
8917
+ # (RateControlMode).
8874
8918
  #
8875
8919
  # @note When making an API call, you may pass H264QvbrSettings
8876
8920
  # data as a hash:
@@ -8892,15 +8936,20 @@ module Aws::MediaConvert
8892
8936
  # @return [Integer]
8893
8937
  #
8894
8938
  # @!attribute [rw] qvbr_quality_level
8895
- # Required when you use QVBR rate control mode. That is, when you
8896
- # specify qvbrSettings within h264Settings. Specify the general target
8897
- # quality level for this output, from 1 to 10. Use higher numbers for
8898
- # greater quality. Level 10 results in nearly lossless compression.
8899
- # The quality level for most broadcast-quality transcodes is between 6
8900
- # and 9. Optionally, to specify a value between whole numbers, also
8901
- # provide a value for the setting qvbrQualityLevelFineTune. For
8902
- # example, if you want your QVBR quality level to be 7.33, set
8903
- # qvbrQualityLevel to 7 and set qvbrQualityLevelFineTune to .33.
8939
+ # Use this setting only when you set Rate control mode
8940
+ # (RateControlMode) to QVBR. Specify the target quality level for this
8941
+ # output. MediaConvert determines the right number of bits to use for
8942
+ # each part of the video to maintain the video quality that you
8943
+ # specify. When you keep the default value, AUTO, MediaConvert picks a
8944
+ # quality level for you, based on characteristics of your input video.
8945
+ # If you prefer to specify a quality level, specify a number from 1
8946
+ # through 10. Use higher numbers for greater quality. Level 10 results
8947
+ # in nearly lossless compression. The quality level for most
8948
+ # broadcast-quality transcodes is between 6 and 9. Optionally, to
8949
+ # specify a value between whole numbers, also provide a value for the
8950
+ # setting qvbrQualityLevelFineTune. For example, if you want your QVBR
8951
+ # quality level to be 7.33, set qvbrQualityLevel to 7 and set
8952
+ # qvbrQualityLevelFineTune to .33.
8904
8953
  # @return [Integer]
8905
8954
  #
8906
8955
  # @!attribute [rw] qvbr_quality_level_fine_tune
@@ -9211,9 +9260,8 @@ module Aws::MediaConvert
9211
9260
  #
9212
9261
  # @!attribute [rw] qvbr_settings
9213
9262
  # Settings for quality-defined variable bitrate encoding with the
9214
- # H.264 codec. Required when you set Rate control mode to QVBR. Not
9215
- # valid when you set Rate control mode to a value other than QVBR, or
9216
- # when you don't define Rate control mode.
9263
+ # H.265 codec. Use these settings only when you set QVBR for Rate
9264
+ # control mode (RateControlMode).
9217
9265
  # @return [Types::H264QvbrSettings]
9218
9266
  #
9219
9267
  # @!attribute [rw] rate_control_mode
@@ -9413,9 +9461,8 @@ module Aws::MediaConvert
9413
9461
  end
9414
9462
 
9415
9463
  # Settings for quality-defined variable bitrate encoding with the H.265
9416
- # codec. Required when you set Rate control mode to QVBR. Not valid when
9417
- # you set Rate control mode to a value other than QVBR, or when you
9418
- # don't define Rate control mode.
9464
+ # codec. Use these settings only when you set QVBR for Rate control mode
9465
+ # (RateControlMode).
9419
9466
  #
9420
9467
  # @note When making an API call, you may pass H265QvbrSettings
9421
9468
  # data as a hash:
@@ -9437,15 +9484,20 @@ module Aws::MediaConvert
9437
9484
  # @return [Integer]
9438
9485
  #
9439
9486
  # @!attribute [rw] qvbr_quality_level
9440
- # Required when you use QVBR rate control mode. That is, when you
9441
- # specify qvbrSettings within h265Settings. Specify the general target
9442
- # quality level for this output, from 1 to 10. Use higher numbers for
9443
- # greater quality. Level 10 results in nearly lossless compression.
9444
- # The quality level for most broadcast-quality transcodes is between 6
9445
- # and 9. Optionally, to specify a value between whole numbers, also
9446
- # provide a value for the setting qvbrQualityLevelFineTune. For
9447
- # example, if you want your QVBR quality level to be 7.33, set
9448
- # qvbrQualityLevel to 7 and set qvbrQualityLevelFineTune to .33.
9487
+ # Use this setting only when you set Rate control mode
9488
+ # (RateControlMode) to QVBR. Specify the target quality level for this
9489
+ # output. MediaConvert determines the right number of bits to use for
9490
+ # each part of the video to maintain the video quality that you
9491
+ # specify. When you keep the default value, AUTO, MediaConvert picks a
9492
+ # quality level for you, based on characteristics of your input video.
9493
+ # If you prefer to specify a quality level, specify a number from 1
9494
+ # through 10. Use higher numbers for greater quality. Level 10 results
9495
+ # in nearly lossless compression. The quality level for most
9496
+ # broadcast-quality transcodes is between 6 and 9. Optionally, to
9497
+ # specify a value between whole numbers, also provide a value for the
9498
+ # setting qvbrQualityLevelFineTune. For example, if you want your QVBR
9499
+ # quality level to be 7.33, set qvbrQualityLevel to 7 and set
9500
+ # qvbrQualityLevelFineTune to .33.
9449
9501
  # @return [Integer]
9450
9502
  #
9451
9503
  # @!attribute [rw] qvbr_quality_level_fine_tune
@@ -9736,9 +9788,8 @@ module Aws::MediaConvert
9736
9788
  #
9737
9789
  # @!attribute [rw] qvbr_settings
9738
9790
  # Settings for quality-defined variable bitrate encoding with the
9739
- # H.265 codec. Required when you set Rate control mode to QVBR. Not
9740
- # valid when you set Rate control mode to a value other than QVBR, or
9741
- # when you don't define Rate control mode.
9791
+ # H.265 codec. Use these settings only when you set QVBR for Rate
9792
+ # control mode (RateControlMode).
9742
9793
  # @return [Types::H265QvbrSettings]
9743
9794
  #
9744
9795
  # @!attribute [rw] rate_control_mode
@@ -10320,6 +10371,7 @@ module Aws::MediaConvert
10320
10371
  # segment_length: 1,
10321
10372
  # segments_per_subdirectory: 1,
10322
10373
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
10374
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
10323
10375
  # timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
10324
10376
  # timed_metadata_id_3_period: 1,
10325
10377
  # timestamp_delta_milliseconds: 1,
@@ -10488,6 +10540,19 @@ module Aws::MediaConvert
10488
10540
  # EXT-X-STREAM-INF tag of variant manifest.
10489
10541
  # @return [String]
10490
10542
  #
10543
+ # @!attribute [rw] target_duration_compatibility_mode
10544
+ # When set to LEGACY, the segment target duration is always rounded up
10545
+ # to the nearest integer value above its current value in seconds.
10546
+ # When set to SPEC\\\\\_COMPLIANT, the segment target duration is
10547
+ # rounded up to the nearest integer value if fraction seconds are
10548
+ # greater than or equal to 0.5 (>= 0.5) and rounded down if less than
10549
+ # 0.5 (< 0.5). You may need to use LEGACY if your client needs to
10550
+ # ensure that the target duration is always longer than the actual
10551
+ # duration of the segment. Some older players may experience
10552
+ # interrupted playback when the actual duration of a track in a
10553
+ # segment is longer than the target duration.
10554
+ # @return [String]
10555
+ #
10491
10556
  # @!attribute [rw] timed_metadata_id_3_frame
10492
10557
  # Indicates ID3 frame that has the timecode.
10493
10558
  # @return [String]
@@ -10528,6 +10593,7 @@ module Aws::MediaConvert
10528
10593
  :segment_length,
10529
10594
  :segments_per_subdirectory,
10530
10595
  :stream_inf_resolution,
10596
+ :target_duration_compatibility_mode,
10531
10597
  :timed_metadata_id_3_frame,
10532
10598
  :timed_metadata_id_3_period,
10533
10599
  :timestamp_delta_milliseconds)
@@ -12202,6 +12268,7 @@ module Aws::MediaConvert
12202
12268
  # segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
12203
12269
  # segment_length: 1,
12204
12270
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
12271
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
12205
12272
  # write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
12206
12273
  # write_hls_manifest: "DISABLED", # accepts DISABLED, ENABLED
12207
12274
  # write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
@@ -12326,6 +12393,7 @@ module Aws::MediaConvert
12326
12393
  # segment_length: 1,
12327
12394
  # segments_per_subdirectory: 1,
12328
12395
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
12396
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
12329
12397
  # timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
12330
12398
  # timed_metadata_id_3_period: 1,
12331
12399
  # timestamp_delta_milliseconds: 1,
@@ -12560,6 +12628,9 @@ module Aws::MediaConvert
12560
12628
  # scc_destination_settings: {
12561
12629
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
12562
12630
  # },
12631
+ # srt_destination_settings: {
12632
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
12633
+ # },
12563
12634
  # teletext_destination_settings: {
12564
12635
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
12565
12636
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -13576,6 +13647,7 @@ module Aws::MediaConvert
13576
13647
  # segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
13577
13648
  # segment_length: 1,
13578
13649
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
13650
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
13579
13651
  # write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
13580
13652
  # write_hls_manifest: "DISABLED", # accepts DISABLED, ENABLED
13581
13653
  # write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
@@ -13700,6 +13772,7 @@ module Aws::MediaConvert
13700
13772
  # segment_length: 1,
13701
13773
  # segments_per_subdirectory: 1,
13702
13774
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
13775
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
13703
13776
  # timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
13704
13777
  # timed_metadata_id_3_period: 1,
13705
13778
  # timestamp_delta_milliseconds: 1,
@@ -13934,6 +14007,9 @@ module Aws::MediaConvert
13934
14007
  # scc_destination_settings: {
13935
14008
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
13936
14009
  # },
14010
+ # srt_destination_settings: {
14011
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
14012
+ # },
13937
14013
  # teletext_destination_settings: {
13938
14014
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
13939
14015
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -17370,6 +17446,9 @@ module Aws::MediaConvert
17370
17446
  # scc_destination_settings: {
17371
17447
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
17372
17448
  # },
17449
+ # srt_destination_settings: {
17450
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
17451
+ # },
17373
17452
  # teletext_destination_settings: {
17374
17453
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
17375
17454
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -18085,6 +18164,7 @@ module Aws::MediaConvert
18085
18164
  # segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
18086
18165
  # segment_length: 1,
18087
18166
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
18167
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
18088
18168
  # write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
18089
18169
  # write_hls_manifest: "DISABLED", # accepts DISABLED, ENABLED
18090
18170
  # write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
@@ -18209,6 +18289,7 @@ module Aws::MediaConvert
18209
18289
  # segment_length: 1,
18210
18290
  # segments_per_subdirectory: 1,
18211
18291
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
18292
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
18212
18293
  # timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
18213
18294
  # timed_metadata_id_3_period: 1,
18214
18295
  # timestamp_delta_milliseconds: 1,
@@ -18443,6 +18524,9 @@ module Aws::MediaConvert
18443
18524
  # scc_destination_settings: {
18444
18525
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
18445
18526
  # },
18527
+ # srt_destination_settings: {
18528
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
18529
+ # },
18446
18530
  # teletext_destination_settings: {
18447
18531
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
18448
18532
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -19083,6 +19167,7 @@ module Aws::MediaConvert
19083
19167
  # segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
19084
19168
  # segment_length: 1,
19085
19169
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
19170
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
19086
19171
  # write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
19087
19172
  # write_hls_manifest: "DISABLED", # accepts DISABLED, ENABLED
19088
19173
  # write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
@@ -19207,6 +19292,7 @@ module Aws::MediaConvert
19207
19292
  # segment_length: 1,
19208
19293
  # segments_per_subdirectory: 1,
19209
19294
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
19295
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
19210
19296
  # timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
19211
19297
  # timed_metadata_id_3_period: 1,
19212
19298
  # timestamp_delta_milliseconds: 1,
@@ -19619,6 +19705,9 @@ module Aws::MediaConvert
19619
19705
  # scc_destination_settings: {
19620
19706
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
19621
19707
  # },
19708
+ # srt_destination_settings: {
19709
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
19710
+ # },
19622
19711
  # teletext_destination_settings: {
19623
19712
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
19624
19713
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -20953,6 +21042,30 @@ module Aws::MediaConvert
20953
21042
  include Aws::Structure
20954
21043
  end
20955
21044
 
21045
+ # SRT Destination Settings
21046
+ #
21047
+ # @note When making an API call, you may pass SrtDestinationSettings
21048
+ # data as a hash:
21049
+ #
21050
+ # {
21051
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
21052
+ # }
21053
+ #
21054
+ # @!attribute [rw] style_passthrough
21055
+ # Choose Enabled (ENABLED) to have MediaConvert use the font style,
21056
+ # color, and position information from the captions source in the
21057
+ # input. Keep the default value, Disabled (DISABLED), for simplified
21058
+ # output captions.
21059
+ # @return [String]
21060
+ #
21061
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/SrtDestinationSettings AWS API Documentation
21062
+ #
21063
+ class SrtDestinationSettings < Struct.new(
21064
+ :style_passthrough)
21065
+ SENSITIVE = []
21066
+ include Aws::Structure
21067
+ end
21068
+
20956
21069
  # Use these settings to set up encryption with a static key provider.
20957
21070
  #
20958
21071
  # @note When making an API call, you may pass StaticKeyProvider
@@ -21673,6 +21786,7 @@ module Aws::MediaConvert
21673
21786
  # segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
21674
21787
  # segment_length: 1,
21675
21788
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
21789
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
21676
21790
  # write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
21677
21791
  # write_hls_manifest: "DISABLED", # accepts DISABLED, ENABLED
21678
21792
  # write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
@@ -21797,6 +21911,7 @@ module Aws::MediaConvert
21797
21911
  # segment_length: 1,
21798
21912
  # segments_per_subdirectory: 1,
21799
21913
  # stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
21914
+ # target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
21800
21915
  # timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
21801
21916
  # timed_metadata_id_3_period: 1,
21802
21917
  # timestamp_delta_milliseconds: 1,
@@ -22031,6 +22146,9 @@ module Aws::MediaConvert
22031
22146
  # scc_destination_settings: {
22032
22147
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
22033
22148
  # },
22149
+ # srt_destination_settings: {
22150
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
22151
+ # },
22034
22152
  # teletext_destination_settings: {
22035
22153
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
22036
22154
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
@@ -22864,6 +22982,9 @@ module Aws::MediaConvert
22864
22982
  # scc_destination_settings: {
22865
22983
  # framerate: "FRAMERATE_23_97", # accepts FRAMERATE_23_97, FRAMERATE_24, FRAMERATE_25, FRAMERATE_29_97_DROPFRAME, FRAMERATE_29_97_NON_DROPFRAME
22866
22984
  # },
22985
+ # srt_destination_settings: {
22986
+ # style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
22987
+ # },
22867
22988
  # teletext_destination_settings: {
22868
22989
  # page_number: "__stringMin3Max3Pattern1809aFAF09aEAE",
22869
22990
  # page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
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.68.0
4
+ version: 1.69.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-28 00:00:00.000000000 Z
11
+ date: 2021-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core