aws-sdk-mediaconvert 1.171.0 → 1.172.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: '08da179dd2276977fe2a87726b252fb7c17800dd42854af1d06206478f1d2cf7'
4
- data.tar.gz: 04c661fe255389ed40243263ed7211eeb187aa9725cf2c451196a6509ab4571b
3
+ metadata.gz: c3a571852183dff6f67e94893b19f910929dca2c862ba7bd47f7a37e47fb84ce
4
+ data.tar.gz: fcecc9523d2fd7fd812f54d78534e828f72e32ce13212570fdcf414a899ee42e
5
5
  SHA512:
6
- metadata.gz: da231014ca1b0715c09b10c044284014561bf86db2dfe071671865b1bd570a0992443cff26f74da38d24d91f66463779cdfda4628afe2346c25568b1ed4227e9
7
- data.tar.gz: a1b77fee54ea2a734f3e3cc360388547612eb2113c9dced0b7ee47a56eb3afb96f9d03c7652844242d61371d0d4e2a2292f62b0d467452bd83deeea529f4f5af
6
+ metadata.gz: 5fc84d7096c55ad18e98326f4670451c804b89de7440e63c8cbe3f76e9b9b37a6d2fe3c2734b6f58b6ad845bd904e8676df06feb9d301039a5bca57baab6e867
7
+ data.tar.gz: 63ba259f9d5330f995136d061d6ec938be7dc5b174bae673b7451a8b57aa06937b0f00cbef83d4ee812b72a19498a103a9683077de31d43920733f1af6d34432
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.172.0 (2025-10-31)
5
+ ------------------
6
+
7
+ * Feature - Adds SlowPalPitchCorrection to audio pitch correction settings. Enables opacity for VideoOverlays. Adds REMUX_ALL option to enable multi-rendition passthrough to VideoSelector for allow listed accounts.
8
+
4
9
  1.171.0 (2025-10-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.171.0
1
+ 1.172.0
@@ -734,6 +734,9 @@ module Aws::MediaConvert
734
734
  # target_lkfs: 1.0,
735
735
  # true_peak_limiter_threshold: 1.0,
736
736
  # },
737
+ # audio_pitch_correction_settings: {
738
+ # slow_pal_pitch_correction: "DISABLED", # accepts DISABLED, ENABLED
739
+ # },
737
740
  # audio_source_name: "__stringMax2048",
738
741
  # audio_type: 1,
739
742
  # audio_type_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
@@ -1304,6 +1307,9 @@ module Aws::MediaConvert
1304
1307
  # telecine: "NONE", # accepts NONE, SOFT, HARD
1305
1308
  # temporal_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
1306
1309
  # },
1310
+ # passthrough_settings: {
1311
+ # video_selector_mode: "AUTO", # accepts AUTO, REMUX_ALL
1312
+ # },
1307
1313
  # prores_settings: {
1308
1314
  # chroma_sampling: "PRESERVE_444_SAMPLING", # accepts PRESERVE_444_SAMPLING, SUBSAMPLE_TO_422
1309
1315
  # codec_profile: "APPLE_PRORES_422", # accepts APPLE_PRORES_422, APPLE_PRORES_422_HQ, APPLE_PRORES_422_LT, APPLE_PRORES_422_PROXY, APPLE_PRORES_4444, APPLE_PRORES_4444_XQ
@@ -1565,6 +1571,7 @@ module Aws::MediaConvert
1565
1571
  # resp.preset.settings.audio_descriptions[0].audio_normalization_settings.peak_calculation #=> String, one of "TRUE_PEAK", "NONE"
1566
1572
  # resp.preset.settings.audio_descriptions[0].audio_normalization_settings.target_lkfs #=> Float
1567
1573
  # resp.preset.settings.audio_descriptions[0].audio_normalization_settings.true_peak_limiter_threshold #=> Float
1574
+ # resp.preset.settings.audio_descriptions[0].audio_pitch_correction_settings.slow_pal_pitch_correction #=> String, one of "DISABLED", "ENABLED"
1568
1575
  # resp.preset.settings.audio_descriptions[0].audio_source_name #=> String
1569
1576
  # resp.preset.settings.audio_descriptions[0].audio_type #=> Integer
1570
1577
  # resp.preset.settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
@@ -2034,6 +2041,7 @@ module Aws::MediaConvert
2034
2041
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.syntax #=> String, one of "DEFAULT", "D_10"
2035
2042
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.telecine #=> String, one of "NONE", "SOFT", "HARD"
2036
2043
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.temporal_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
2044
+ # resp.preset.settings.video_description.codec_settings.passthrough_settings.video_selector_mode #=> String, one of "AUTO", "REMUX_ALL"
2037
2045
  # resp.preset.settings.video_description.codec_settings.prores_settings.chroma_sampling #=> String, one of "PRESERVE_444_SAMPLING", "SUBSAMPLE_TO_422"
2038
2046
  # resp.preset.settings.video_description.codec_settings.prores_settings.codec_profile #=> String, one of "APPLE_PRORES_422", "APPLE_PRORES_422_HQ", "APPLE_PRORES_422_LT", "APPLE_PRORES_422_PROXY", "APPLE_PRORES_4444", "APPLE_PRORES_4444_XQ"
2039
2047
  # resp.preset.settings.video_description.codec_settings.prores_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
@@ -2625,6 +2633,7 @@ module Aws::MediaConvert
2625
2633
  # resp.preset.settings.audio_descriptions[0].audio_normalization_settings.peak_calculation #=> String, one of "TRUE_PEAK", "NONE"
2626
2634
  # resp.preset.settings.audio_descriptions[0].audio_normalization_settings.target_lkfs #=> Float
2627
2635
  # resp.preset.settings.audio_descriptions[0].audio_normalization_settings.true_peak_limiter_threshold #=> Float
2636
+ # resp.preset.settings.audio_descriptions[0].audio_pitch_correction_settings.slow_pal_pitch_correction #=> String, one of "DISABLED", "ENABLED"
2628
2637
  # resp.preset.settings.audio_descriptions[0].audio_source_name #=> String
2629
2638
  # resp.preset.settings.audio_descriptions[0].audio_type #=> Integer
2630
2639
  # resp.preset.settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
@@ -3094,6 +3103,7 @@ module Aws::MediaConvert
3094
3103
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.syntax #=> String, one of "DEFAULT", "D_10"
3095
3104
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.telecine #=> String, one of "NONE", "SOFT", "HARD"
3096
3105
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.temporal_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
3106
+ # resp.preset.settings.video_description.codec_settings.passthrough_settings.video_selector_mode #=> String, one of "AUTO", "REMUX_ALL"
3097
3107
  # resp.preset.settings.video_description.codec_settings.prores_settings.chroma_sampling #=> String, one of "PRESERVE_444_SAMPLING", "SUBSAMPLE_TO_422"
3098
3108
  # resp.preset.settings.video_description.codec_settings.prores_settings.codec_profile #=> String, one of "APPLE_PRORES_422", "APPLE_PRORES_422_HQ", "APPLE_PRORES_422_LT", "APPLE_PRORES_422_PROXY", "APPLE_PRORES_4444", "APPLE_PRORES_4444_XQ"
3099
3109
  # resp.preset.settings.video_description.codec_settings.prores_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
@@ -3499,6 +3509,7 @@ module Aws::MediaConvert
3499
3509
  # resp.presets[0].settings.audio_descriptions[0].audio_normalization_settings.peak_calculation #=> String, one of "TRUE_PEAK", "NONE"
3500
3510
  # resp.presets[0].settings.audio_descriptions[0].audio_normalization_settings.target_lkfs #=> Float
3501
3511
  # resp.presets[0].settings.audio_descriptions[0].audio_normalization_settings.true_peak_limiter_threshold #=> Float
3512
+ # resp.presets[0].settings.audio_descriptions[0].audio_pitch_correction_settings.slow_pal_pitch_correction #=> String, one of "DISABLED", "ENABLED"
3502
3513
  # resp.presets[0].settings.audio_descriptions[0].audio_source_name #=> String
3503
3514
  # resp.presets[0].settings.audio_descriptions[0].audio_type #=> Integer
3504
3515
  # resp.presets[0].settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
@@ -3968,6 +3979,7 @@ module Aws::MediaConvert
3968
3979
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.syntax #=> String, one of "DEFAULT", "D_10"
3969
3980
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.telecine #=> String, one of "NONE", "SOFT", "HARD"
3970
3981
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.temporal_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
3982
+ # resp.presets[0].settings.video_description.codec_settings.passthrough_settings.video_selector_mode #=> String, one of "AUTO", "REMUX_ALL"
3971
3983
  # resp.presets[0].settings.video_description.codec_settings.prores_settings.chroma_sampling #=> String, one of "PRESERVE_444_SAMPLING", "SUBSAMPLE_TO_422"
3972
3984
  # resp.presets[0].settings.video_description.codec_settings.prores_settings.codec_profile #=> String, one of "APPLE_PRORES_422", "APPLE_PRORES_422_HQ", "APPLE_PRORES_422_LT", "APPLE_PRORES_422_PROXY", "APPLE_PRORES_4444", "APPLE_PRORES_4444_XQ"
3973
3985
  # resp.presets[0].settings.video_description.codec_settings.prores_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
@@ -4690,6 +4702,9 @@ module Aws::MediaConvert
4690
4702
  # target_lkfs: 1.0,
4691
4703
  # true_peak_limiter_threshold: 1.0,
4692
4704
  # },
4705
+ # audio_pitch_correction_settings: {
4706
+ # slow_pal_pitch_correction: "DISABLED", # accepts DISABLED, ENABLED
4707
+ # },
4693
4708
  # audio_source_name: "__stringMax2048",
4694
4709
  # audio_type: 1,
4695
4710
  # audio_type_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
@@ -5260,6 +5275,9 @@ module Aws::MediaConvert
5260
5275
  # telecine: "NONE", # accepts NONE, SOFT, HARD
5261
5276
  # temporal_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
5262
5277
  # },
5278
+ # passthrough_settings: {
5279
+ # video_selector_mode: "AUTO", # accepts AUTO, REMUX_ALL
5280
+ # },
5263
5281
  # prores_settings: {
5264
5282
  # chroma_sampling: "PRESERVE_444_SAMPLING", # accepts PRESERVE_444_SAMPLING, SUBSAMPLE_TO_422
5265
5283
  # codec_profile: "APPLE_PRORES_422", # accepts APPLE_PRORES_422, APPLE_PRORES_422_HQ, APPLE_PRORES_422_LT, APPLE_PRORES_422_PROXY, APPLE_PRORES_4444, APPLE_PRORES_4444_XQ
@@ -5518,6 +5536,7 @@ module Aws::MediaConvert
5518
5536
  # resp.preset.settings.audio_descriptions[0].audio_normalization_settings.peak_calculation #=> String, one of "TRUE_PEAK", "NONE"
5519
5537
  # resp.preset.settings.audio_descriptions[0].audio_normalization_settings.target_lkfs #=> Float
5520
5538
  # resp.preset.settings.audio_descriptions[0].audio_normalization_settings.true_peak_limiter_threshold #=> Float
5539
+ # resp.preset.settings.audio_descriptions[0].audio_pitch_correction_settings.slow_pal_pitch_correction #=> String, one of "DISABLED", "ENABLED"
5521
5540
  # resp.preset.settings.audio_descriptions[0].audio_source_name #=> String
5522
5541
  # resp.preset.settings.audio_descriptions[0].audio_type #=> Integer
5523
5542
  # resp.preset.settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
@@ -5987,6 +6006,7 @@ module Aws::MediaConvert
5987
6006
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.syntax #=> String, one of "DEFAULT", "D_10"
5988
6007
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.telecine #=> String, one of "NONE", "SOFT", "HARD"
5989
6008
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.temporal_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
6009
+ # resp.preset.settings.video_description.codec_settings.passthrough_settings.video_selector_mode #=> String, one of "AUTO", "REMUX_ALL"
5990
6010
  # resp.preset.settings.video_description.codec_settings.prores_settings.chroma_sampling #=> String, one of "PRESERVE_444_SAMPLING", "SUBSAMPLE_TO_422"
5991
6011
  # resp.preset.settings.video_description.codec_settings.prores_settings.codec_profile #=> String, one of "APPLE_PRORES_422", "APPLE_PRORES_422_HQ", "APPLE_PRORES_422_LT", "APPLE_PRORES_422_PROXY", "APPLE_PRORES_4444", "APPLE_PRORES_4444_XQ"
5992
6012
  # resp.preset.settings.video_description.codec_settings.prores_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
@@ -6273,7 +6293,7 @@ module Aws::MediaConvert
6273
6293
  tracer: tracer
6274
6294
  )
