aws-sdk-mediaconvert 1.181.0 → 1.182.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +2 -1
- data/lib/aws-sdk-mediaconvert/client_api.rb +14 -0
- data/lib/aws-sdk-mediaconvert/types.rb +70 -4
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- data/sig/client.rbs +21 -0
- data/sig/types.rbs +13 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2751234acedaddba461bae8ba74ad7dc7774552123e85a2bf21559abc3447145
|
|
4
|
+
data.tar.gz: 186a1af35245fcdf7d108927f7513b328ee026304bf1b344c8ddfdb70bb7aa73
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a9fe099ce8e858d5cbda69f25207b004318d51615cabc7abcf72e9593c2dfee1dd482be0f69e557d234b3825603ab09d625a0e08f83e020505075d3dd58ff38
|
|
7
|
+
data.tar.gz: 0fde333dc94fd258ac5bbb9f4062cfc32ab86cac33a6d6186151028a3c7f90ff906f613a9d3580fcae2634d18f4906466ad83cd61b67201b4050fd61f092ee90
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.182.0
|
|
@@ -4458,6 +4458,7 @@ module Aws::MediaConvert
|
|
|
4458
4458
|
# resp.probe_results #=> Array
|
|
4459
4459
|
# resp.probe_results[0].container.duration #=> Float
|
|
4460
4460
|
# resp.probe_results[0].container.format #=> String, one of "mp4", "quicktime", "matroska", "webm", "mxf", "wave", "avi", "mpegts"
|
|
4461
|
+
# resp.probe_results[0].container.start_timecode #=> String
|
|
4461
4462
|
# resp.probe_results[0].container.tracks #=> Array
|
|
4462
4463
|
# resp.probe_results[0].container.tracks[0].audio_properties.bit_depth #=> Integer
|
|
4463
4464
|
# resp.probe_results[0].container.tracks[0].audio_properties.bit_rate #=> Integer
|
|
@@ -6465,7 +6466,7 @@ module Aws::MediaConvert
|
|
|
6465
6466
|
tracer: tracer
|
|
6466
6467
|
)
|
|
6467
6468
|
context[:gem_name] = 'aws-sdk-mediaconvert'
|
|
6468
|
-
context[:gem_version] = '1.
|
|
6469
|
+
context[:gem_version] = '1.182.0'
|
|
6469
6470
|
Seahorse::Client::Request.new(handlers, context)
|
|
6470
6471
|
end
|
|
6471
6472
|
|
|
@@ -551,6 +551,8 @@ module Aws::MediaConvert
|
|
|
551
551
|
MsSmoothFragmentLengthControl = Shapes::StringShape.new(name: 'MsSmoothFragmentLengthControl')
|
|
552
552
|
MsSmoothGroupSettings = Shapes::StructureShape.new(name: 'MsSmoothGroupSettings')
|
|
553
553
|
MsSmoothManifestEncoding = Shapes::StringShape.new(name: 'MsSmoothManifestEncoding')
|
|
554
|
+
MultiViewInput = Shapes::StructureShape.new(name: 'MultiViewInput')
|
|
555
|
+
MultiViewSettings = Shapes::StructureShape.new(name: 'MultiViewSettings')
|
|
554
556
|
MxfAfdSignaling = Shapes::StringShape.new(name: 'MxfAfdSignaling')
|
|
555
557
|
MxfProfile = Shapes::StringShape.new(name: 'MxfProfile')
|
|
556
558
|
MxfSettings = Shapes::StructureShape.new(name: 'MxfSettings')
|
|
@@ -911,6 +913,7 @@ module Aws::MediaConvert
|
|
|
911
913
|
__listOfJobTemplate = Shapes::ListShape.new(name: '__listOfJobTemplate')
|
|
912
914
|
__listOfJobsQueryFilter = Shapes::ListShape.new(name: '__listOfJobsQueryFilter')
|
|
913
915
|
__listOfMsSmoothAdditionalManifest = Shapes::ListShape.new(name: '__listOfMsSmoothAdditionalManifest')
|
|
916
|
+
__listOfMultiViewSettings = Shapes::ListShape.new(name: '__listOfMultiViewSettings')
|
|
914
917
|
__listOfOutput = Shapes::ListShape.new(name: '__listOfOutput')
|
|
915
918
|
__listOfOutputChannelMapping = Shapes::ListShape.new(name: '__listOfOutputChannelMapping')
|
|
916
919
|
__listOfOutputDetail = Shapes::ListShape.new(name: '__listOfOutputDetail')
|
|
@@ -1404,6 +1407,7 @@ module Aws::MediaConvert
|
|
|
1404
1407
|
|
|
1405
1408
|
Container.add_member(:duration, Shapes::ShapeRef.new(shape: __double, location_name: "duration"))
|
|
1406
1409
|
Container.add_member(:format, Shapes::ShapeRef.new(shape: Format, location_name: "format"))
|
|
1410
|
+
Container.add_member(:start_timecode, Shapes::ShapeRef.new(shape: __string, location_name: "startTimecode"))
|
|
1407
1411
|
Container.add_member(:tracks, Shapes::ShapeRef.new(shape: __listOfTrack, location_name: "tracks"))
|
|
1408
1412
|
Container.struct_class = Types::Container
|
|
1409
1413
|
|
|
@@ -2029,6 +2033,7 @@ module Aws::MediaConvert
|
|
|
2029
2033
|
Input.add_member(:image_inserter, Shapes::ShapeRef.new(shape: ImageInserter, location_name: "imageInserter"))
|
|
2030
2034
|
Input.add_member(:input_clippings, Shapes::ShapeRef.new(shape: __listOfInputClipping, location_name: "inputClippings"))
|
|
2031
2035
|
Input.add_member(:input_scan_type, Shapes::ShapeRef.new(shape: InputScanType, location_name: "inputScanType"))
|
|
2036
|
+
Input.add_member(:multi_view_settings, Shapes::ShapeRef.new(shape: __listOfMultiViewSettings, location_name: "multiViewSettings"))
|
|
2032
2037
|
Input.add_member(:position, Shapes::ShapeRef.new(shape: Rectangle, location_name: "position"))
|
|
2033
2038
|
Input.add_member(:program_number, Shapes::ShapeRef.new(shape: __integerMin1Max2147483647, location_name: "programNumber"))
|
|
2034
2039
|
Input.add_member(:psi_control, Shapes::ShapeRef.new(shape: InputPsiControl, location_name: "psiControl"))
|
|
@@ -2072,6 +2077,7 @@ module Aws::MediaConvert
|
|
|
2072
2077
|
InputTemplate.add_member(:image_inserter, Shapes::ShapeRef.new(shape: ImageInserter, location_name: "imageInserter"))
|
|
2073
2078
|
InputTemplate.add_member(:input_clippings, Shapes::ShapeRef.new(shape: __listOfInputClipping, location_name: "inputClippings"))
|
|
2074
2079
|
InputTemplate.add_member(:input_scan_type, Shapes::ShapeRef.new(shape: InputScanType, location_name: "inputScanType"))
|
|
2080
|
+
InputTemplate.add_member(:multi_view_settings, Shapes::ShapeRef.new(shape: __listOfMultiViewSettings, location_name: "multiViewSettings"))
|
|
2075
2081
|
InputTemplate.add_member(:position, Shapes::ShapeRef.new(shape: Rectangle, location_name: "position"))
|
|
2076
2082
|
InputTemplate.add_member(:program_number, Shapes::ShapeRef.new(shape: __integerMin1Max2147483647, location_name: "programNumber"))
|
|
2077
2083
|
InputTemplate.add_member(:psi_control, Shapes::ShapeRef.new(shape: InputPsiControl, location_name: "psiControl"))
|
|
@@ -2475,6 +2481,12 @@ module Aws::MediaConvert
|
|
|
2475
2481
|
MsSmoothGroupSettings.add_member(:manifest_encoding, Shapes::ShapeRef.new(shape: MsSmoothManifestEncoding, location_name: "manifestEncoding"))
|
|
2476
2482
|
MsSmoothGroupSettings.struct_class = Types::MsSmoothGroupSettings
|
|
2477
2483
|
|
|
2484
|
+
MultiViewInput.add_member(:file_input, Shapes::ShapeRef.new(shape: __stringPatternS3Https, location_name: "fileInput"))
|
|
2485
|
+
MultiViewInput.struct_class = Types::MultiViewInput
|
|
2486
|
+
|
|
2487
|
+
MultiViewSettings.add_member(:input, Shapes::ShapeRef.new(shape: MultiViewInput, location_name: "input"))
|
|
2488
|
+
MultiViewSettings.struct_class = Types::MultiViewSettings
|
|
2489
|
+
|
|
2478
2490
|
MxfSettings.add_member(:afd_signaling, Shapes::ShapeRef.new(shape: MxfAfdSignaling, location_name: "afdSignaling"))
|
|
2479
2491
|
MxfSettings.add_member(:profile, Shapes::ShapeRef.new(shape: MxfProfile, location_name: "profile"))
|
|
2480
2492
|
MxfSettings.add_member(:uncompressed_audio_wrapping, Shapes::ShapeRef.new(shape: MxfUncompressedAudioWrapping, location_name: "uncompressedAudioWrapping"))
|
|
@@ -3149,6 +3161,8 @@ module Aws::MediaConvert
|
|
|
3149
3161
|
|
|
3150
3162
|
__listOfMsSmoothAdditionalManifest.member = Shapes::ShapeRef.new(shape: MsSmoothAdditionalManifest)
|
|
3151
3163
|
|
|
3164
|
+
__listOfMultiViewSettings.member = Shapes::ShapeRef.new(shape: MultiViewSettings)
|
|
3165
|
+
|
|
3152
3166
|
__listOfOutput.member = Shapes::ShapeRef.new(shape: Output)
|
|
3153
3167
|
|
|
3154
3168
|
__listOfOutputChannelMapping.member = Shapes::ShapeRef.new(shape: OutputChannelMapping)
|
|
@@ -2494,10 +2494,10 @@ module Aws::MediaConvert
|
|
|
2494
2494
|
# fragment. This feature is supported exclusively for CMAF HLS (fMP4)
|
|
2495
2495
|
# outputs and is compatible with all existing key provider
|
|
2496
2496
|
# integrations (SPEKE v1, SPEKE v2, and Static Key encryption).
|
|
2497
|
-
# Supported codecs: H.264
|
|
2498
|
-
# Choose Enabled to activate Clear Lead DRM optimization.
|
|
2499
|
-
# Disabled to use standard encryption where all segments are
|
|
2500
|
-
# from the beginning.
|
|
2497
|
+
# Supported codecs: H.264, H.265, and AV1 video codecs, and AAC audio
|
|
2498
|
+
# codec. Choose Enabled to activate Clear Lead DRM optimization.
|
|
2499
|
+
# Choose Disabled to use standard encryption where all segments are
|
|
2500
|
+
# encrypted from the beginning.
|
|
2501
2501
|
# @return [String]
|
|
2502
2502
|
#
|
|
2503
2503
|
# @!attribute [rw] constant_initialization_vector
|
|
@@ -3405,6 +3405,12 @@ module Aws::MediaConvert
|
|
|
3405
3405
|
# Probe operation does not recognize.
|
|
3406
3406
|
# @return [String]
|
|
3407
3407
|
#
|
|
3408
|
+
# @!attribute [rw] start_timecode
|
|
3409
|
+
# The start timecode of the media file, in HH:MM:SS:FF format (or
|
|
3410
|
+
# HH:MM:SS;FF for drop frame timecode). Note that this field is null
|
|
3411
|
+
# when the container does not include an embedded start timecode.
|
|
3412
|
+
# @return [String]
|
|
3413
|
+
#
|
|
3408
3414
|
# @!attribute [rw] tracks
|
|
3409
3415
|
# Details about each track (video, audio, or data) in the media file.
|
|
3410
3416
|
# @return [Array<Types::Track>]
|
|
@@ -3414,6 +3420,7 @@ module Aws::MediaConvert
|
|
|
3414
3420
|
class Container < Struct.new(
|
|
3415
3421
|
:duration,
|
|
3416
3422
|
:format,
|
|
3423
|
+
:start_timecode,
|
|
3417
3424
|
:tracks)
|
|
3418
3425
|
SENSITIVE = []
|
|
3419
3426
|
include Aws::Structure
|
|
@@ -8394,6 +8401,16 @@ module Aws::MediaConvert
|
|
|
8394
8401
|
# interlaced. Doing so creates horizontal interlacing artifacts.
|
|
8395
8402
|
# @return [String]
|
|
8396
8403
|
#
|
|
8404
|
+
# @!attribute [rw] multi_view_settings
|
|
8405
|
+
# Specify the enhancement layer input video file path for Multi View
|
|
8406
|
+
# outputs. The base layer input is treated as the left eye and this
|
|
8407
|
+
# Multi View input is treated as the right eye. Only one Multi View
|
|
8408
|
+
# input is currently supported. MediaConvert encodes both views into a
|
|
8409
|
+
# single MV-HEVC output codec. When you add MultiViewSettings to your
|
|
8410
|
+
# job, you can only produce Multi View outputs. Adding any other codec
|
|
8411
|
+
# output to the same job is not supported.
|
|
8412
|
+
# @return [Array<Types::MultiViewSettings>]
|
|
8413
|
+
#
|
|
8397
8414
|
# @!attribute [rw] position
|
|
8398
8415
|
# Use Selection placement to define the video area in your output
|
|
8399
8416
|
# frame. The area outside of the rectangle that you specify here is
|
|
@@ -8504,6 +8521,7 @@ module Aws::MediaConvert
|
|
|
8504
8521
|
:image_inserter,
|
|
8505
8522
|
:input_clippings,
|
|
8506
8523
|
:input_scan_type,
|
|
8524
|
+
:multi_view_settings,
|
|
8507
8525
|
:position,
|
|
8508
8526
|
:program_number,
|
|
8509
8527
|
:psi_control,
|
|
@@ -8806,6 +8824,16 @@ module Aws::MediaConvert
|
|
|
8806
8824
|
# interlaced. Doing so creates horizontal interlacing artifacts.
|
|
8807
8825
|
# @return [String]
|
|
8808
8826
|
#
|
|
8827
|
+
# @!attribute [rw] multi_view_settings
|
|
8828
|
+
# Specify the enhancement layer input video file path for Multi View
|
|
8829
|
+
# outputs. The base layer input is treated as the left eye and this
|
|
8830
|
+
# Multi View input is treated as the right eye. Only one Multi View
|
|
8831
|
+
# input is currently supported. MediaConvert encodes both views into a
|
|
8832
|
+
# single MV-HEVC output codec. When you add MultiViewSettings to your
|
|
8833
|
+
# job, you can only produce Multi View outputs. Adding any other codec
|
|
8834
|
+
# output to the same job is not supported.
|
|
8835
|
+
# @return [Array<Types::MultiViewSettings>]
|
|
8836
|
+
#
|
|
8809
8837
|
# @!attribute [rw] position
|
|
8810
8838
|
# Use Selection placement to define the video area in your output
|
|
8811
8839
|
# frame. The area outside of the rectangle that you specify here is
|
|
@@ -8880,6 +8908,7 @@ module Aws::MediaConvert
|
|
|
8880
8908
|
:image_inserter,
|
|
8881
8909
|
:input_clippings,
|
|
8882
8910
|
:input_scan_type,
|
|
8911
|
+
:multi_view_settings,
|
|
8883
8912
|
:position,
|
|
8884
8913
|
:program_number,
|
|
8885
8914
|
:psi_control,
|
|
@@ -11830,6 +11859,43 @@ module Aws::MediaConvert
|
|
|
11830
11859
|
include Aws::Structure
|
|
11831
11860
|
end
|
|
11832
11861
|
|
|
11862
|
+
# Input settings for MultiView Settings. You can include exactly one
|
|
11863
|
+
# input as enhancement layer.
|
|
11864
|
+
#
|
|
11865
|
+
# @!attribute [rw] file_input
|
|
11866
|
+
# Specify the input file S3, HTTP, or HTTPS URL for your right eye
|
|
11867
|
+
# view video.
|
|
11868
|
+
# @return [String]
|
|
11869
|
+
#
|
|
11870
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/MultiViewInput AWS API Documentation
|
|
11871
|
+
#
|
|
11872
|
+
class MultiViewInput < Struct.new(
|
|
11873
|
+
:file_input)
|
|
11874
|
+
SENSITIVE = []
|
|
11875
|
+
include Aws::Structure
|
|
11876
|
+
end
|
|
11877
|
+
|
|
11878
|
+
# Specify the enhancement layer input video file path for Multi View
|
|
11879
|
+
# outputs. The base layer input is treated as the left eye and this
|
|
11880
|
+
# Multi View input is treated as the right eye. Only one Multi View
|
|
11881
|
+
# input is currently supported. MediaConvert encodes both views into a
|
|
11882
|
+
# single MV-HEVC output codec. When you add MultiViewSettings to your
|
|
11883
|
+
# job, you can only produce Multi View outputs. Adding any other codec
|
|
11884
|
+
# output to the same job is not supported.
|
|
11885
|
+
#
|
|
11886
|
+
# @!attribute [rw] input
|
|
11887
|
+
# Input settings for MultiView Settings. You can include exactly one
|
|
11888
|
+
# input as enhancement layer.
|
|
11889
|
+
# @return [Types::MultiViewInput]
|
|
11890
|
+
#
|
|
11891
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/MultiViewSettings AWS API Documentation
|
|
11892
|
+
#
|
|
11893
|
+
class MultiViewSettings < Struct.new(
|
|
11894
|
+
:input)
|
|
11895
|
+
SENSITIVE = []
|
|
11896
|
+
include Aws::Structure
|
|
11897
|
+
end
|
|
11898
|
+
|
|
11833
11899
|
# These settings relate to your MXF output container.
|
|
11834
11900
|
#
|
|
11835
11901
|
# @!attribute [rw] afd_signaling
|
data/lib/aws-sdk-mediaconvert.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -285,6 +285,13 @@ module Aws
|
|
|
285
285
|
},
|
|
286
286
|
]?,
|
|
287
287
|
input_scan_type: ("AUTO" | "PSF")?,
|
|
288
|
+
multi_view_settings: Array[
|
|
289
|
+
{
|
|
290
|
+
input: {
|
|
291
|
+
file_input: ::String?
|
|
292
|
+
}?
|
|
293
|
+
},
|
|
294
|
+
]?,
|
|
288
295
|
position: {
|
|
289
296
|
height: ::Integer?,
|
|
290
297
|
width: ::Integer?,
|
|
@@ -1867,6 +1874,13 @@ module Aws
|
|
|
1867
1874
|
},
|
|
1868
1875
|
]?,
|
|
1869
1876
|
input_scan_type: ("AUTO" | "PSF")?,
|
|
1877
|
+
multi_view_settings: Array[
|
|
1878
|
+
{
|
|
1879
|
+
input: {
|
|
1880
|
+
file_input: ::String?
|
|
1881
|
+
}?
|
|
1882
|
+
},
|
|
1883
|
+
]?,
|
|
1870
1884
|
position: {
|
|
1871
1885
|
height: ::Integer?,
|
|
1872
1886
|
width: ::Integer?,
|
|
@@ -4615,6 +4629,13 @@ module Aws
|
|
|
4615
4629
|
},
|
|
4616
4630
|
]?,
|
|
4617
4631
|
input_scan_type: ("AUTO" | "PSF")?,
|
|
4632
|
+
multi_view_settings: Array[
|
|
4633
|
+
{
|
|
4634
|
+
input: {
|
|
4635
|
+
file_input: ::String?
|
|
4636
|
+
}?
|
|
4637
|
+
},
|
|
4638
|
+
]?,
|
|
4618
4639
|
position: {
|
|
4619
4640
|
height: ::Integer?,
|
|
4620
4641
|
width: ::Integer?,
|
data/sig/types.rbs
CHANGED
|
@@ -500,6 +500,7 @@ module Aws::MediaConvert
|
|
|
500
500
|
class Container
|
|
501
501
|
attr_accessor duration: ::Float
|
|
502
502
|
attr_accessor format: ("mp4" | "quicktime" | "matroska" | "webm" | "mxf" | "wave" | "avi" | "mpegts")
|
|
503
|
+
attr_accessor start_timecode: ::String
|
|
503
504
|
attr_accessor tracks: ::Array[Types::Track]
|
|
504
505
|
SENSITIVE: []
|
|
505
506
|
end
|
|
@@ -1293,6 +1294,7 @@ module Aws::MediaConvert
|
|
|
1293
1294
|
attr_accessor image_inserter: Types::ImageInserter
|
|
1294
1295
|
attr_accessor input_clippings: ::Array[Types::InputClipping]
|
|
1295
1296
|
attr_accessor input_scan_type: ("AUTO" | "PSF")
|
|
1297
|
+
attr_accessor multi_view_settings: ::Array[Types::MultiViewSettings]
|
|
1296
1298
|
attr_accessor position: Types::Rectangle
|
|
1297
1299
|
attr_accessor program_number: ::Integer
|
|
1298
1300
|
attr_accessor psi_control: ("IGNORE_PSI" | "USE_PSI")
|
|
@@ -1344,6 +1346,7 @@ module Aws::MediaConvert
|
|
|
1344
1346
|
attr_accessor image_inserter: Types::ImageInserter
|
|
1345
1347
|
attr_accessor input_clippings: ::Array[Types::InputClipping]
|
|
1346
1348
|
attr_accessor input_scan_type: ("AUTO" | "PSF")
|
|
1349
|
+
attr_accessor multi_view_settings: ::Array[Types::MultiViewSettings]
|
|
1347
1350
|
attr_accessor position: Types::Rectangle
|
|
1348
1351
|
attr_accessor program_number: ::Integer
|
|
1349
1352
|
attr_accessor psi_control: ("IGNORE_PSI" | "USE_PSI")
|
|
@@ -1830,6 +1833,16 @@ module Aws::MediaConvert
|
|
|
1830
1833
|
SENSITIVE: []
|
|
1831
1834
|
end
|
|
1832
1835
|
|
|
1836
|
+
class MultiViewInput
|
|
1837
|
+
attr_accessor file_input: ::String
|
|
1838
|
+
SENSITIVE: []
|
|
1839
|
+
end
|
|
1840
|
+
|
|
1841
|
+
class MultiViewSettings
|
|
1842
|
+
attr_accessor input: Types::MultiViewInput
|
|
1843
|
+
SENSITIVE: []
|
|
1844
|
+
end
|
|
1845
|
+
|
|
1833
1846
|
class MxfSettings
|
|
1834
1847
|
attr_accessor afd_signaling: ("NO_COPY" | "COPY_FROM_VIDEO")
|
|
1835
1848
|
attr_accessor profile: ("D_10" | "XDCAM" | "OP1A" | "XAVC" | "XDCAM_RDD9")
|