aws-sdk-mediaconvert 1.154.0 → 1.155.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 20b27dc172fd3bdeb8377dd9490bd5cf5b600f34f9d3b187f68000a69eef06ad
4
- data.tar.gz: c6ed7dd483bf2ece854e7560700c1186e53900493c1abeaddc59546d4bd3e01a
3
+ metadata.gz: a17aaf835be828599cb047bd77204a04637b6fa981df58406b95b96301706ac0
4
+ data.tar.gz: 79efd2664f5cbaeead6756e08233a564e0f1d9a9797d901177420a0711fcd639
5
5
  SHA512:
6
- metadata.gz: 4e556e8601e1c49aa26124f9641259ade4e66dad692bdd4463f8409f230b18d06027012e7627b014c0d3f9cea8d76b630c29dc3f0175b34a8d757e7bb5dcab05
7
- data.tar.gz: a5251a6dc068ddfa42a401c727075fccf380ebd614fac4c508822f78d4c9f4365c1b9db033ef939c6c13931a647c078b1977c8ca14e9b522fb9041bfc2988f0a
6
+ metadata.gz: 16588bcc22addba872e4adf2a9a014730010a9f2203414fe894e1eda2b84a0e57c4a3489cc27b644af00060f5bd66c5c847c3a1e29d26afacd99432bd6e0ecf5
7
+ data.tar.gz: 76cf0e3d2846ff5ac423eee7973be87d13bee2aa7445e81b91ed74255b9b68b43f5fe38292af7147984eb9d0f59b39be9b5527d9475201540765b7c66e7b4e80
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.155.0 (2025-03-26)
5
+ ------------------
6
+
7
+ * Feature - This release adds a configurable Quality Level setting for the top rendition of Auto ABR jobs
8
+
4
9
  1.154.0 (2025-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.154.0
1
+ 1.155.0
@@ -4167,12 +4167,14 @@ module Aws::MediaConvert
4167
4167
  req.send_request(options)
4168
4168
  end
4169
4169
 
4170
- # The Probe operation analyzes the provided media file and returns
4171
- # comprehensive metadata about its container format, tracks, and any
4172
- # encountered errors.
4170
+ # Use Probe to obtain detailed information about your input media files.
4171
+ # Probe returns a JSON that includes container, codec, frame rate,
4172
+ # resolution, track count, audio layout, captions, and more. You can use
4173
+ # this information to learn more about your media files, or to help make
4174
+ # decisions while automating your transcoding workflow.
4173
4175
  #
4174
4176
  # @option params [Array<Types::ProbeInputFile>] :input_files
4175
- # The list of input media files to be probed.
4177
+ # Specify a media file to probe.
4176
4178
  #
4177
4179
  # @return [Types::ProbeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4178
4180
  #
@@ -6035,7 +6037,7 @@ module Aws::MediaConvert
6035
6037
  tracer: tracer
6036
6038
  )
6037
6039
  context[:gem_name] = 'aws-sdk-mediaconvert'
6038
- context[:gem_version] = '1.154.0'
6040
+ context[:gem_version] = '1.155.0'
6039
6041
  Seahorse::Client::Request.new(handlers, context)
6040
6042
  end
6041
6043
 
@@ -727,6 +727,7 @@ module Aws::MediaConvert
727
727
  __doubleMin0 = Shapes::FloatShape.new(name: '__doubleMin0')
728
728
  __doubleMin0Max1 = Shapes::FloatShape.new(name: '__doubleMin0Max1')
729
729
  __doubleMin0Max2147483647 = Shapes::FloatShape.new(name: '__doubleMin0Max2147483647')
730
+ __doubleMin1Max10 = Shapes::FloatShape.new(name: '__doubleMin1Max10')
730
731
  __doubleMinNegative59Max0 = Shapes::FloatShape.new(name: '__doubleMinNegative59Max0')
731
732
  __doubleMinNegative60Max3 = Shapes::FloatShape.new(name: '__doubleMinNegative60Max3')
732
733
  __doubleMinNegative60Max6 = Shapes::FloatShape.new(name: '__doubleMinNegative60Max6')
@@ -1074,6 +1075,7 @@ module Aws::MediaConvert
1074
1075
  AutomatedAbrRule.struct_class = Types::AutomatedAbrRule
1075
1076
 