6275
6295
  context[:gem_name] = 'aws-sdk-mediaconvert'
6276
- context[:gem_version] = '1.171.0'
6296
+ context[:gem_version] = '1.172.0'
6277
6297
  Seahorse::Client::Request.new(handlers, context)
6278
6298
  end
6279
6299
 
@@ -61,6 +61,7 @@ module Aws::MediaConvert
61
61
  AudioNormalizationLoudnessLogging = Shapes::StringShape.new(name: 'AudioNormalizationLoudnessLogging')
62
62
  AudioNormalizationPeakCalculation = Shapes::StringShape.new(name: 'AudioNormalizationPeakCalculation')
63
63
  AudioNormalizationSettings = Shapes::StructureShape.new(name: 'AudioNormalizationSettings')
64
+ AudioPitchCorrectionSettings = Shapes::StructureShape.new(name: 'AudioPitchCorrectionSettings')
64
65
  AudioProperties = Shapes::StructureShape.new(name: 'AudioProperties')
65
66
  AudioSelector = Shapes::StructureShape.new(name: 'AudioSelector')
66
67
  AudioSelectorGroup = Shapes::StructureShape.new(name: 'AudioSelectorGroup')
@@ -568,6 +569,7 @@ module Aws::MediaConvert
568
569
  OutputSettings = Shapes::StructureShape.new(name: 'OutputSettings')
569
570
  PadVideo = Shapes::StringShape.new(name: 'PadVideo')
570
571
  PartnerWatermarking = Shapes::StructureShape.new(name: 'PartnerWatermarking')
572
+ PassthroughSettings = Shapes::StructureShape.new(name: 'PassthroughSettings')
571
573
  Policy = Shapes::StructureShape.new(name: 'Policy')
572
574
  Preset = Shapes::StructureShape.new(name: 'Preset')
573
575
  PresetListBy = Shapes::StringShape.new(name: 'PresetListBy')
@@ -622,6 +624,7 @@ module Aws::MediaConvert
622
624
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
623
625
  ShareStatus = Shapes::StringShape.new(name: 'ShareStatus')
