aws-sdk-mediaconvert 1.102.0 → 1.103.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: 5797640049011bc02310afdaeb77eaf43183b9c611b35a56cb69ff1b39c9e4b8
4
- data.tar.gz: 014dd24ff279b4dd6ce7c486f9dccc63a9e919c5bd71ec93826c0dcf581faed8
3
+ metadata.gz: f25701ce6a743977f1fecfa551dd9c31798b03b299219512f181152d43c53afd
4
+ data.tar.gz: 8e45c2fbb64ed872e0df693caed5440b47adca60bf4876298aa9e9155d8171ac
5
5
  SHA512:
6
- metadata.gz: 4f32e5f8f327359e4e0438c0ee814b51b502e92c5e935afe6f9e8c9f647c1286c676dfdc358ec0cce2baca75a9e1efcbb990af5080b8441f3bbad47ce4277fc9
7
- data.tar.gz: e0000c8a36e0b7c147e26f40a2a993644afad457194f2e6036ad37147b79338c8df8844ebf1550fa6b20c5d4aa766c134874c152814a44132d787da0c133330b
6
+ metadata.gz: 7c5ef2152a32a44f2fa1bd839df960a2796394d8fb401def9d3cc956ea468425d50dfea60a8f07aabf175ef487c2e972c75597964b973aefe0e7da8138060416
7
+ data.tar.gz: 99317ccf71f39c0a2f818af03b1ad74424debb680b121428452681b1285a347fd5b067d443ddeb4274af9694679cf850587a9e42567a66128ae3e98769e3394d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.103.0 (2023-03-23)
5
+ ------------------
6
+
7
+ * Feature - AWS Elemental MediaConvert SDK now supports passthrough of ID3v2 tags for audio inputs to audio-only HLS outputs.
8
+
4
9
  1.102.0 (2023-03-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.102.0
1
+ 1.103.0
@@ -12247,7 +12247,7 @@ module Aws::MediaConvert
12247
12247
  params: params,
12248
12248
  config: config)
12249
12249
  context[:gem_name] = 'aws-sdk-mediaconvert'
12250
- context[:gem_version] = '1.102.0'
12250
+ context[:gem_version] = '1.103.0'
12251
12251
  Seahorse::Client::Request.new(handlers, context)
12252
12252
  end
12253
12253
 
@@ -3950,21 +3950,16 @@ module Aws::MediaConvert
3950
3950
  #
3951
3951
  # @!attribute [rw] dds_handling
3952
3952
  # Specify how MediaConvert handles the display definition segment
3953
- # (DDS). Keep the default, None (NONE), to exclude the DDS from this
3954
- # set of captions. Choose No display window (NO\_DISPLAY\_WINDOW) to
3955
- # have MediaConvert include the DDS but not include display window
3956
- # data. In this case, MediaConvert writes that information to the page
3957
- # composition segment (PCS) instead. Choose Specify (SPECIFIED) to
3958
- # have MediaConvert set up the display window based on the values that
3959
- # you specify in related job settings. For video resolutions that are
3960
- # 576 pixels or smaller in height, MediaConvert doesn't include the
3961
- # DDS, regardless of the value you choose for DDS handling
3962
- # (ddsHandling). In this case, it doesn't write the display window
3963
- # data to the PCS either. Related settings: Use the settings DDS
3964
- # x-coordinate (ddsXCoordinate) and DDS y-coordinate (ddsYCoordinate)
3965
- # to specify the offset between the top left corner of the display
3966
- # window and the top left corner of the video frame. All burn-in and
3967
- # DVB-Sub font settings must match.
3953
+ # (DDS). To exclude the DDS from this set of captions: Keep the
3954
+ # default, None. To include the DDS: Choose Specified. When you do,
3955
+ # also specify the offset coordinates of the display window with DDS
3956
+ # x-coordinate and DDS y-coordinate. To include the DDS, but not
3957
+ # include display window data: Choose No display window. When you do,
3958
+ # you can write position metadata to the page composition segment
3959
+ # (PCS) with DDS x-coordinate and DDS y-coordinate. For video
3960
+ # resolutions with a height of 576 pixels or less, MediaConvert
3961
+ # doesn't include the DDS, regardless of the value you choose for DDS
3962
+ # handling. All burn-in and DVB-Sub font settings must match.
3968
3963
  # @return [String]
3969
3964
  #
3970
3965
  # @!attribute [rw] dds_x_coordinate
@@ -9288,12 +9283,11 @@ module Aws::MediaConvert
9288
9283
  # @return [String]
9289
9284
  #
9290
9285
  # @!attribute [rw] padding_control
9291
- # To make this output compatible with Omenon, keep the default value,
9292
- # OMNEON. Unless you need Omneon compatibility, set this value to
9293
- # NONE. When you keep the default value, OMNEON, MediaConvert
9294
- # increases the length of the edit list atom. This might cause file
9295
- # rejections when a recipient of the output file doesn't expct this
9296
- # extra padding.
9286
+ # Unless you need Omneon compatibility: Keep the default value, None.
9287
+ # To make this output compatible with Omneon: Choose Omneon. When you
9288
+ # do, MediaConvert increases the length of the 'elst' edit list
9289
+ # atom. Note that this might cause file rejections when a recipient of
9290
+ # the output file doesn't expect this extra padding.
9297
9291
  # @return [String]
9298
9292
  #
9299
9293
  # @!attribute [rw] reference
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mediaconvert/customizations'
52
52
  # @!group service
53
53
  module Aws::MediaConvert
54
54
 
55
- GEM_VERSION = '1.102.0'
55
+ GEM_VERSION = '1.103.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconvert
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.102.0
4
+ version: 1.103.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: 2023-03-03 00:00:00.000000000 Z
11
+ date: 2023-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core