1076
1077
  AutomatedAbrSettings.add_member(:max_abr_bitrate, Shapes::ShapeRef.new(shape: __integerMin100000Max100000000, location_name: "maxAbrBitrate"))
1078
+ AutomatedAbrSettings.add_member(:max_quality_level, Shapes::ShapeRef.new(shape: __doubleMin1Max10, location_name: "maxQualityLevel"))
1077
1079
  AutomatedAbrSettings.add_member(:max_renditions, Shapes::ShapeRef.new(shape: __integerMin3Max15, location_name: "maxRenditions"))
1078
1080
  AutomatedAbrSettings.add_member(:min_abr_bitrate, Shapes::ShapeRef.new(shape: __integerMin100000Max100000000, location_name: "minAbrBitrate"))
1079
1081
  AutomatedAbrSettings.add_member(:rules, Shapes::ShapeRef.new(shape: __listOfAutomatedAbrRule, location_name: "rules"))
@@ -679,26 +679,27 @@ module Aws::MediaConvert
679
679
  include Aws::Structure
680
680
  end
681
681
 
682
- # Properties specific to audio tracks.
682
+ # Details about the media file's audio track.
683
683
  #
684
684
  # @!attribute [rw] bit_depth
685
685
  # The bit depth of the audio track.
686
686
  # @return [Integer]
687
687
  #
688
688
  # @!attribute [rw] bit_rate
689
- # The bit rate of the audio track in bits per second.
689
+ # The bit rate of the audio track, in bits per second.
690
690
  # @return [Integer]
691
691
  #
692
692
  # @!attribute [rw] channels
693
- # The number of audio channels.
693
+ # The number of audio channels in the audio track.
694
694
  # @return [Integer]
695
695
  #
696
696
  # @!attribute [rw] frame_rate
697
- # the calculated frame rate of the asset.
697
+ # The frame rate of the video or audio track.
698
698
  # @return [Types::FrameRate]
699
699
  #
700
700
  # @!attribute [rw] language_code
701
- # the language code of the track
701
+ # The language code of the audio track, in three character ISO 639-3
702
+ # format.
702
703
  # @return [String]
703
704
  #
704
705
  # @!attribute [rw] sample_rate
@@ -968,6 +969,16 @@ module Aws::MediaConvert
968
969
  # the value that you specify.
969
970
  # @return [Integer]
970
971
  #
972
+ # @!attribute [rw] max_quality_level
973
+ # Optional. Specify the QVBR quality level to use for all renditions
974
+ # in your automated ABR stack. To have MediaConvert automatically
975
+ # determine the quality level: Leave blank. To manually specify a
976
+ # quality level: Enter an integer from 1 to 10. MediaConvert will use
977
+ # a quality level up to the value that you specify, depending on your
978
+ # source. For more information about QVBR quality levels, see:
979
+ # https://docs.aws.amazon.com/mediaconvert/latest/ug/qvbr-guidelines.html
980
+ # @return [Float]
981
+ #
971
982
  # @!attribute [rw] max_renditions
972
983
  # Optional. The maximum number of renditions that MediaConvert will
973
984
  # create in your automated ABR stack. The number of renditions is
@@ -998,6 +1009,7 @@ module Aws::MediaConvert
998
1009
  #
999
1010
  class AutomatedAbrSettings < Struct.new(
1000
1011
  :max_abr_bitrate,
1012
+ :max_quality_level,
1001
1013
  :max_renditions,
1002
1014
  :min_abr_bitrate,
1003
1015
  :rules)
@@ -2932,18 +2944,23 @@ module Aws::MediaConvert
2932
2944
  include Aws::Structure
2933
2945
  end
2934
2946
 
2935
- # Information about the container format of the media file.
2947
+ # The container of your media file. This information helps you
2948
+ # understand the overall structure and details of your media, including
2949
+ # format, duration, and track layout.
2936
2950
  #
2937
2951
  # @!attribute [rw] duration
2938
- # The duration of the media file in seconds.
2952
+ # The total duration of your media file, in seconds.
2939
2953
  # @return [Float]
2940
2954
  #
2941
2955
  # @!attribute [rw] format
2942
- # The format of the container
2956
+ # The format of your media file. For example: MP4, QuickTime (MOV),
2957
+ # Matroska (MKV), or WebM. Note that this will be blank if your media
2958
+ # file has a format that the MediaConvert Probe operation does not
2959
+ # recognize.
2943
2960
  # @return [String]