624
626
  SimulateReservedQueue = Shapes::StringShape.new(name: 'SimulateReservedQueue')
627
+ SlowPalPitchCorrection = Shapes::StringShape.new(name: 'SlowPalPitchCorrection')
625
628
  SpekeKeyProvider = Shapes::StructureShape.new(name: 'SpekeKeyProvider')
626
629
  SpekeKeyProviderCmaf = Shapes::StructureShape.new(name: 'SpekeKeyProviderCmaf')
627
630
  SrtDestinationSettings = Shapes::StructureShape.new(name: 'SrtDestinationSettings')
@@ -694,6 +697,7 @@ module Aws::MediaConvert
694
697
  VideoPreprocessor = Shapes::StructureShape.new(name: 'VideoPreprocessor')
695
698
  VideoProperties = Shapes::StructureShape.new(name: 'VideoProperties')
696
699
  VideoSelector = Shapes::StructureShape.new(name: 'VideoSelector')
700
+ VideoSelectorMode = Shapes::StringShape.new(name: 'VideoSelectorMode')
697
701
  VideoSelectorType = Shapes::StringShape.new(name: 'VideoSelectorType')
698
702
  VideoTimecodeInsertion = Shapes::StringShape.new(name: 'VideoTimecodeInsertion')
699
703
  VorbisSettings = Shapes::StructureShape.new(name: 'VorbisSettings')
@@ -1056,6 +1060,7 @@ module Aws::MediaConvert
1056
1060
 
1057
1061
  AudioDescription.add_member(:audio_channel_tagging_settings, Shapes::ShapeRef.new(shape: AudioChannelTaggingSettings, location_name: "audioChannelTaggingSettings"))
1058
1062
  AudioDescription.add_member(:audio_normalization_settings, Shapes::ShapeRef.new(shape: AudioNormalizationSettings, location_name: "audioNormalizationSettings"))
1063
+ AudioDescription.add_member(:audio_pitch_correction_settings, Shapes::ShapeRef.new(shape: AudioPitchCorrectionSettings, location_name: "audioPitchCorrectionSettings"))
1059
1064
  AudioDescription.add_member(:audio_source_name, Shapes::ShapeRef.new(shape: __stringMax2048, location_name: "audioSourceName"))
1060
1065
  AudioDescription.add_member(:audio_type, Shapes::ShapeRef.new(shape: __integerMin0Max255, location_name: "audioType"))
1061
1066
  AudioDescription.add_member(:audio_type_control, Shapes::ShapeRef.new(shape: AudioTypeControl, location_name: "audioTypeControl"))
@@ -1076,6 +1081,9 @@ module Aws::MediaConvert
1076
1081
  AudioNormalizationSettings.add_member(:true_peak_limiter_threshold, Shapes::ShapeRef.new(shape: __doubleMinNegative8Max0, location_name: "truePeakLimiterThreshold"))
1077
1082
  AudioNormalizationSettings.struct_class = Types::AudioNormalizationSettings
1078
1083
 
1084
+ AudioPitchCorrectionSettings.add_member(:slow_pal_pitch_correction, Shapes::ShapeRef.new(shape: SlowPalPitchCorrection, location_name: "slowPalPitchCorrection"))
1085
+ AudioPitchCorrectionSettings.struct_class = Types::AudioPitchCorrectionSettings
1086
+
1079
1087
  AudioProperties.add_member(:bit_depth, Shapes::ShapeRef.new(shape: __integer, location_name: "bitDepth"))
1080
1088
  AudioProperties.add_member(:bit_rate, Shapes::ShapeRef.new(shape: __long, location_name: "bitRate"))
1081
1089
  AudioProperties.add_member(:channels, Shapes::ShapeRef.new(shape: __integer, location_name: "channels"))
@@ -1095,6 +1103,7 @@ module Aws::MediaConvert
1095
1103
  AudioSelector.add_member(:program_selection, Shapes::ShapeRef.new(shape: __integerMin0Max8, location_name: "programSelection"))
1096
1104
  AudioSelector.add_member(:remix_settings, Shapes::ShapeRef.new(shape: RemixSettings, location_name: "remixSettings"))
1097
1105
  AudioSelector.add_member(:selector_type, Shapes::ShapeRef.new(shape: AudioSelectorType, location_name: "selectorType"))
1106
+ AudioSelector.add_member(:streams, Shapes::ShapeRef.new(shape: __listOf__integerMin1Max2147483647, location_name: "streams"))
1098
1107
  AudioSelector.add_member(:tracks, Shapes::ShapeRef.new(shape: __listOf__integerMin1Max2147483647, location_name: "tracks"))
1099
1108
  AudioSelector.struct_class = Types::AudioSelector
1100
1109
 
@@ -2519,6 +2528,9 @@ module Aws::MediaConvert
2519
2528
  PartnerWatermarking.add_member(:nexguard_file_marker_settings, Shapes::ShapeRef.new(shape: NexGuardFileMarkerSettings, location_name: "nexguardFileMarkerSettings"))
2520
2529
  PartnerWatermarking.struct_class = Types::PartnerWatermarking
2521
2530
 
2531
+ PassthroughSettings.add_member(:video_selector_mode, Shapes::ShapeRef.new(shape: VideoSelectorMode, location_name: "videoSelectorMode"))
2532
+ PassthroughSettings.struct_class = Types::PassthroughSettings
2533
+
2522
2534
  Policy.add_member(:http_inputs, Shapes::ShapeRef.new(shape: InputPolicy, location_name: "httpInputs"))
2523
2535
  Policy.add_member(:https_inputs, Shapes::ShapeRef.new(shape: InputPolicy, location_name: "httpsInputs"))
2524
2536
  Policy.add_member(:s3_inputs, Shapes::ShapeRef.new(shape: InputPolicy, location_name: "s3Inputs"))
@@ -2745,6 +2757,7 @@ module Aws::MediaConvert
2745
2757
  TrackMapping.add_member(:video_track_indexes, Shapes::ShapeRef.new(shape: __listOf__integer, location_name: "videoTrackIndexes"))
2746
2758
  TrackMapping.struct_class = Types::TrackMapping
2747
2759
 
2760
+ TrackSourceSettings.add_member(:stream_number, Shapes::ShapeRef.new(shape: __integerMin1Max2147483647, location_name: "streamNumber"))
2748
2761
  TrackSourceSettings.add_member(:track_number, Shapes::ShapeRef.new(shape: __integerMin1Max2147483647, location_name: "trackNumber"))
2749
2762
  TrackSourceSettings.struct_class = Types::TrackSourceSettings
2750
2763
 
@@ -2820,6 +2833,7 @@ module Aws::MediaConvert
2820
2833
  VideoCodecSettings.add_member(:h264_settings, Shapes::ShapeRef.new(shape: H264Settings, location_name: "h264Settings"))
2821
2834
  VideoCodecSettings.add_member(:h265_settings, Shapes::ShapeRef.new(shape: H265Settings, location_name: "h265Settings"))
2822
2835
  VideoCodecSettings.add_member(:mpeg_2_settings, Shapes::ShapeRef.new(shape: Mpeg2Settings, location_name: "mpeg2Settings"))
2836
+ VideoCodecSettings.add_member(:passthrough_settings, Shapes::ShapeRef.new(shape: PassthroughSettings, location_name: "passthroughSettings"))
2823
2837
  VideoCodecSettings.add_member(:prores_settings, Shapes::ShapeRef.new(shape: ProresSettings, location_name: "proresSettings"))
