aws-sdk-mediaconvert 1.152.0 → 1.154.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +94 -13
- data/lib/aws-sdk-mediaconvert/client_api.rb +115 -0
- data/lib/aws-sdk-mediaconvert/types.rb +394 -23
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- data/sig/client.rbs +43 -19
- data/sig/types.rbs +95 -5
- metadata +2 -2
@@ -679,6 +679,45 @@ module Aws::MediaConvert
|
|
679
679
|
include Aws::Structure
|
680
680
|
end
|
681
681
|
|
682
|
+
# Properties specific to audio tracks.
|
683
|
+
#
|
684
|
+
# @!attribute [rw] bit_depth
|
685
|
+
# The bit depth of the audio track.
|
686
|
+
# @return [Integer]
|
687
|
+
#
|
688
|
+
# @!attribute [rw] bit_rate
|
689
|
+
# The bit rate of the audio track in bits per second.
|
690
|
+
# @return [Integer]
|
691
|
+
#
|
692
|
+
# @!attribute [rw] channels
|
693
|
+
# The number of audio channels.
|
694
|
+
# @return [Integer]
|
695
|
+
#
|
696
|
+
# @!attribute [rw] frame_rate
|
697
|
+
# the calculated frame rate of the asset.
|
698
|
+
# @return [Types::FrameRate]
|
699
|
+
#
|
700
|
+
# @!attribute [rw] language_code
|
701
|
+
# the language code of the track
|
702
|
+
# @return [String]
|
703
|
+
#
|
704
|
+
# @!attribute [rw] sample_rate
|
705
|
+
# The sample rate of the audio track.
|
706
|
+
# @return [Integer]
|
707
|
+
#
|
708
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/AudioProperties AWS API Documentation
|
709
|
+
#
|
710
|
+
class AudioProperties < Struct.new(
|
711
|
+
:bit_depth,
|
712
|
+
:bit_rate,
|
713
|
+
:channels,
|
714
|
+
:frame_rate,
|
715
|
+
:language_code,
|
716
|
+
:sample_rate)
|
717
|
+
SENSITIVE = []
|
718
|
+
include Aws::Structure
|
719
|
+
end
|
720
|
+
|
682
721
|
# Use Audio selectors to specify a track or set of tracks from the input
|
683
722
|
# that you will use in your outputs. You can use multiple Audio
|
684
723
|
# selectors per input.
|
@@ -2359,11 +2398,25 @@ module Aws::MediaConvert
|
|
2359
2398
|
# @return [Integer]
|
2360
2399
|
#
|
2361
2400
|
# @!attribute [rw] segment_length_control
|
2362
|
-
# Specify how you want MediaConvert to determine
|
2363
|
-
#
|
2364
|
-
#
|
2365
|
-
# I-frames
|
2366
|
-
#
|
2401
|
+
# Specify how you want MediaConvert to determine segment lengths in
|
2402
|
+
# this output group. To use the exact value that you specify under
|
2403
|
+
# Segment length: Choose Exact. Note that this might result in
|
2404
|
+
# additional I-frames in the output GOP. To create segment lengths
|
2405
|
+
# that are a multiple of the GOP: Choose Multiple of GOP. MediaConvert
|
2406
|
+
# will round up the segment lengths to match the next GOP boundary. To
|
2407
|
+
# have MediaConvert automatically determine a segment duration that is
|
2408
|
+
# a multiple of both the audio packets and the frame rates: Choose
|
2409
|
+
# Match. When you do, also specify a target segment duration under
|
2410
|
+
# Segment length. This is useful for some ad-insertion or segment
|
2411
|
+
# replacement workflows. Note that Match has the following
|
2412
|
+
# requirements: - Output containers: Include at least one video output
|
2413
|
+
# and at least one audio output. Audio-only outputs are not supported.
|
2414
|
+
# - Output frame rate: Follow source is not supported. - Multiple
|
2415
|
+
# output frame rates: When you specify multiple outputs, we recommend
|
2416
|
+
# they share a similar frame rate (as in X/3, X/2, X, or 2X). For
|
2417
|
+
# example: 5, 15, 30 and 60. Or: 25 and 50. (Outputs must share an
|
2418
|
+
# integer multiple.) - Output audio codec: Specify Advanced Audio
|
2419
|
+
# Coding (AAC). - Output sample rate: Choose 48kHz.
|
2367
2420
|
# @return [String]
|
2368
2421
|
#
|
2369
2422
|
# @!attribute [rw] stream_inf_resolution
|
@@ -2879,6 +2932,30 @@ module Aws::MediaConvert
|
|
2879
2932
|
include Aws::Structure
|
2880
2933
|
end
|
2881
2934
|
|
2935
|
+
# Information about the container format of the media file.
|
2936
|
+
#
|
2937
|
+
# @!attribute [rw] duration
|
2938
|
+
# The duration of the media file in seconds.
|
2939
|
+
# @return [Float]
|
2940
|
+
#
|
2941
|
+
# @!attribute [rw] format
|
2942
|
+
# The format of the container
|
2943
|
+
# @return [String]
|
2944
|
+
#
|
2945
|
+
# @!attribute [rw] tracks
|
2946
|
+
# List of Track objects.
|
2947
|
+
# @return [Array<Types::Track>]
|
2948
|
+
#
|
2949
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Container AWS API Documentation
|
2950
|
+
#
|
2951
|
+
class Container < Struct.new(
|
2952
|
+
:duration,
|
2953
|
+
:format,
|
2954
|
+
:tracks)
|
2955
|
+
SENSITIVE = []
|
2956
|
+
include Aws::Structure
|
2957
|
+
end
|
2958
|
+
|
2882
2959
|
# Container specific settings.
|
2883
2960
|
#
|
2884
2961
|
# @!attribute [rw] cmfc_settings
|
@@ -3546,11 +3623,25 @@ module Aws::MediaConvert
|
|
3546
3623
|
# @return [Integer]
|
3547
3624
|
#
|
3548
3625
|
# @!attribute [rw] segment_length_control
|
3549
|
-
# Specify how you want MediaConvert to determine
|
3550
|
-
#
|
3551
|
-
#
|
3552
|
-
# I-frames
|
3553
|
-
#
|
3626
|
+
# Specify how you want MediaConvert to determine segment lengths in
|
3627
|
+
# this output group. To use the exact value that you specify under
|
3628
|
+
# Segment length: Choose Exact. Note that this might result in
|
3629
|
+
# additional I-frames in the output GOP. To create segment lengths
|
3630
|
+
# that are a multiple of the GOP: Choose Multiple of GOP. MediaConvert
|
3631
|
+
# will round up the segment lengths to match the next GOP boundary. To
|
3632
|
+
# have MediaConvert automatically determine a segment duration that is
|
3633
|
+
# a multiple of both the audio packets and the frame rates: Choose
|
3634
|
+
# Match. When you do, also specify a target segment duration under
|
3635
|
+
# Segment length. This is useful for some ad-insertion or segment
|
3636
|
+
# replacement workflows. Note that Match has the following
|
3637
|
+
# requirements: - Output containers: Include at least one video output
|
3638
|
+
# and at least one audio output. Audio-only outputs are not supported.
|
3639
|
+
# - Output frame rate: Follow source is not supported. - Multiple
|
3640
|
+
# output frame rates: When you specify multiple outputs, we recommend
|
3641
|
+
# they share a similar frame rate (as in X/3, X/2, X, or 2X). For
|
3642
|
+
# example: 5, 15, 30 and 60. Or: 25 and 50. (Outputs must share an
|
3643
|
+
# integer multiple.) - Output audio codec: Specify Advanced Audio
|
3644
|
+
# Coding (AAC). - Output sample rate: Choose 48kHz.
|
3554
3645
|
# @return [String]
|
3555
3646
|
#
|
3556
3647
|
# @!attribute [rw] video_composition_offsets
|
@@ -3659,6 +3750,20 @@ module Aws::MediaConvert
|
|
3659
3750
|
include Aws::Structure
|
3660
3751
|
end
|
3661
3752
|
|
3753
|
+
# Properties specific to data tracks.
|
3754
|
+
#
|
3755
|
+
# @!attribute [rw] language_code
|
3756
|
+
# the language code of the track
|
3757
|
+
# @return [String]
|
3758
|
+
#
|
3759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/DataProperties AWS API Documentation
|
3760
|
+
#
|
3761
|
+
class DataProperties < Struct.new(
|
3762
|
+
:language_code)
|
3763
|
+
SENSITIVE = []
|
3764
|
+
include Aws::Structure
|
3765
|
+
end
|
3766
|
+
|
3662
3767
|
# Settings for deinterlacer
|
3663
3768
|
#
|
3664
3769
|
# @!attribute [rw] algorithm
|
@@ -5265,6 +5370,25 @@ module Aws::MediaConvert
|
|
5265
5370
|
include Aws::Structure
|
5266
5371
|
end
|
5267
5372
|
|
5373
|
+
# the calculated frame rate of the asset.
|
5374
|
+
#
|
5375
|
+
# @!attribute [rw] denominator
|
5376
|
+
# the denominator of the frame rate of the asset.
|
5377
|
+
# @return [Integer]
|
5378
|
+
#
|
5379
|
+
# @!attribute [rw] numerator
|
5380
|
+
# the numerator of the frame rate of the asset.
|
5381
|
+
# @return [Integer]
|
5382
|
+
#
|
5383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/FrameRate AWS API Documentation
|
5384
|
+
#
|
5385
|
+
class FrameRate < Struct.new(
|
5386
|
+
:denominator,
|
5387
|
+
:numerator)
|
5388
|
+
SENSITIVE = []
|
5389
|
+
include Aws::Structure
|
5390
|
+
end
|
5391
|
+
|
5268
5392
|
# Query a job by sending a request with the job ID.
|
5269
5393
|
#
|
5270
5394
|
# @!attribute [rw] id
|
@@ -7024,11 +7148,25 @@ module Aws::MediaConvert
|
|
7024
7148
|
# @return [Integer]
|
7025
7149
|
#
|
7026
7150
|
# @!attribute [rw] segment_length_control
|
7027
|
-
# Specify how you want MediaConvert to determine
|
7028
|
-
#
|
7029
|
-
#
|
7030
|
-
# I-frames
|
7031
|
-
#
|
7151
|
+
# Specify how you want MediaConvert to determine segment lengths in
|
7152
|
+
# this output group. To use the exact value that you specify under
|
7153
|
+
# Segment length: Choose Exact. Note that this might result in
|
7154
|
+
# additional I-frames in the output GOP. To create segment lengths
|
7155
|
+
# that are a multiple of the GOP: Choose Multiple of GOP. MediaConvert
|
7156
|
+
# will round up the segment lengths to match the next GOP boundary. To
|
7157
|
+
# have MediaConvert automatically determine a segment duration that is
|
7158
|
+
# a multiple of both the audio packets and the frame rates: Choose
|
7159
|
+
# Match. When you do, also specify a target segment duration under
|
7160
|
+
# Segment length. This is useful for some ad-insertion or segment
|
7161
|
+
# replacement workflows. Note that Match has the following
|
7162
|
+
# requirements: - Output containers: Include at least one video output
|
7163
|
+
# and at least one audio output. Audio-only outputs are not supported.
|
7164
|
+
# - Output frame rate: Follow source is not supported. - Multiple
|
7165
|
+
# output frame rates: When you specify multiple outputs, we recommend
|
7166
|
+
# they share a similar frame rate (as in X/3, X/2, X, or 2X). For
|
7167
|
+
# example: 5, 15, 30 and 60. Or: 25 and 50. (Outputs must share an
|
7168
|
+
# integer multiple.) - Output audio codec: Specify Advanced Audio
|
7169
|
+
# Coding (AAC). - Output sample rate: Choose 48kHz.
|
7032
7170
|
# @return [String]
|
7033
7171
|
#
|
7034
7172
|
# @!attribute [rw] segments_per_subdirectory
|
@@ -9261,6 +9399,13 @@ module Aws::MediaConvert
|
|
9261
9399
|
# array. Default is the range 482-492.
|
9262
9400
|
# @return [Array<Integer>]
|
9263
9401
|
#
|
9402
|
+
# @!attribute [rw] audio_pts_offset_delta
|
9403
|
+
# Manually specify the difference in PTS offset that will be applied
|
9404
|
+
# to the audio track, in seconds or milliseconds, when you set PTS
|
9405
|
+
# offset to Seconds or Milliseconds. Enter an integer from -10000 to
|
9406
|
+
# 10000. Leave blank to keep the default value 0.
|
9407
|
+
# @return [Integer]
|
9408
|
+
#
|
9264
9409
|
# @!attribute [rw] bitrate
|
9265
9410
|
# Specify the output bitrate of the transport stream in bits per
|
9266
9411
|
# second. Setting to 0 lets the muxer automatically determine the
|
@@ -9441,7 +9586,8 @@ module Aws::MediaConvert
|
|
9441
9586
|
# initial PTS will be at least two seconds and vary depending on your
|
9442
9587
|
# output's bitrate, HRD buffer size and HRD buffer initial fill
|
9443
9588
|
# percentage. To manually specify an initial PTS offset: Choose
|
9444
|
-
# Seconds. Then specify the number of seconds
|
9589
|
+
# Seconds or Milliseconds. Then specify the number of seconds or
|
9590
|
+
# milliseconds with PTS offset.
|
9445
9591
|
# @return [String]
|
9446
9592
|
#
|
9447
9593
|
# @!attribute [rw] rate_mode
|
@@ -9530,6 +9676,7 @@ module Aws::MediaConvert
|
|
9530
9676
|
:audio_duration,
|
9531
9677
|
:audio_frames_per_pes,
|
9532
9678
|
:audio_pids,
|
9679
|
+
:audio_pts_offset_delta,
|
9533
9680
|
:bitrate,
|
9534
9681
|
:buffer_model,
|
9535
9682
|
:data_pts_control,
|
@@ -9603,6 +9750,13 @@ module Aws::MediaConvert
|
|
9603
9750
|
# in ranges and/or by comma separation.
|
9604
9751
|
# @return [Array<Integer>]
|
9605
9752
|
#
|
9753
|
+
# @!attribute [rw] audio_pts_offset_delta
|
9754
|
+
# Manually specify the difference in PTS offset that will be applied
|
9755
|
+
# to the audio track, in seconds or milliseconds, when you set PTS
|
9756
|
+
# offset to Seconds or Milliseconds. Enter an integer from -10000 to
|
9757
|
+
# 10000. Leave blank to keep the default value 0.
|
9758
|
+
# @return [Integer]
|
9759
|
+
#
|
9606
9760
|
# @!attribute [rw] data_pts_control
|
9607
9761
|
# If you select ALIGN\_TO\_VIDEO, MediaConvert writes captions and
|
9608
9762
|
# data packets with Presentation Timestamp (PTS) values greater than
|
@@ -9673,7 +9827,8 @@ module Aws::MediaConvert
|
|
9673
9827
|
# initial PTS will be at least two seconds and vary depending on your
|
9674
9828
|
# output's bitrate, HRD buffer size and HRD buffer initial fill
|
9675
9829
|
# percentage. To manually specify an initial PTS offset: Choose
|
9676
|
-
# Seconds. Then specify the number of seconds
|
9830
|
+
# Seconds or Milliseconds. Then specify the number of seconds or
|
9831
|
+
# milliseconds with PTS offset.
|
9677
9832
|
# @return [String]
|
9678
9833
|
#
|
9679
9834
|
# @!attribute [rw] scte_35_pid
|
@@ -9720,6 +9875,7 @@ module Aws::MediaConvert
|
|
9720
9875
|
:audio_duration,
|
9721
9876
|
:audio_frames_per_pes,
|
9722
9877
|
:audio_pids,
|
9878
|
+
:audio_pts_offset_delta,
|
9723
9879
|
:data_pts_control,
|
9724
9880
|
:max_pcr_interval,
|
9725
9881
|
:nielsen_id_3,
|
@@ -9742,6 +9898,35 @@ module Aws::MediaConvert
|
|
9742
9898
|
include Aws::Structure
|
9743
9899
|
end
|
9744
9900
|
|
9901
|
+
# Metadata about the file.
|
9902
|
+
#
|
9903
|
+
# @!attribute [rw] etag
|
9904
|
+
# The ETag of the file.
|
9905
|
+
# @return [String]
|
9906
|
+
#
|
9907
|
+
# @!attribute [rw] file_size
|
9908
|
+
# The size of the file in bytes.
|
9909
|
+
# @return [Integer]
|
9910
|
+
#
|
9911
|
+
# @!attribute [rw] last_modified
|
9912
|
+
# The last modification time of the file.
|
9913
|
+
# @return [Time]
|
9914
|
+
#
|
9915
|
+
# @!attribute [rw] mime_type
|
9916
|
+
# The MIME type of the file.
|
9917
|
+
# @return [String]
|
9918
|
+
#
|
9919
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Metadata AWS API Documentation
|
9920
|
+
#
|
9921
|
+
class Metadata < Struct.new(
|
9922
|
+
:etag,
|
9923
|
+
:file_size,
|
9924
|
+
:last_modified,
|
9925
|
+
:mime_type)
|
9926
|
+
SENSITIVE = []
|
9927
|
+
include Aws::Structure
|
9928
|
+
end
|
9929
|
+
|
9745
9930
|
# Use Min bottom rendition size to specify a minimum size for the lowest
|
9746
9931
|
# resolution in your ABR stack. * The lowest resolution in your ABR
|
9747
9932
|
# stack will be equal to or greater than the value that you enter. For
|
@@ -11497,6 +11682,76 @@ module Aws::MediaConvert
|
|
11497
11682
|
include Aws::Structure
|
11498
11683
|
end
|
11499
11684
|
|
11685
|
+
# The input file that needs to be analyzed.
|
11686
|
+
#
|
11687
|
+
# @!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.
|
11690
|
+
# @return [String]
|
11691
|
+
#
|
11692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ProbeInputFile AWS API Documentation
|
11693
|
+
#
|
11694
|
+
class ProbeInputFile < Struct.new(
|
11695
|
+
:file_url)
|
11696
|
+
SENSITIVE = []
|
11697
|
+
include Aws::Structure
|
11698
|
+
end
|
11699
|
+
|
11700
|
+
# The request to probe one or more media files and retrieve metadata
|
11701
|
+
# about them.
|
11702
|
+
#
|
11703
|
+
# @!attribute [rw] input_files
|
11704
|
+
# The list of input media files to be probed.
|
11705
|
+
# @return [Array<Types::ProbeInputFile>]
|
11706
|
+
#
|
11707
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ProbeRequest AWS API Documentation
|
11708
|
+
#
|
11709
|
+
class ProbeRequest < Struct.new(
|
11710
|
+
:input_files)
|
11711
|
+
SENSITIVE = []
|
11712
|
+
include Aws::Structure
|
11713
|
+
end
|
11714
|
+
|
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).
|
11718
|
+
#
|
11719
|
+
# @!attribute [rw] probe_results
|
11720
|
+
# List of probe results for the input media file(s).
|
11721
|
+
# @return [Array<Types::ProbeResult>]
|
11722
|
+
#
|
11723
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ProbeResponse AWS API Documentation
|
11724
|
+
#
|
11725
|
+
class ProbeResponse < Struct.new(
|
11726
|
+
:probe_results)
|
11727
|
+
SENSITIVE = []
|
11728
|
+
include Aws::Structure
|
11729
|
+
end
|
11730
|
+
|
11731
|
+
# The metadata and analysis results for a media file.
|
11732
|
+
#
|
11733
|
+
# @!attribute [rw] container
|
11734
|
+
# Information about the container format of the media file.
|
11735
|
+
# @return [Types::Container]
|
11736
|
+
#
|
11737
|
+
# @!attribute [rw] metadata
|
11738
|
+
# Metadata about the file.
|
11739
|
+
# @return [Types::Metadata]
|
11740
|
+
#
|
11741
|
+
# @!attribute [rw] track_mappings
|
11742
|
+
# List of Track mapping objects.
|
11743
|
+
# @return [Array<Types::TrackMapping>]
|
11744
|
+
#
|
11745
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ProbeResult AWS API Documentation
|
11746
|
+
#
|
11747
|
+
class ProbeResult < Struct.new(
|
11748
|
+
:container,
|
11749
|
+
:metadata,
|
11750
|
+
:track_mappings)
|
11751
|
+
SENSITIVE = []
|
11752
|
+
include Aws::Structure
|
11753
|
+
end
|
11754
|
+
|
11500
11755
|
# Required when you set Codec to the value PRORES.
|
11501
11756
|
#
|
11502
11757
|
# @!attribute [rw] chroma_sampling
|
@@ -12282,8 +12537,8 @@ module Aws::MediaConvert
|
|
12282
12537
|
#
|
12283
12538
|
# @!attribute [rw] system_ids
|
12284
12539
|
# Relates to SPEKE implementation. DRM system identifiers. DASH output
|
12285
|
-
# groups support a max of two system ids.
|
12286
|
-
# one system id. See
|
12540
|
+
# groups support a max of two system ids. HLS output groups support a
|
12541
|
+
# max of 3 system ids. Other group types support one system id. See
|
12287
12542
|
# https://dashif.org/identifiers/content\_protection/ for more
|
12288
12543
|
# details.
|
12289
12544
|
# @return [Array<String>]
|
@@ -12334,10 +12589,9 @@ module Aws::MediaConvert
|
|
12334
12589
|
# @return [Types::EncryptionContractConfiguration]
|
12335
12590
|
#
|
12336
12591
|
# @!attribute [rw] hls_signaled_system_ids
|
12337
|
-
# Specify
|
12338
|
-
# that MediaConvert creates as part of this CMAF package.
|
12339
|
-
#
|
12340
|
-
# information, see
|
12592
|
+
# Specify up to 3 DRM system IDs that you want signaled in the HLS
|
12593
|
+
# manifest that MediaConvert creates as part of this CMAF package. For
|
12594
|
+
# more information, see
|
12341
12595
|
# https://dashif.org/identifiers/content\_protection/.
|
12342
12596
|
# @return [Array<String>]
|
12343
12597
|
#
|
@@ -12637,6 +12891,74 @@ module Aws::MediaConvert
|
|
12637
12891
|
include Aws::Structure
|
12638
12892
|
end
|
12639
12893
|
|
12894
|
+
# The track information such as codec, duration, etc.
|
12895
|
+
#
|
12896
|
+
# @!attribute [rw] audio_properties
|
12897
|
+
# Properties specific to audio tracks.
|
12898
|
+
# @return [Types::AudioProperties]
|
12899
|
+
#
|
12900
|
+
# @!attribute [rw] codec
|
12901
|
+
# The codec used for the track.
|
12902
|
+
# @return [String]
|
12903
|
+
#
|
12904
|
+
# @!attribute [rw] data_properties
|
12905
|
+
# Properties specific to data tracks.
|
12906
|
+
# @return [Types::DataProperties]
|
12907
|
+
#
|
12908
|
+
# @!attribute [rw] duration
|
12909
|
+
# The duration of the track in seconds.
|
12910
|
+
# @return [Float]
|
12911
|
+
#
|
12912
|
+
# @!attribute [rw] index
|
12913
|
+
# The index of the track.
|
12914
|
+
# @return [Integer]
|
12915
|
+
#
|
12916
|
+
# @!attribute [rw] track_type
|
12917
|
+
# The type of the track (video, audio, or data).
|
12918
|
+
# @return [String]
|
12919
|
+
#
|
12920
|
+
# @!attribute [rw] video_properties
|
12921
|
+
# Properties specific to video tracks.
|
12922
|
+
# @return [Types::VideoProperties]
|
12923
|
+
#
|
12924
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Track AWS API Documentation
|
12925
|
+
#
|
12926
|
+
class Track < Struct.new(
|
12927
|
+
:audio_properties,
|
12928
|
+
:codec,
|
12929
|
+
:data_properties,
|
12930
|
+
:duration,
|
12931
|
+
:index,
|
12932
|
+
:track_type,
|
12933
|
+
:video_properties)
|
12934
|
+
SENSITIVE = []
|
12935
|
+
include Aws::Structure
|
12936
|
+
end
|
12937
|
+
|
12938
|
+
# Track mapping information.
|
12939
|
+
#
|
12940
|
+
# @!attribute [rw] audio_track_indexes
|
12941
|
+
# The indexes of the audio tracks.
|
12942
|
+
# @return [Array<Integer>]
|
12943
|
+
#
|
12944
|
+
# @!attribute [rw] data_track_indexes
|
12945
|
+
# The indexes of the data tracks.
|
12946
|
+
# @return [Array<Integer>]
|
12947
|
+
#
|
12948
|
+
# @!attribute [rw] video_track_indexes
|
12949
|
+
# The indexes of the video tracks.
|
12950
|
+
# @return [Array<Integer>]
|
12951
|
+
#
|
12952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/TrackMapping AWS API Documentation
|
12953
|
+
#
|
12954
|
+
class TrackMapping < Struct.new(
|
12955
|
+
:audio_track_indexes,
|
12956
|
+
:data_track_indexes,
|
12957
|
+
:video_track_indexes)
|
12958
|
+
SENSITIVE = []
|
12959
|
+
include Aws::Structure
|
12960
|
+
end
|
12961
|
+
|
12640
12962
|
# Settings specific to caption sources that are specified by track
|
12641
12963
|
# number. Currently, this is only IMSC captions in an IMF package. If
|
12642
12964
|
# your caption source is IMSC 1.1 in a separate xml file, use
|
@@ -13748,6 +14070,55 @@ module Aws::MediaConvert
|
|
13748
14070
|
include Aws::Structure
|
13749
14071
|
end
|
13750
14072
|
|
14073
|
+
# Properties specific to video tracks.
|
14074
|
+
#
|
14075
|
+
# @!attribute [rw] bit_depth
|
14076
|
+
# The bit depth of the video track.
|
14077
|
+
# @return [Integer]
|
14078
|
+
#
|
14079
|
+
# @!attribute [rw] bit_rate
|
14080
|
+
# The bit rate of the video track in bits per second.
|
14081
|
+
# @return [Integer]
|
14082
|
+
#
|
14083
|
+
# @!attribute [rw] color_primaries
|
14084
|
+
# the color primaries.
|
14085
|
+
# @return [String]
|
14086
|
+
#
|
14087
|
+
# @!attribute [rw] frame_rate
|
14088
|
+
# the calculated frame rate of the asset.
|
14089
|
+
# @return [Types::FrameRate]
|
14090
|
+
#
|
14091
|
+
# @!attribute [rw] height
|
14092
|
+
# The height of the video track in pixels.
|
14093
|
+
# @return [Integer]
|
14094
|
+
#
|
14095
|
+
# @!attribute [rw] matrix_coefficients
|
14096
|
+
# the matrix coefficients.
|
14097
|
+
# @return [String]
|
14098
|
+
#
|
14099
|
+
# @!attribute [rw] transfer_characteristics
|
14100
|
+
# the transfer characteristics.
|
14101
|
+
# @return [String]
|
14102
|
+
#
|
14103
|
+
# @!attribute [rw] width
|
14104
|
+
# The width of the video track in pixels.
|
14105
|
+
# @return [Integer]
|
14106
|
+
#
|
14107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/VideoProperties AWS API Documentation
|
14108
|
+
#
|
14109
|
+
class VideoProperties < Struct.new(
|
14110
|
+
:bit_depth,
|
14111
|
+
:bit_rate,
|
14112
|
+
:color_primaries,
|
14113
|
+
:frame_rate,
|
14114
|
+
:height,
|
14115
|
+
:matrix_coefficients,
|
14116
|
+
:transfer_characteristics,
|
14117
|
+
:width)
|
14118
|
+
SENSITIVE = []
|
14119
|
+
include Aws::Structure
|
14120
|
+
end
|
14121
|
+
|
13751
14122
|
# Input video selectors contain the video settings for the input. Each
|
13752
14123
|
# of your inputs can have up to one video selector.
|
13753
14124
|
#
|
data/lib/aws-sdk-mediaconvert.rb
CHANGED