2944
2961
  #
2945
2962
  # @!attribute [rw] tracks
2946
- # List of Track objects.
2963
+ # Details about each track (video, audio, or data) in the media file.
2947
2964
  # @return [Array<Types::Track>]
2948
2965
  #
2949
2966
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Container AWS API Documentation
@@ -3750,10 +3767,11 @@ module Aws::MediaConvert
3750
3767
  include Aws::Structure
3751
3768
  end
3752
3769
 
3753
- # Properties specific to data tracks.
3770
+ # Details about the media file's data track.
3754
3771
  #
3755
3772
  # @!attribute [rw] language_code
3756
- # the language code of the track
3773
+ # The language code of the data track, in three character ISO 639-3
3774
+ # format.
3757
3775
  # @return [String]
3758
3776
  #
3759
3777
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/DataProperties AWS API Documentation
@@ -5370,14 +5388,18 @@ module Aws::MediaConvert
5370
5388
  include Aws::Structure
5371
5389
  end
5372
5390
 
5373
- # the calculated frame rate of the asset.
5391
+ # The frame rate of the video or audio track.
5374
5392
  #
5375
5393
  # @!attribute [rw] denominator
5376
- # the denominator of the frame rate of the asset.
5394
+ # The denominator, or bottom number, in the fractional frame rate. For
5395
+ # example, if your frame rate is 24000 / 1001 (23.976 frames per
5396
+ # second), then the denominator would be 1001.
5377
5397
  # @return [Integer]
5378
5398
  #
5379
5399
  # @!attribute [rw] numerator
5380
- # the numerator of the frame rate of the asset.
5400
+ # The numerator, or top number, in the fractional frame rate. For
5401
+ # example, if your frame rate is 24000 / 1001 (23.976 frames per
5402
+ # second), then the numerator would be 24000.
5381
5403
  # @return [Integer]
5382
5404
  #
5383
5405
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/FrameRate AWS API Documentation
@@ -9898,22 +9920,22 @@ module Aws::MediaConvert
9898
9920
  include Aws::Structure
9899
9921
  end
9900
9922
 
9901
- # Metadata about the file.
9923
+ # Metadata and other file information.
9902
9924
  #
9903
9925
  # @!attribute [rw] etag
9904
- # The ETag of the file.
9926
+ # The entity tag (ETag) of the file.
9905
9927
  # @return [String]
9906
9928
  #
9907
9929
  # @!attribute [rw] file_size
9908
- # The size of the file in bytes.
9930
+ # The size of the media file, in bytes.
9909
9931
  # @return [Integer]
9910
9932
  #
9911
9933
  # @!attribute [rw] last_modified
9912
- # The last modification time of the file.
9934
+ # The last modification timestamp of the media file, in Unix time.
9913
9935
  # @return [Time]
9914
9936
  #
9915
9937
  # @!attribute [rw] mime_type
9916
- # The MIME type of the file.
9938
+ # The MIME type of the media file.
9917
9939
  # @return [String]
9918
9940
  #
9919
9941
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Metadata AWS API Documentation
@@ -11685,8 +11707,7 @@ module Aws::MediaConvert
11685
11707
  # The input file that needs to be analyzed.
11686
11708
  #
11687
11709
  # @!attribute [rw] file_url
11688
- # The URI to your input file(s) that is stored in Amazon S3 or on an
11689
- # HTTP(S) server.
11710
+ # Specify the S3, HTTP, or HTTPS URL for your media file.
11690
11711
  # @return [String]
11691
11712
  #
11692
11713
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ProbeInputFile AWS API Documentation
@@ -11701,7 +11722,7 @@ module Aws::MediaConvert
11701
11722
  # about them.
11702
11723
  #
11703
11724
  # @!attribute [rw] input_files
11704
- # The list of input media files to be probed.
11725
+ # Specify a media file to probe.
11705
11726
  # @return [Array<Types::ProbeInputFile>]
11706
11727
  #
11707
11728
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ProbeRequest AWS API Documentation
@@ -11712,12 +11733,11 @@ module Aws::MediaConvert
11712
11733
  include Aws::Structure
11713
11734
  end
11714
11735
 