2824
2838
  VideoCodecSettings.add_member(:uncompressed_settings, Shapes::ShapeRef.new(shape: UncompressedSettings, location_name: "uncompressedSettings"))
2825
2839
  VideoCodecSettings.add_member(:vc_3_settings, Shapes::ShapeRef.new(shape: Vc3Settings, location_name: "vc3Settings"))
@@ -2878,6 +2892,7 @@ module Aws::MediaConvert
2878
2892
  VideoOverlayInputClipping.struct_class = Types::VideoOverlayInputClipping
2879
2893
 
2880
2894
  VideoOverlayPosition.add_member(:height, Shapes::ShapeRef.new(shape: __integerMinNegative1Max2147483647, location_name: "height"))
2895
+ VideoOverlayPosition.add_member(:opacity, Shapes::ShapeRef.new(shape: __integerMin0Max100, location_name: "opacity"))
2881
2896
  VideoOverlayPosition.add_member(:unit, Shapes::ShapeRef.new(shape: VideoOverlayUnit, location_name: "unit"))
2882
2897
  VideoOverlayPosition.add_member(:width, Shapes::ShapeRef.new(shape: __integerMinNegative1Max2147483647, location_name: "width"))
2883
2898
  VideoOverlayPosition.add_member(:x_position, Shapes::ShapeRef.new(shape: __integerMinNegative2147483648Max2147483647, location_name: "xPosition"))
@@ -546,6 +546,10 @@ module Aws::MediaConvert
546
546
  # you need to comply with a loudness standard.
547
547
  # @return [Types::AudioNormalizationSettings]
548
548
  #
549
+ # @!attribute [rw] audio_pitch_correction_settings
550
+ # Settings for audio pitch correction during framerate conversion.
551
+ # @return [Types::AudioPitchCorrectionSettings]
552
+ #
549
553
  # @!attribute [rw] audio_source_name
550
554
  # Specifies which audio data to use from each input. In the simplest
551
555
  # case, specify an "Audio Selector":#inputs-audio\_selector by name
@@ -635,6 +639,7 @@ module Aws::MediaConvert
635
639
  class AudioDescription < Struct.new(
636
640
  :audio_channel_tagging_settings,
637
641
  :audio_normalization_settings,
642
+ :audio_pitch_correction_settings,
638
643
  :audio_source_name,
639
644
  :audio_type,
640
645
  :audio_type_control,
@@ -715,6 +720,26 @@ module Aws::MediaConvert
715
720
  include Aws::Structure
716
721
  end
717
722
 
723
+ # Settings for audio pitch correction during framerate conversion.
724
+ #
725
+ # @!attribute [rw] slow_pal_pitch_correction
726
+ # Use Slow PAL pitch correction to compensate for audio pitch changes
727
+ # during slow PAL frame rate conversion. This setting only applies
728
+ # when Slow PAL is enabled in your output video codec settings. To
729
+ # automatically apply audio pitch correction: Choose Enabled.
730
+ # MediaConvert automatically applies a pitch correction to your output
731
+ # to match the original content's audio pitch. To not apply audio
732
+ # pitch correction: Keep the default value, Disabled.
733
+ # @return [String]
734
+ #
735
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/AudioPitchCorrectionSettings AWS API Documentation
736
+ #
737
+ class AudioPitchCorrectionSettings < Struct.new(
738
+ :slow_pal_pitch_correction)
739
+ SENSITIVE = []
740
+ include Aws::Structure
741
+ end
742
+
718
743
  # Details about the media file's audio track.
719
744
  #
720
745
  # @!attribute [rw] bit_depth
@@ -854,7 +879,9 @@ module Aws::MediaConvert
854
879
  # Identifier (PID) values for MPEG Transport Stream inputs. Use this
855
880
  # when you know the exact PID values of your audio streams. Track:
856
881
  # Default. Select audio by track number. This is the most common
857
- # option and works with most input container formats. Language code:
882
+ # option and works with most input container formats. If more types of
883
+ # audio data get recognized in the future, these numberings may shift,
884
+ # but the numberings used for Stream mode will not. Language code:
858
885
  # Select audio by language using an ISO 639-2 or ISO 639-3
859
886
  # three-letter code in all capital letters. Use this when your source
860
887
  # has embedded language metadata and you want to select tracks based
@@ -863,15 +890,37 @@ module Aws::MediaConvert
863
890
  # multiple audio renditions and you want to select specific rendition
864
891
  # groups. All PCM: Select all uncompressed PCM audio tracks from your
865
892
  # input automatically. This is useful when you want to include all PCM
866
- # audio tracks without specifying individual track numbers.
893
+ # audio tracks without specifying individual track numbers. Stream:
894
+ # Select audio by stream number. Stream numbers include all tracks in
895
+ # the source file, regardless of type, and correspond to either the
896
+ # order of tracks in the file, or if applicable, the stream number
897
+ # metadata of the track. Although all tracks count toward these stream
898
+ # numbers, in this audio selector context, only the stream number of a
899
+ # track containing audio data may be used. If your source file
900
+ # contains a track which is not recognized by the service, then the
901
+ # corresponding stream number will still be reserved for future use.
902
+ # If more types of audio data get recognized in the future, these
903
+ # numberings will not shift.
867
904
  # @return [String]
868
905
  #
906
+ # @!attribute [rw] streams
907
+ # Identify a track from the input audio to include in this selector by
908
+ # entering the stream index number. These numberings count all tracks
909
+ # in the input file, but only a track containing audio data may be
910
+ # used here. To include several tracks in a single audio selector,
911
+ # specify multiple tracks as follows. Using the console, enter a
912
+ # comma-separated list. For example, type "1,2,3" to include tracks
913
+ # 1 through 3.
914
+ # @return [Array<Integer>]
915
+ #
869
916
  # @!attribute [rw] tracks
870
917
  # Identify a track from the input audio to include in this selector by
871
- # entering the track index number. To include several tracks in a
872
- # single audio selector, specify multiple tracks as follows. Using the
873
- # console, enter a comma-separated list. For example, type "1,2,3"
874
- # to include tracks 1 through 3.
918
+ # entering the track index number. These numberings include only
919
+ # tracks recognized as audio. If the service recognizes more types of
920
+ # audio tracks in the future, these numberings may shift. To include
921
+ # several tracks in a single audio selector, specify multiple tracks
922
+ # as follows. Using the console, enter a comma-separated list. For
923
+ # example, type "1,2,3" to include tracks 1 through 3.
875
924
  # @return [Array<Integer>]
876
925
  #
877
926
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/AudioSelector AWS API Documentation
@@ -888,6 +937,7 @@ module Aws::MediaConvert
888
937
  :program_selection,
889
938
  :remix_settings,
890
939
  :selector_type,
940
+ :streams,
891
941
  :tracks)
892
942
  SENSITIVE = []
893
943
  include Aws::Structure
@@ -2376,13 +2426,16 @@ module Aws::MediaConvert
2376
2426
  #
2377
2427
  # @!attribute [rw] dash_manifest_style
2378
2428
  # Specify how MediaConvert writes SegmentTimeline in your output DASH
