aws-sdk-mediaconvert 1.156.0 → 1.157.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 +75 -7
- data/lib/aws-sdk-mediaconvert/client_api.rb +14 -2
- data/lib/aws-sdk-mediaconvert/types.rb +202 -12
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- data/sig/client.rbs +41 -3
- data/sig/types.rbs +9 -1
- metadata +1 -1
@@ -973,8 +973,8 @@ module Aws::MediaConvert
|
|
973
973
|
# Optional. Specify the QVBR quality level to use for all renditions
|
974
974
|
# in your automated ABR stack. To have MediaConvert automatically
|
975
975
|
# determine the quality level: Leave blank. To manually specify a
|
976
|
-
# quality level: Enter
|
977
|
-
#
|
976
|
+
# quality level: Enter a value from 1 to 10. MediaConvert will use a
|
977
|
+
# quality level up to the value that you specify, depending on your
|
978
978
|
# source. For more information about QVBR quality levels, see:
|
979
979
|
# https://docs.aws.amazon.com/mediaconvert/latest/ug/qvbr-guidelines.html
|
980
980
|
# @return [Float]
|
@@ -1168,6 +1168,29 @@ module Aws::MediaConvert
|
|
1168
1168
|
# better video quality.
|
1169
1169
|
# @return [Integer]
|
1170
1170
|
#
|
1171
|
+
# @!attribute [rw] per_frame_metrics
|
1172
|
+
# Optionally choose one or more per frame metric reports to generate
|
1173
|
+
# along with your output. You can use these metrics to analyze your
|
1174
|
+
# video output according to one or more commonly used image quality
|
1175
|
+
# metrics. You can specify per frame metrics for output groups or for
|
1176
|
+
# individual outputs. When you do, MediaConvert writes a CSV
|
1177
|
+
# (Comma-Separated Values) file to your S3 output destination, named
|
1178
|
+
# after the video, video codec, and metric type. For example:
|
1179
|
+
# video\_h264\_PSNR.csv Jobs that generate per frame metrics will take
|
1180
|
+
# longer to complete, depending on the resolution and complexity of
|
1181
|
+
# your output. For example, some 4K jobs might take up to twice as
|
1182
|
+
# long to complete. Note that when analyzing the video quality of your
|
1183
|
+
# output, or when comparing the video quality of multiple different
|
1184
|
+
# outputs, we generally also recommend a detailed visual review in a
|
1185
|
+
# controlled environment. You can choose from the following per frame
|
1186
|
+
# metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural
|
1187
|
+
# Similarity Index Measure * MS\_SSIM: Multi-Scale Similarity Index
|
1188
|
+
# Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
|
1189
|
+
# System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
|
1190
|
+
# Quality-Defined Variable Bitrate. This option is only available when
|
1191
|
+
# your output uses the QVBR rate control mode.
|
1192
|
+
# @return [Array<String>]
|
1193
|
+
#
|
1171
1194
|
# @!attribute [rw] qvbr_settings
|
1172
1195
|
# Settings for quality-defined variable bitrate encoding with the
|
1173
1196
|
# H.265 codec. Use these settings only when you set QVBR for Rate
|
@@ -1221,6 +1244,7 @@ module Aws::MediaConvert
|
|
1221
1244
|
:gop_size,
|
1222
1245
|
:max_bitrate,
|
1223
1246
|
:number_b_frames_between_reference_frames,
|
1247
|
+
:per_frame_metrics,
|
1224
1248
|
:qvbr_settings,
|
1225
1249
|
:rate_control_mode,
|
1226
1250
|
:slices,
|
@@ -1334,6 +1358,29 @@ module Aws::MediaConvert
|
|
1334
1358
|
# field first, depending on which of the Follow options you choose.
|
1335
1359
|
# @return [String]
|
1336
1360
|
#
|
1361
|
+
# @!attribute [rw] per_frame_metrics
|
1362
|
+
# Optionally choose one or more per frame metric reports to generate
|
1363
|
+
# along with your output. You can use these metrics to analyze your
|
1364
|
+
# video output according to one or more commonly used image quality
|
1365
|
+
# metrics. You can specify per frame metrics for output groups or for
|
1366
|
+
# individual outputs. When you do, MediaConvert writes a CSV
|
1367
|
+
# (Comma-Separated Values) file to your S3 output destination, named
|
1368
|
+
# after the video, video codec, and metric type. For example:
|
1369
|
+
# video\_h264\_PSNR.csv Jobs that generate per frame metrics will take
|
1370
|
+
# longer to complete, depending on the resolution and complexity of
|
1371
|
+
# your output. For example, some 4K jobs might take up to twice as
|
1372
|
+
# long to complete. Note that when analyzing the video quality of your
|
1373
|
+
# output, or when comparing the video quality of multiple different
|
1374
|
+
# outputs, we generally also recommend a detailed visual review in a
|
1375
|
+
# controlled environment. You can choose from the following per frame
|
1376
|
+
# metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural
|
1377
|
+
# Similarity Index Measure * MS\_SSIM: Multi-Scale Similarity Index
|
1378
|
+
# Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
|
1379
|
+
# System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
|
1380
|
+
# Quality-Defined Variable Bitrate. This option is only available when
|
1381
|
+
# your output uses the QVBR rate control mode.
|
1382
|
+
# @return [Array<String>]
|
1383
|
+
#
|
1337
1384
|
# @!attribute [rw] scan_type_conversion_mode
|
1338
1385
|
# Use this setting for interlaced outputs, when your output frame rate
|
1339
1386
|
# is half of your input frame rate. In this situation, choose
|
@@ -1380,6 +1427,7 @@ module Aws::MediaConvert
|
|
1380
1427
|
:framerate_denominator,
|
1381
1428
|
:framerate_numerator,
|
1382
1429
|
:interlace_mode,
|
1430
|
+
:per_frame_metrics,
|
1383
1431
|
:scan_type_conversion_mode,
|
1384
1432
|
:slow_pal,
|
1385
1433
|
:telecine)
|
@@ -3055,12 +3103,10 @@ module Aws::MediaConvert
|
|
3055
3103
|
# @return [Types::AccelerationSettings]
|
3056
3104
|
#
|
3057
3105
|
# @!attribute [rw] billing_tags_source
|
3058
|
-
#
|
3059
|
-
# will use to
|
3060
|
-
# billing report that you set up.
|
3061
|
-
#
|
3062
|
-
# If you don't choose a valid value for this field, your job outputs
|
3063
|
-
# will appear on the billing report unsorted.
|
3106
|
+
# Optionally choose a Billing tags source that AWS Billing and Cost
|
3107
|
+
# Management will use to display tags for individual output costs on
|
3108
|
+
# any billing report that you set up. Leave blank to use the default
|
3109
|
+
# value, Job.
|
3064
3110
|
# @return [String]
|
3065
3111
|
#
|
3066
3112
|
# @!attribute [rw] client_request_token
|
@@ -4481,10 +4527,10 @@ module Aws::MediaConvert
|
|
4481
4527
|
# your source when you submit your job, but want to select multiple
|
4482
4528
|
# audio tracks. When you include an audio track in your output and
|
4483
4529
|
# specify this Dynamic audio selector as the Audio source, MediaConvert
|
4484
|
-
# creates an
|
4485
|
-
# Note that when you include a Dynamic audio selector
|
4486
|
-
# inputs, each input must have the same number of audio
|
4487
|
-
# channels.
|
4530
|
+
# creates an audio track within that output for each dynamically
|
4531
|
+
# selected track. Note that when you include a Dynamic audio selector
|
4532
|
+
# for two or more inputs, each input must have the same number of audio
|
4533
|
+
# tracks and audio channels.
|
4488
4534
|
#
|
4489
4535
|
# @!attribute [rw] audio_duration_correction
|
4490
4536
|
# Apply audio timing corrections to help synchronize audio and video
|
@@ -5962,6 +6008,29 @@ module Aws::MediaConvert
|
|
5962
6008
|
# ratio 40:33. In this example, the value for parNumerator is 40.
|
5963
6009
|
# @return [Integer]
|
5964
6010
|
#
|
6011
|
+
# @!attribute [rw] per_frame_metrics
|
6012
|
+
# Optionally choose one or more per frame metric reports to generate
|
6013
|
+
# along with your output. You can use these metrics to analyze your
|
6014
|
+
# video output according to one or more commonly used image quality
|
6015
|
+
# metrics. You can specify per frame metrics for output groups or for
|
6016
|
+
# individual outputs. When you do, MediaConvert writes a CSV
|
6017
|
+
# (Comma-Separated Values) file to your S3 output destination, named
|
6018
|
+
# after the video, video codec, and metric type. For example:
|
6019
|
+
# video\_h264\_PSNR.csv Jobs that generate per frame metrics will take
|
6020
|
+
# longer to complete, depending on the resolution and complexity of
|
6021
|
+
# your output. For example, some 4K jobs might take up to twice as
|
6022
|
+
# long to complete. Note that when analyzing the video quality of your
|
6023
|
+
# output, or when comparing the video quality of multiple different
|
6024
|
+
# outputs, we generally also recommend a detailed visual review in a
|
6025
|
+
# controlled environment. You can choose from the following per frame
|
6026
|
+
# metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural
|
6027
|
+
# Similarity Index Measure * MS\_SSIM: Multi-Scale Similarity Index
|
6028
|
+
# Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
|
6029
|
+
# System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
|
6030
|
+
# Quality-Defined Variable Bitrate. This option is only available when
|
6031
|
+
# your output uses the QVBR rate control mode.
|
6032
|
+
# @return [Array<String>]
|
6033
|
+
#
|
5965
6034
|
# @!attribute [rw] quality_tuning_level
|
5966
6035
|
# The Quality tuning level you choose represents a trade-off between
|
5967
6036
|
# the encoding speed of your job and the output video quality. For the
|
@@ -6179,6 +6248,7 @@ module Aws::MediaConvert
|
|
6179
6248
|
:par_control,
|
6180
6249
|
:par_denominator,
|
6181
6250
|
:par_numerator,
|
6251
|
+
:per_frame_metrics,
|
6182
6252
|
:quality_tuning_level,
|
6183
6253
|
:qvbr_settings,
|
6184
6254
|
:rate_control_mode,
|
@@ -6535,6 +6605,29 @@ module Aws::MediaConvert
|
|
6535
6605
|
# ratio 40:33. In this example, the value for parNumerator is 40.
|
6536
6606
|
# @return [Integer]
|
6537
6607
|
#
|
6608
|
+
# @!attribute [rw] per_frame_metrics
|
6609
|
+
# Optionally choose one or more per frame metric reports to generate
|
6610
|
+
# along with your output. You can use these metrics to analyze your
|
6611
|
+
# video output according to one or more commonly used image quality
|
6612
|
+
# metrics. You can specify per frame metrics for output groups or for
|
6613
|
+
# individual outputs. When you do, MediaConvert writes a CSV
|
6614
|
+
# (Comma-Separated Values) file to your S3 output destination, named
|
6615
|
+
# after the video, video codec, and metric type. For example:
|
6616
|
+
# video\_h264\_PSNR.csv Jobs that generate per frame metrics will take
|
6617
|
+
# longer to complete, depending on the resolution and complexity of
|
6618
|
+
# your output. For example, some 4K jobs might take up to twice as
|
6619
|
+
# long to complete. Note that when analyzing the video quality of your
|
6620
|
+
# output, or when comparing the video quality of multiple different
|
6621
|
+
# outputs, we generally also recommend a detailed visual review in a
|
6622
|
+
# controlled environment. You can choose from the following per frame
|
6623
|
+
# metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural
|
6624
|
+
# Similarity Index Measure * MS\_SSIM: Multi-Scale Similarity Index
|
6625
|
+
# Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
|
6626
|
+
# System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
|
6627
|
+
# Quality-Defined Variable Bitrate. This option is only available when
|
6628
|
+
# your output uses the QVBR rate control mode.
|
6629
|
+
# @return [Array<String>]
|
6630
|
+
#
|
6538
6631
|
# @!attribute [rw] quality_tuning_level
|
6539
6632
|
# Optional. Use Quality tuning level to choose how you want to trade
|
6540
6633
|
# off encoding speed for output video quality. The default behavior is
|
@@ -6716,6 +6809,7 @@ module Aws::MediaConvert
|
|
6716
6809
|
:par_control,
|
6717
6810
|
:par_denominator,
|
6718
6811
|
:par_numerator,
|
6812
|
+
:per_frame_metrics,
|
6719
6813
|
:quality_tuning_level,
|
6720
6814
|
:qvbr_settings,
|
6721
6815
|
:rate_control_mode,
|
@@ -10631,6 +10725,29 @@ module Aws::MediaConvert
|
|
10631
10725
|
# ratio 40:33. In this example, the value for parNumerator is 40.
|
10632
10726
|
# @return [Integer]
|
10633
10727
|
#
|
10728
|
+
# @!attribute [rw] per_frame_metrics
|
10729
|
+
# Optionally choose one or more per frame metric reports to generate
|
10730
|
+
# along with your output. You can use these metrics to analyze your
|
10731
|
+
# video output according to one or more commonly used image quality
|
10732
|
+
# metrics. You can specify per frame metrics for output groups or for
|
10733
|
+
# individual outputs. When you do, MediaConvert writes a CSV
|
10734
|
+
# (Comma-Separated Values) file to your S3 output destination, named
|
10735
|
+
# after the video, video codec, and metric type. For example:
|
10736
|
+
# video\_h264\_PSNR.csv Jobs that generate per frame metrics will take
|
10737
|
+
# longer to complete, depending on the resolution and complexity of
|
10738
|
+
# your output. For example, some 4K jobs might take up to twice as
|
10739
|
+
# long to complete. Note that when analyzing the video quality of your
|
10740
|
+
# output, or when comparing the video quality of multiple different
|
10741
|
+
# outputs, we generally also recommend a detailed visual review in a
|
10742
|
+
# controlled environment. You can choose from the following per frame
|
10743
|
+
# metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural
|
10744
|
+
# Similarity Index Measure * MS\_SSIM: Multi-Scale Similarity Index
|
10745
|
+
# Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
|
10746
|
+
# System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
|
10747
|
+
# Quality-Defined Variable Bitrate. This option is only available when
|
10748
|
+
# your output uses the QVBR rate control mode.
|
10749
|
+
# @return [Array<String>]
|
10750
|
+
#
|
10634
10751
|
# @!attribute [rw] quality_tuning_level
|
10635
10752
|
# Optional. Use Quality tuning level to choose how you want to trade
|
10636
10753
|
# off encoding speed for output video quality. The default behavior is
|
@@ -10770,6 +10887,7 @@ module Aws::MediaConvert
|
|
10770
10887
|
:par_control,
|
10771
10888
|
:par_denominator,
|
10772
10889
|
:par_numerator,
|
10890
|
+
:per_frame_metrics,
|
10773
10891
|
:quality_tuning_level,
|
10774
10892
|
:rate_control_mode,
|
10775
10893
|
:scan_type_conversion_mode,
|
@@ -11538,6 +11656,29 @@ module Aws::MediaConvert
|
|
11538
11656
|
# https://docs.aws.amazon.com/mediaconvert/latest/ug/outputs-file-ABR.html.
|
11539
11657
|
# @return [Types::MsSmoothGroupSettings]
|
11540
11658
|
#
|
11659
|
+
# @!attribute [rw] per_frame_metrics
|
11660
|
+
# Optionally choose one or more per frame metric reports to generate
|
11661
|
+
# along with your output. You can use these metrics to analyze your
|
11662
|
+
# video output according to one or more commonly used image quality
|
11663
|
+
# metrics. You can specify per frame metrics for output groups or for
|
11664
|
+
# individual outputs. When you do, MediaConvert writes a CSV
|
11665
|
+
# (Comma-Separated Values) file to your S3 output destination, named
|
11666
|
+
# after the video, video codec, and metric type. For example:
|
11667
|
+
# video\_h264\_PSNR.csv Jobs that generate per frame metrics will take
|
11668
|
+
# longer to complete, depending on the resolution and complexity of
|
11669
|
+
# your output. For example, some 4K jobs might take up to twice as
|
11670
|
+
# long to complete. Note that when analyzing the video quality of your
|
11671
|
+
# output, or when comparing the video quality of multiple different
|
11672
|
+
# outputs, we generally also recommend a detailed visual review in a
|
11673
|
+
# controlled environment. You can choose from the following per frame
|
11674
|
+
# metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural
|
11675
|
+
# Similarity Index Measure * MS\_SSIM: Multi-Scale Similarity Index
|
11676
|
+
# Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
|
11677
|
+
# System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
|
11678
|
+
# Quality-Defined Variable Bitrate. This option is only available when
|
11679
|
+
# your output uses the QVBR rate control mode.
|
11680
|
+
# @return [Array<String>]
|
11681
|
+
#
|
11541
11682
|
# @!attribute [rw] type
|
11542
11683
|
# Type of output group (File group, Apple HLS, DASH ISO, Microsoft
|
11543
11684
|
# Smooth Streaming, CMAF)
|
@@ -11551,6 +11692,7 @@ module Aws::MediaConvert
|
|
11551
11692
|
:file_group_settings,
|
11552
11693
|
:hls_group_settings,
|
11553
11694
|
:ms_smooth_group_settings,
|
11695
|
+
:per_frame_metrics,
|
11554
11696
|
:type)
|
11555
11697
|
SENSITIVE = []
|
11556
11698
|
include Aws::Structure
|
@@ -11887,6 +12029,29 @@ module Aws::MediaConvert
|
|
11887
12029
|
# ratio 40:33. In this example, the value for parNumerator is 40.
|
11888
12030
|
# @return [Integer]
|
11889
12031
|
#
|
12032
|
+
# @!attribute [rw] per_frame_metrics
|
12033
|
+
# Optionally choose one or more per frame metric reports to generate
|
12034
|
+
# along with your output. You can use these metrics to analyze your
|
12035
|
+
# video output according to one or more commonly used image quality
|
12036
|
+
# metrics. You can specify per frame metrics for output groups or for
|
12037
|
+
# individual outputs. When you do, MediaConvert writes a CSV
|
12038
|
+
# (Comma-Separated Values) file to your S3 output destination, named
|
12039
|
+
# after the video, video codec, and metric type. For example:
|
12040
|
+
# video\_h264\_PSNR.csv Jobs that generate per frame metrics will take
|
12041
|
+
# longer to complete, depending on the resolution and complexity of
|
12042
|
+
# your output. For example, some 4K jobs might take up to twice as
|
12043
|
+
# long to complete. Note that when analyzing the video quality of your
|
12044
|
+
# output, or when comparing the video quality of multiple different
|
12045
|
+
# outputs, we generally also recommend a detailed visual review in a
|
12046
|
+
# controlled environment. You can choose from the following per frame
|
12047
|
+
# metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural
|
12048
|
+
# Similarity Index Measure * MS\_SSIM: Multi-Scale Similarity Index
|
12049
|
+
# Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
|
12050
|
+
# System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
|
12051
|
+
# Quality-Defined Variable Bitrate. This option is only available when
|
12052
|
+
# your output uses the QVBR rate control mode.
|
12053
|
+
# @return [Array<String>]
|
12054
|
+
#
|
11890
12055
|
# @!attribute [rw] scan_type_conversion_mode
|
11891
12056
|
# Use this setting for interlaced outputs, when your output frame rate
|
11892
12057
|
# is half of your input frame rate. In this situation, choose
|
@@ -11936,6 +12101,7 @@ module Aws::MediaConvert
|
|
11936
12101
|
:par_control,
|
11937
12102
|
:par_denominator,
|
11938
12103
|
:par_numerator,
|
12104
|
+
:per_frame_metrics,
|
11939
12105
|
:scan_type_conversion_mode,
|
11940
12106
|
:slow_pal,
|
11941
12107
|
:telecine)
|
@@ -15024,6 +15190,29 @@ module Aws::MediaConvert
|
|
15024
15190
|
# Framerate. In this example, specify 23.976.
|
15025
15191
|
# @return [Integer]
|
15026
15192
|
#
|
15193
|
+
# @!attribute [rw] per_frame_metrics
|
15194
|
+
# Optionally choose one or more per frame metric reports to generate
|
15195
|
+
# along with your output. You can use these metrics to analyze your
|
15196
|
+
# video output according to one or more commonly used image quality
|
15197
|
+
# metrics. You can specify per frame metrics for output groups or for
|
15198
|
+
# individual outputs. When you do, MediaConvert writes a CSV
|
15199
|
+
# (Comma-Separated Values) file to your S3 output destination, named
|
15200
|
+
# after the video, video codec, and metric type. For example:
|
15201
|
+
# video\_h264\_PSNR.csv Jobs that generate per frame metrics will take
|
15202
|
+
# longer to complete, depending on the resolution and complexity of
|
15203
|
+
# your output. For example, some 4K jobs might take up to twice as
|
15204
|
+
# long to complete. Note that when analyzing the video quality of your
|
15205
|
+
# output, or when comparing the video quality of multiple different
|
15206
|
+
# outputs, we generally also recommend a detailed visual review in a
|
15207
|
+
# controlled environment. You can choose from the following per frame
|
15208
|
+
# metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural
|
15209
|
+
# Similarity Index Measure * MS\_SSIM: Multi-Scale Similarity Index
|
15210
|
+
# Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
|
15211
|
+
# System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
|
15212
|
+
# Quality-Defined Variable Bitrate. This option is only available when
|
15213
|
+
# your output uses the QVBR rate control mode.
|
15214
|
+
# @return [Array<String>]
|
15215
|
+
#
|
15027
15216
|
# @!attribute [rw] profile
|
15028
15217
|
# Specify the XAVC profile for this output. For more information, see
|
15029
15218
|
# the Sony documentation at https://www.xavc-info.org/. Note that
|
@@ -15131,6 +15320,7 @@ module Aws::MediaConvert
|
|
15131
15320
|
:framerate_conversion_algorithm,
|
15132
15321
|
:framerate_denominator,
|
15133
15322
|
:framerate_numerator,
|
15323
|
+
:per_frame_metrics,
|
15134
15324
|
:profile,
|
15135
15325
|
:slow_pal,
|
15136
15326
|
:softness,
|
data/lib/aws-sdk-mediaconvert.rb
CHANGED