11715
- # The response from a media file probe operation, providing
11716
- # comprehensive metadata about the file, including its container format,
11717
- # tracks (video, audio, data).
11736
+ # The response from a MediaConvert Probe operation, in JSON form, with
11737
+ # detailed information about your input media.
11718
11738
  #
11719
11739
  # @!attribute [rw] probe_results
11720
- # List of probe results for the input media file(s).
11740
+ # Probe results for your media file.
11721
11741
  # @return [Array<Types::ProbeResult>]
11722
11742
  #
11723
11743
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ProbeResponse AWS API Documentation
@@ -11728,18 +11748,20 @@ module Aws::MediaConvert
11728
11748
  include Aws::Structure
11729
11749
  end
11730
11750
 
11731
- # The metadata and analysis results for a media file.
11751
+ # Probe results for your media file.
11732
11752
  #
11733
11753
  # @!attribute [rw] container
11734
- # Information about the container format of the media file.
11754
+ # The container of your media file. This information helps you
11755
+ # understand the overall structure and details of your media,
11756
+ # including format, duration, and track layout.
11735
11757
  # @return [Types::Container]
11736
11758
  #
11737
11759
  # @!attribute [rw] metadata
11738
- # Metadata about the file.
11760
+ # Metadata and other file information.
11739
11761
  # @return [Types::Metadata]
11740
11762
  #
11741
11763
  # @!attribute [rw] track_mappings
11742
- # List of Track mapping objects.
11764
+ # An array containing track mapping information.
11743
11765
  # @return [Array<Types::TrackMapping>]
11744
11766
  #
11745
11767
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ProbeResult AWS API Documentation
@@ -12891,34 +12913,35 @@ module Aws::MediaConvert
12891
12913
  include Aws::Structure
12892
12914
  end
12893
12915
 
12894
- # The track information such as codec, duration, etc.
12916
+ # Details about each track (video, audio, or data) in the media file.
12895
12917
  #
12896
12918
  # @!attribute [rw] audio_properties
12897
- # Properties specific to audio tracks.
12919
+ # Details about the media file's audio track.
12898
12920
  # @return [Types::AudioProperties]
12899
12921
  #
12900
12922
  # @!attribute [rw] codec
12901
- # The codec used for the track.
12923
+ # The codec of the audio or video track, or caption format of the data
12924
+ # track.
12902
12925
  # @return [String]
12903
12926
  #
12904
12927
  # @!attribute [rw] data_properties
12905
- # Properties specific to data tracks.
12928
+ # Details about the media file's data track.
12906
12929
  # @return [Types::DataProperties]
12907
12930
  #
12908
12931
  # @!attribute [rw] duration
12909
- # The duration of the track in seconds.
12932
+ # The duration of the track, in seconds.
12910
12933
  # @return [Float]
12911
12934
  #
12912
12935
  # @!attribute [rw] index
12913
- # The index of the track.
12936
+ # The unique index number of the track, starting at 1.
12914
12937
  # @return [Integer]
12915
12938
  #
12916
12939
  # @!attribute [rw] track_type
12917
- # The type of the track (video, audio, or data).
12940
+ # The type of track: video, audio, or data.
12918
12941
  # @return [String]
12919
12942
  #
12920
12943
  # @!attribute [rw] video_properties
12921
- # Properties specific to video tracks.
12944
+ # Details about the media file's video track.
12922
12945
  # @return [Types::VideoProperties]
12923
12946
  #
12924
12947
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Track AWS API Documentation
@@ -12935,18 +12958,18 @@ module Aws::MediaConvert
12935
12958
  include Aws::Structure
12936
12959
  end
12937
12960
 
12938
- # Track mapping information.
12961
+ # An array containing track mapping information.
12939
12962
  #
12940
12963
  # @!attribute [rw] audio_track_indexes
12941
- # The indexes of the audio tracks.
12964
+ # The index numbers of the audio tracks in your media file.
12942
12965
  # @return [Array<Integer>]
12943
12966
  #
12944
12967
  # @!attribute [rw] data_track_indexes
12945
- # The indexes of the data tracks.
12968
+ # The index numbers of the data tracks in your media file.
12946
12969
  # @return [Array<Integer>]
12947
12970
  #
12948
12971
  # @!attribute [rw] video_track_indexes