2379
- # manifest. To write a SegmentTimeline in each video Representation:
2380
- # Keep the default value, Basic. To write a common SegmentTimeline in
2381
- # the video AdaptationSet: Choose Compact. Note that MediaConvert will
2382
- # still write a SegmentTimeline in any Representation that does not
2383
- # share a common timeline. To write a video AdaptationSet for each
2384
- # different output framerate, and a common SegmentTimeline in each
2385
- # AdaptationSet: Choose Distinct.
2429
+ # manifest. To write a SegmentTimeline for outputs that you also
2430
+ # specify a Name modifier for: Keep the default value, Basic. Note
2431
+ # that if you do not specify a name modifier for an output,
2432
+ # MediaConvert will not write a SegmentTimeline for it. To write a
2433
+ # common SegmentTimeline in the video AdaptationSet: Choose Compact.
2434
+ # Note that MediaConvert will still write a SegmentTimeline in any
2435
+ # Representation that does not share a common timeline. To write a
2436
+ # video AdaptationSet for each different output framerate, and a
2437
+ # common SegmentTimeline in each AdaptationSet: Choose Distinct. To
2438
+ # write a SegmentTimeline in each AdaptationSet: Choose Full.
2386
2439
  # @return [String]
2387
2440
  #
2388
2441
  # @!attribute [rw] destination
@@ -3730,13 +3783,16 @@ module Aws::MediaConvert
3730
3783
  #
3731
3784
  # @!attribute [rw] dash_manifest_style
3732
3785
  # Specify how MediaConvert writes SegmentTimeline in your output DASH
3733
- # manifest. To write a SegmentTimeline in each video Representation:
3734
- # Keep the default value, Basic. To write a common SegmentTimeline in
3735
- # the video AdaptationSet: Choose Compact. Note that MediaConvert will
3736
- # still write a SegmentTimeline in any Representation that does not
3737
- # share a common timeline. To write a video AdaptationSet for each
3738
- # different output framerate, and a common SegmentTimeline in each
3739
- # AdaptationSet: Choose Distinct.
3786
+ # manifest. To write a SegmentTimeline for outputs that you also
3787
+ # specify a Name modifier for: Keep the default value, Basic. Note
3788
+ # that if you do not specify a name modifier for an output,
3789
+ # MediaConvert will not write a SegmentTimeline for it. To write a
3790
+ # common SegmentTimeline in the video AdaptationSet: Choose Compact.
3791
+ # Note that MediaConvert will still write a SegmentTimeline in any
3792
+ # Representation that does not share a common timeline. To write a
3793
+ # video AdaptationSet for each different output framerate, and a
3794
+ # common SegmentTimeline in each AdaptationSet: Choose Distinct. To
3795
+ # write a SegmentTimeline in each AdaptationSet: Choose Full.
3740
3796
  # @return [String]
3741
3797
  #
3742
3798
  # @!attribute [rw] destination
@@ -10879,12 +10935,12 @@ module Aws::MediaConvert
10879
10935
  #
10880
10936
  # @!attribute [rw] caption_container_type
10881
10937
  # Use this setting only in DASH output groups that include sidecar
10882
- # TTML or IMSC captions. You specify sidecar captions in a separate
10883
- # output from your audio and video. Choose Raw for captions in a
10884
- # single XML file in a raw container. Choose Fragmented MPEG-4 for
10885
- # captions in XML format contained within fragmented MP4 files. This
10886
- # set of fragmented MP4 files is separate from your video and audio
10887
- # fragmented MP4 files.
10938
+ # TTML, IMSC or WEBVTT captions. You specify sidecar captions in a
10939
+ # separate output from your audio and video. Choose Raw for captions
10940
+ # in a single XML file in a raw container. Choose Fragmented MPEG-4
10941
+ # for captions in XML format contained within fragmented MP4 files.
10942
+ # This set of fragmented MP4 files is separate from your video and
10943
+ # audio fragmented MP4 files.
10888
10944
  # @return [String]
10889
10945
  #
10890
10946
  # @!attribute [rw] klv_metadata
@@ -12183,6 +12239,25 @@ module Aws::MediaConvert
12183
12239
  include Aws::Structure
12184
12240
  end
12185
12241
 
12242
+ # Optional settings when you set Codec to the value Passthrough.
12243
+ #
12244
+ # @!attribute [rw] video_selector_mode
12245
+ # AUTO will select the highest bitrate input in the video selector
12246
+ # source. REMUX\_ALL will passthrough all the selected streams in the
12247
+ # video selector source. When selecting streams from multiple
12248
+ # renditions (i.e. using Stream video selector type): REMUX\_ALL will
12249
+ # only remux all streams selected, and AUTO will use the highest
12250
+ # bitrate video stream among the selected streams as source.
12251
+ # @return [String]
12252
+ #
12253
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/PassthroughSettings AWS API Documentation
12254
+ #
12255
+ class PassthroughSettings < Struct.new(
12256
+ :video_selector_mode)
12257
+ SENSITIVE = []
12258
+ include Aws::Structure
12259
+ end
12260
+
12186
12261
  # A policy configures behavior that you allow or disallow for your
12187
12262
  # account. For information about MediaConvert policies, see the user
12188
12263
  # guide at
@@ -13669,6 +13744,21 @@ module Aws::MediaConvert
13669
13744
  # your caption source is IMSC 1.1 in a separate xml file, use
13670
13745
  # FileSourceSettings instead of TrackSourceSettings.
13671
13746
  #
13747
+ # @!attribute [rw] stream_number
13748
+ # Use this setting to select a single captions track from a source.
13749
+ # Stream numbers include all tracks in the source file, regardless of
13750
+ # type, and correspond to either the order of tracks in the file, or
13751
+ # if applicable, the stream number metadata of the track. Although all
13752
+ # tracks count toward these stream numbers, in this caption selector
13753
+ # context, only the stream number of a track containing caption data
13754
+ # may be used. To include more than one captions track in your job
13755
+ # outputs, create multiple input captions selectors. Specify one
13756
+ # stream per selector. If your source file contains a track which is
13757
+ # not recognized by the service, then the corresponding stream number
13758
+ # will still be reserved for future use. If more types of caption data
13759
+ # get recognized in the future, these numberings will not shift.
13760
+ # @return [Integer]
13761
+ #
13672
13762
  # @!attribute [rw] track_number
13673
13763
  # Use this setting to select a single captions track from a source.
13674
13764
  # Track numbers correspond to the order in the captions source file.
@@ -13676,12 +13766,15 @@ module Aws::MediaConvert
13676
13766
  # captions appear in the CPL. For example, use 1 to select the
13677
13767
  # captions asset that is listed first in the CPL. To include more than
13678
13768
  # one captions track in your job outputs, create multiple input
13679
- # captions selectors. Specify one track per selector.
13769
+ # captions selectors. Specify one track per selector. If more types of
13770
+ # caption data get recognized in the future, these numberings may
13771
+ # shift, but the numberings used for streamNumber will not.
13680
13772
  # @return [Integer]
13681
13773
  #
13682
13774
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/TrackSourceSettings AWS API Documentation
13683
13775
  #
13684
13776
  class TrackSourceSettings < Struct.new(
13777
+ :stream_number,
13685
13778
  :track_number)
13686
13779
  SENSITIVE = []
13687
13780
  include Aws::Structure
@@ -14221,6 +14314,10 @@ module Aws::MediaConvert
14221
14314
  # Required when you set Codec to the value MPEG2.
14222
14315
  # @return [Types::Mpeg2Settings]
14223
14316
  #
14317
+ # @!attribute [rw] passthrough_settings
14318
+ # Optional settings when you set Codec to the value Passthrough.
14319
+ # @return [Types::PassthroughSettings]
14320
+ #
14224
14321
  # @!attribute [rw] prores_settings