12949
- # The indexes of the video tracks.
12972
+ # The index numbers of the video tracks in your media file.
12950
12973
  # @return [Array<Integer>]
12951
12974
  #
12952
12975
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/TrackMapping AWS API Documentation
@@ -14070,38 +14093,38 @@ module Aws::MediaConvert
14070
14093
  include Aws::Structure
14071
14094
  end
14072
14095
 
14073
- # Properties specific to video tracks.
14096
+ # Details about the media file's video track.
14074
14097
  #
14075
14098
  # @!attribute [rw] bit_depth
14076
14099
  # The bit depth of the video track.
14077
14100
  # @return [Integer]
14078
14101
  #
14079
14102
  # @!attribute [rw] bit_rate
14080
- # The bit rate of the video track in bits per second.
14103
+ # The bit rate of the video track, in bits per second.
14081
14104
  # @return [Integer]
14082
14105
  #
14083
14106
  # @!attribute [rw] color_primaries
14084
- # the color primaries.
14107
+ # The color space color primaries of the video track.
14085
14108
  # @return [String]
14086
14109
  #
14087
14110
  # @!attribute [rw] frame_rate
14088
- # the calculated frame rate of the asset.
14111
+ # The frame rate of the video or audio track.
14089
14112
  # @return [Types::FrameRate]
14090
14113
  #
14091
14114
  # @!attribute [rw] height
14092
- # The height of the video track in pixels.
14115
+ # The height of the video track, in pixels.
14093
14116
  # @return [Integer]
14094
14117
  #
14095
14118
  # @!attribute [rw] matrix_coefficients
14096
- # the matrix coefficients.
14119
+ # The color space matrix coefficients of the video track.
14097
14120
  # @return [String]
14098
14121
  #
14099
14122
  # @!attribute [rw] transfer_characteristics
14100
- # the transfer characteristics.
14123
+ # The color space transfer characteristics of the video track.
14101
14124
  # @return [String]
14102
14125
  #
14103
14126
  # @!attribute [rw] width
14104
- # The width of the video track in pixels.
14127
+ # The width of the video track, in pixels.
14105
14128
  # @return [Integer]
14106
14129
  #
14107
14130
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/VideoProperties AWS API Documentation
@@ -54,7 +54,7 @@ module Aws::MediaConvert
54
54
  autoload :EndpointProvider, 'aws-sdk-mediaconvert/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-mediaconvert/endpoints'
56
56
 
57
- GEM_VERSION = '1.154.0'
57
+ GEM_VERSION = '1.155.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -416,6 +416,7 @@ module Aws
416
416
  automated_encoding_settings: {
417
417
  abr_settings: {
418
418
  max_abr_bitrate: ::Integer?,
419
+ max_quality_level: ::Float?,
419
420
  max_renditions: ::Integer?,
420
421
  min_abr_bitrate: ::Integer?,
421
422
  rules: Array[
@@ -1882,6 +1883,7 @@ module Aws
1882
1883
  automated_encoding_settings: {
1883
1884
  abr_settings: {
1884
1885
  max_abr_bitrate: ::Integer?,
1886
+ max_quality_level: ::Float?,
1885
1887
  max_renditions: ::Integer?,
1886
1888
  min_abr_bitrate: ::Integer?,
1887
1889
  rules: Array[
@@ -4441,6 +4443,7 @@ module Aws
4441
4443
  automated_encoding_settings: {
4442
4444
  abr_settings: {
4443
4445
  max_abr_bitrate: ::Integer?,
4446
+ max_quality_level: ::Float?,
4444
4447
  max_renditions: ::Integer?,
4445
4448
  min_abr_bitrate: ::Integer?,
4446
4449
  rules: Array[
data/sig/types.rbs CHANGED
@@ -165,6 +165,7 @@ module Aws::MediaConvert
165
165
 
166
166
  class AutomatedAbrSettings
167
167
  attr_accessor max_abr_bitrate: ::Integer
168
+ attr_accessor max_quality_level: ::Float
168
169
  attr_accessor max_renditions: ::Integer
169
170
  attr_accessor min_abr_bitrate: ::Integer
170
171
  attr_accessor rules: ::Array[Types::AutomatedAbrRule]
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.154.0
4
+ version: 1.155.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-18 00:00:00.000000000 Z
11
+ date: 2025-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core