14225
14322
  # Required when you set Codec to the value PRORES.
14226
14323
  # @return [Types::ProresSettings]
@@ -14257,6 +14354,7 @@ module Aws::MediaConvert
14257
14354
  :h264_settings,
14258
14355
  :h265_settings,
14259
14356
  :mpeg_2_settings,
14357
+ :passthrough_settings,
14260
14358
  :prores_settings,
14261
14359
  :uncompressed_settings,
14262
14360
  :vc_3_settings,
@@ -14692,6 +14790,12 @@ module Aws::MediaConvert
14692
14790
  # enter a value for Height and leave Width blank.
14693
14791
  # @return [Integer]
14694
14792
  #
14793
+ # @!attribute [rw] opacity
14794
+ # Use Opacity to specify how much of the underlying video shows
14795
+ # through the overlay video. 0 is transparent and 100 is fully opaque.
14796
+ # Default is 100.
14797
+ # @return [Integer]
14798
+ #
14695
14799
  # @!attribute [rw] unit
14696
14800
  # Specify the Unit type to use when you enter a value for X position,
14697
14801
  # Y position, Width, or Height. You can choose Pixels or Percentage.
@@ -14742,6 +14846,7 @@ module Aws::MediaConvert
14742
14846
  #
14743
14847
  class VideoOverlayPosition < Struct.new(
14744
14848
  :height,
14849
+ :opacity,
14745
14850
  :unit,
14746
14851
  :width,
14747
14852
  :x_position,
@@ -14754,7 +14859,7 @@ module Aws::MediaConvert
14754
14859
  # Transitions to reposition or resize your overlay over time. To use the
14755
14860
  # same position and size for the duration of your video overlay: Leave
14756
14861
  # blank. To specify a Transition: Enter a value for Start timecode, End
14757
- # Timecode, X Position, Y Position, Width, or Height.
14862
+ # Timecode, X Position, Y Position, Width, Height, or Opacity
14758
14863
  #
14759
14864
  # @!attribute [rw] end_position
14760
14865
  # Specify the ending position for this transition, relative to the
@@ -15062,8 +15167,14 @@ module Aws::MediaConvert
15062
15167
  # @return [String]
15063
15168
  #
15064
15169
  # @!attribute [rw] streams
15065
- # Specify a stream for MediaConvert to use from your HLS input. Enter
15066
- # an integer corresponding to the stream order in your HLS manifest.
15170
+ # Specify one or more video streams for MediaConvert to use from your
15171
+ # HLS input. Enter an integer corresponding to the stream number, with
15172
+ # the first stream in your HLS multivariant playlist starting at 1.For
15173
+ # re-encoding workflows, MediaConvert uses the video stream that you
15174
+ # select with the highest bitrate as the input.For video passthrough
15175
+ # workflows, you specify whether to passthrough a single video stream
15176
+ # or multiple video streams under Video selector source in the output
15177
+ # video encoding settings.
15067
15178
  # @return [Array<Integer>]
15068
15179
  #
15069
15180
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/VideoSelector 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.171.0'
57
+ GEM_VERSION = '1.172.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -185,7 +185,8 @@ module Aws
185
185
  channels_in: ::Integer?,
186
186
  channels_out: ::Integer?
187
187
  }?,
188
- selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM")?,
188
+ selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM" | "STREAM")?,
189
+ streams: Array[::Integer]?,
189
190
  tracks: Array[::Integer]?
190
191
  }]?,
191
192
  caption_selectors: Hash[::String, {
@@ -224,6 +225,7 @@ module Aws
224
225
  page_number: ::String?
225
226
  }?,
226
227
  track_source_settings: {
228
+ stream_number: ::Integer?,
227
229
  track_number: ::Integer?
228
230
  }?,
229
231
  webvtt_hls_source_settings: {
@@ -321,6 +323,7 @@ module Aws
321
323
  end_timecode: ::String?,
322
324
  initial_position: {
323
325
  height: ::Integer?,
326
+ opacity: ::Integer?,
324
327
  unit: ("PIXELS" | "PERCENTAGE")?,
325
328
  width: ::Integer?,
326
329
  x_position: ::Integer?,
@@ -343,6 +346,7 @@ module Aws
343
346
  {
344
347
  end_position: {
345
348
  height: ::Integer?,
349
+ opacity: ::Integer?,
346
350
  unit: ("PIXELS" | "PERCENTAGE")?,
347
351
  width: ::Integer?,
348
352
  x_position: ::Integer?,
@@ -480,7 +484,7 @@ module Aws
480
484
  client_cache: ("DISABLED" | "ENABLED")?,
481
485
  codec_specification: ("RFC_6381" | "RFC_4281")?,
482
486
  dash_i_frame_trick_play_name_modifier: ::String?,
483
- dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
487
+ dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")?,
484
488
  destination: ::String?,
485
489
  destination_settings: {
486
490
  s3_settings: {
@@ -555,7 +559,7 @@ module Aws
555
559
  audio_channel_config_scheme_id_uri: ("MPEG_CHANNEL_CONFIGURATION" | "DOLBY_CHANNEL_CONFIGURATION")?,
556
560
  base_url: ::String?,
557
561
  dash_i_frame_trick_play_name_modifier: ::String?,
558
- dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
562
+ dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")?,
559
563
  destination: ::String?,
560
564
  destination_settings: {
561
565
  s3_settings: {
@@ -766,6 +770,9 @@ module Aws
766
770
  target_lkfs: ::Float?,
767
771
  true_peak_limiter_threshold: ::Float?
768
772
  }?,
773
+ audio_pitch_correction_settings: {
774
+ slow_pal_pitch_correction: ("DISABLED" | "ENABLED")?
775
+ }?,
769
776
  audio_source_name: ::String?,
770
777
  audio_type: ::Integer?,
771
778
  audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
@@ -1351,6 +1358,9 @@ module Aws
1351
1358
  telecine: ("NONE" | "SOFT" | "HARD")?,
1352
1359
  temporal_adaptive_quantization: ("DISABLED" | "ENABLED")?
1353
1360
  }?,
1361
+ passthrough_settings: {
1362
+ video_selector_mode: ("AUTO" | "REMUX_ALL")?
1363
+ }?,
1354
1364
  prores_settings: {
1355
1365
  chroma_sampling: ("PRESERVE_444_SAMPLING" | "SUBSAMPLE_TO_422")?,
1356
1366
  codec_profile: ("APPLE_PRORES_422" | "APPLE_PRORES_422_HQ" | "APPLE_PRORES_422_LT" | "APPLE_PRORES_422_PROXY" | "APPLE_PRORES_4444" | "APPLE_PRORES_4444_XQ")?,
@@ -1700,7 +1710,8 @@ module Aws
1700
1710
  channels_in: ::Integer?,
1701
1711
  channels_out: ::Integer?
1702
1712
  }?,
1703
- selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM")?,
1713
+ selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM" | "STREAM")?,
1714
+ streams: Array[::Integer]?,
1704
1715
  tracks: Array[::Integer]?
1705
1716
  }]?,
1706
1717
  caption_selectors: Hash[::String, {
@@ -1739,6 +1750,7 @@ module Aws
1739
1750
  page_number: ::String?
1740
1751
  }?,
1741
1752
  track_source_settings: {
1753
+ stream_number: ::Integer?,
1742
1754
  track_number: ::Integer?
1743
1755
  }?,
1744
1756
  webvtt_hls_source_settings: {
@@ -1813,6 +1825,7 @@ module Aws
1813
1825
  end_timecode: ::String?,
1814
1826
  initial_position: {
1815
1827
  height: ::Integer?,
1828
+ opacity: ::Integer?,
1816
1829
  unit: ("PIXELS" | "PERCENTAGE")?,
1817
1830
  width: ::Integer?,
1818
1831
  x_position: ::Integer?,
@@ -1835,6 +1848,7 @@ module Aws
1835
1848
  {
1836
1849
  end_position: {
1837
1850
  height: ::Integer?,
1851
+ opacity: ::Integer?,
1838
1852
  unit: ("PIXELS" | "PERCENTAGE")?,
1839
1853
  width: ::Integer?,
1840
1854
  x_position: ::Integer?,
@@ -1972,7 +1986,7 @@ module Aws
1972
1986
  client_cache: ("DISABLED" | "ENABLED")?,
1973
1987
  codec_specification: ("RFC_6381" | "RFC_4281")?,
1974
1988
  dash_i_frame_trick_play_name_modifier: ::String?,
1975
- dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
1989
+ dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")?,
1976
1990
  destination: ::String?,
1977
1991
  destination_settings: {
1978
1992
  s3_settings: {
@@ -2047,7 +2061,7 @@ module Aws
2047
2061
  audio_channel_config_scheme_id_uri: ("MPEG_CHANNEL_CONFIGURATION" | "DOLBY_CHANNEL_CONFIGURATION")?,
2048
2062
  base_url: ::String?,
2049
2063
  dash_i_frame_trick_play_name_modifier: ::String?,
2050
- dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
2064
+ dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")?,
2051
2065
  destination: ::String?,
2052
2066
  destination_settings: {
2053
2067
  s3_settings: {
@@ -2258,6 +2272,9 @@ module Aws
2258
2272
  target_lkfs: ::Float?,
2259
2273
  true_peak_limiter_threshold: ::Float?
2260
2274
  }?,
2275
+ audio_pitch_correction_settings: {
2276
+ slow_pal_pitch_correction: ("DISABLED" | "ENABLED")?
2277
+ }?,
2261
2278
  audio_source_name: ::String?,
2262
2279
  audio_type: ::Integer?,
2263
2280
  audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
@@ -2843,6 +2860,9 @@ module Aws
2843
2860
  telecine: ("NONE" | "SOFT" | "HARD")?,
2844
2861
  temporal_adaptive_quantization: ("DISABLED" | "ENABLED")?
2845
2862
  }?,
2863
+ passthrough_settings: {
2864
+ video_selector_mode: ("AUTO" | "REMUX_ALL")?
2865
+ }?,
2846
2866
  prores_settings: {
2847
2867
  chroma_sampling: ("PRESERVE_444_SAMPLING" | "SUBSAMPLE_TO_422")?,
2848
2868
  codec_profile: ("APPLE_PRORES_422" | "APPLE_PRORES_422_HQ" | "APPLE_PRORES_422_LT" | "APPLE_PRORES_422_PROXY" | "APPLE_PRORES_4444" | "APPLE_PRORES_4444_XQ")?,
@@ -3128,6 +3148,9 @@ module Aws
3128
3148
  target_lkfs: ::Float?,
3129
3149
  true_peak_limiter_threshold: ::Float?
3130
3150
  }?,
3151
+ audio_pitch_correction_settings: {
3152
+ slow_pal_pitch_correction: ("DISABLED" | "ENABLED")?
3153
+ }?,
3131
3154
  audio_source_name: ::String?,
3132
3155
  audio_type: ::Integer?,
3133
3156
  audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
@@ -3698,6 +3721,9 @@ module Aws
3698
3721
  telecine: ("NONE" | "SOFT" | "HARD")?,
3699
3722
  temporal_adaptive_quantization: ("DISABLED" | "ENABLED")?
3700
3723
  }?,
3724
+ passthrough_settings: {
3725
+ video_selector_mode: ("AUTO" | "REMUX_ALL")?
3726
+ }?,
3701
3727
  prores_settings: {
3702
3728
  chroma_sampling: ("PRESERVE_444_SAMPLING" | "SUBSAMPLE_TO_422")?,
3703
3729
  codec_profile: ("APPLE_PRORES_422" | "APPLE_PRORES_422_HQ" | "APPLE_PRORES_422_LT" | "APPLE_PRORES_422_PROXY" | "APPLE_PRORES_4444" | "APPLE_PRORES_4444_XQ")?,
@@ -4339,7 +4365,8 @@ module Aws
4339
4365
  channels_in: ::Integer?,
4340
4366
  channels_out: ::Integer?
4341
4367
  }?,
4342
- selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM")?,
4368
+ selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM" | "STREAM")?,
4369
+ streams: Array[::Integer]?,
4343
4370
  tracks: Array[::Integer]?
4344
4371
  }]?,
4345
4372
  caption_selectors: Hash[::String, {
@@ -4378,6 +4405,7 @@ module Aws
4378
4405
  page_number: ::String?
4379
4406
  }?,
4380
4407
  track_source_settings: {
4408
+ stream_number: ::Integer?,
4381
4409
  track_number: ::Integer?
4382
4410
  }?,
4383
4411
  webvtt_hls_source_settings: {
@@ -4452,6 +4480,7 @@ module Aws
4452
4480
  end_timecode: ::String?,
4453
4481
  initial_position: {
4454
4482
  height: ::Integer?,
4483
+ opacity: ::Integer?,
4455
4484
  unit: ("PIXELS" | "PERCENTAGE")?,
4456
4485
  width: ::Integer?,
4457
4486
  x_position: ::Integer?,
@@ -4474,6 +4503,7 @@ module Aws
4474
4503
  {
4475
4504
  end_position: {
4476
4505
  height: ::Integer?,
4506
+ opacity: ::Integer?,
4477
4507
  unit: ("PIXELS" | "PERCENTAGE")?,
4478
4508
  width: ::Integer?,
4479
4509
  x_position: ::Integer?,
@@ -4611,7 +4641,7 @@ module Aws
4611
4641
  client_cache: ("DISABLED" | "ENABLED")?,
4612
4642
  codec_specification: ("RFC_6381" | "RFC_4281")?,
4613
4643
  dash_i_frame_trick_play_name_modifier: ::String?,
4614
- dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
4644
+ dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")?,
4615
4645
  destination: ::String?,
4616
4646
  destination_settings: {
4617
4647
  s3_settings: {
@@ -4686,7 +4716,7 @@ module Aws
4686
4716
  audio_channel_config_scheme_id_uri: ("MPEG_CHANNEL_CONFIGURATION" | "DOLBY_CHANNEL_CONFIGURATION")?,
4687
4717
  base_url: ::String?,
4688
4718
  dash_i_frame_trick_play_name_modifier: ::String?,
4689
- dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
4719
+ dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")?,
4690
4720
  destination: ::String?,
4691
4721
  destination_settings: {
4692
4722
  s3_settings: {
@@ -4897,6 +4927,9 @@ module Aws
4897
4927
  target_lkfs: ::Float?,
4898
4928
  true_peak_limiter_threshold: ::Float?
4899
4929
  }?,
4930
+ audio_pitch_correction_settings: {
4931
+ slow_pal_pitch_correction: ("DISABLED" | "ENABLED")?
4932
+ }?,
4900
4933
  audio_source_name: ::String?,
4901
4934
  audio_type: ::Integer?,
4902
4935
  audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
@@ -5482,6 +5515,9 @@ module Aws
5482
5515
  telecine: ("NONE" | "SOFT" | "HARD")?,
5483
5516
  temporal_adaptive_quantization: ("DISABLED" | "ENABLED")?
5484
5517
  }?,
5518
+ passthrough_settings: {
5519
+ video_selector_mode: ("AUTO" | "REMUX_ALL")?
5520
+ }?,
5485
5521
  prores_settings: {
5486
5522
  chroma_sampling: ("PRESERVE_444_SAMPLING" | "SUBSAMPLE_TO_422")?,
5487
5523
  codec_profile: ("APPLE_PRORES_422" | "APPLE_PRORES_422_HQ" | "APPLE_PRORES_422_LT" | "APPLE_PRORES_422_PROXY" | "APPLE_PRORES_4444" | "APPLE_PRORES_4444_XQ")?,
@@ -5766,6 +5802,9 @@ module Aws
5766
5802
  target_lkfs: ::Float?,
5767
5803
  true_peak_limiter_threshold: ::Float?
5768
5804
  }?,
5805
+ audio_pitch_correction_settings: {
5806
+ slow_pal_pitch_correction: ("DISABLED" | "ENABLED")?
5807
+ }?,
5769
5808
  audio_source_name: ::String?,
5770
5809
  audio_type: ::Integer?,
5771
5810
  audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
@@ -6336,6 +6375,9 @@ module Aws
6336
6375
  telecine: ("NONE" | "SOFT" | "HARD")?,
6337
6376
  temporal_adaptive_quantization: ("DISABLED" | "ENABLED")?
6338
6377
  }?,
6378
+ passthrough_settings: {
6379
+ video_selector_mode: ("AUTO" | "REMUX_ALL")?
6380
+ }?,
6339
6381
  prores_settings: {
6340
6382
  chroma_sampling: ("PRESERVE_444_SAMPLING" | "SUBSAMPLE_TO_422")?,
6341
6383
  codec_profile: ("APPLE_PRORES_422" | "APPLE_PRORES_422_HQ" | "APPLE_PRORES_422_LT" | "APPLE_PRORES_422_PROXY" | "APPLE_PRORES_4444" | "APPLE_PRORES_4444_XQ")?,
data/sig/types.rbs CHANGED
@@ -103,6 +103,7 @@ module Aws::MediaConvert
103
103
  class AudioDescription
104
104
  attr_accessor audio_channel_tagging_settings: Types::AudioChannelTaggingSettings
105
105
  attr_accessor audio_normalization_settings: Types::AudioNormalizationSettings
106
+ attr_accessor audio_pitch_correction_settings: Types::AudioPitchCorrectionSettings
106
107
  attr_accessor audio_source_name: ::String
107
108
  attr_accessor audio_type: ::Integer
108
109
  attr_accessor audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")
@@ -126,6 +127,11 @@ module Aws::MediaConvert
126
127
  SENSITIVE: []
127
128
  end
128
129
 
130
+ class AudioPitchCorrectionSettings
131
+ attr_accessor slow_pal_pitch_correction: ("DISABLED" | "ENABLED")
132
+ SENSITIVE: []
133
+ end
134
+
129
135
  class AudioProperties
130
136
  attr_accessor bit_depth: ::Integer
131
137
  attr_accessor bit_rate: ::Integer
@@ -147,7 +153,8 @@ module Aws::MediaConvert
147
153
  attr_accessor pids: ::Array[::Integer]
148
154
  attr_accessor program_selection: ::Integer
149
155
  attr_accessor remix_settings: Types::RemixSettings
150
- attr_accessor selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM")
156
+ attr_accessor selector_type: ("PID" | "TRACK" | "LANGUAGE_CODE" | "HLS_RENDITION_GROUP" | "ALL_PCM" | "STREAM")
157
+ attr_accessor streams: ::Array[::Integer]
151
158
  attr_accessor tracks: ::Array[::Integer]
152
159
  SENSITIVE: []
153
160
  end
@@ -370,7 +377,7 @@ module Aws::MediaConvert
370
377
  attr_accessor client_cache: ("DISABLED" | "ENABLED")
371
378
  attr_accessor codec_specification: ("RFC_6381" | "RFC_4281")
372
379
  attr_accessor dash_i_frame_trick_play_name_modifier: ::String
373
- attr_accessor dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")
380
+ attr_accessor dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")
374
381
  attr_accessor destination: ::String
375
382
  attr_accessor destination_settings: Types::DestinationSettings
376
383
  attr_accessor encryption: Types::CmafEncryptionSettings
@@ -586,7 +593,7 @@ module Aws::MediaConvert
586
593
  attr_accessor audio_channel_config_scheme_id_uri: ("MPEG_CHANNEL_CONFIGURATION" | "DOLBY_CHANNEL_CONFIGURATION")
587
594
  attr_accessor base_url: ::String
588
595
  attr_accessor dash_i_frame_trick_play_name_modifier: ::String
589
- attr_accessor dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")
596
+ attr_accessor dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT" | "FULL")
590
597
  attr_accessor destination: ::String
591
598
  attr_accessor destination_settings: Types::DestinationSettings
592
599
  attr_accessor encryption: Types::DashIsoEncryptionSettings
@@ -1932,6 +1939,11 @@ module Aws::MediaConvert
1932
1939
  SENSITIVE: []
1933
1940
  end
1934
1941
 
1942
+ class PassthroughSettings
1943
+ attr_accessor video_selector_mode: ("AUTO" | "REMUX_ALL")
1944
+ SENSITIVE: []
1945
+ end
1946
+
1935
1947
  class Policy
1936
1948
  attr_accessor http_inputs: ("ALLOWED" | "DISALLOWED")
1937
1949
  attr_accessor https_inputs: ("ALLOWED" | "DISALLOWED")
@@ -2242,6 +2254,7 @@ module Aws::MediaConvert
2242
2254
  end
2243
2255
 
2244
2256
  class TrackSourceSettings
2257
+ attr_accessor stream_number: ::Integer
2245
2258
  attr_accessor track_number: ::Integer
2246
2259
  SENSITIVE: []
2247
2260
  end
@@ -2340,6 +2353,7 @@ module Aws::MediaConvert
2340
2353
  attr_accessor h264_settings: Types::H264Settings
2341
2354
  attr_accessor h265_settings: Types::H265Settings
2342
2355
  attr_accessor mpeg_2_settings: Types::Mpeg2Settings
2356
+ attr_accessor passthrough_settings: Types::PassthroughSettings
2343
2357
  attr_accessor prores_settings: Types::ProresSettings
2344
2358
  attr_accessor uncompressed_settings: Types::UncompressedSettings
2345
2359
  attr_accessor vc_3_settings: Types::Vc3Settings
@@ -2412,6 +2426,7 @@ module Aws::MediaConvert
2412
2426
 
2413
2427
  class VideoOverlayPosition
2414
2428
  attr_accessor height: ::Integer
2429
+ attr_accessor opacity: ::Integer
2415
2430
  attr_accessor unit: ("PIXELS" | "PERCENTAGE")
2416
2431
  attr_accessor width: ::Integer
2417
2432
  attr_accessor x_position: ::Integer
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconvert
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.171.0
4
+ version: 1.172.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services