@aws-sdk/client-mediaconvert 3.921.0 → 3.925.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.
- package/dist-cjs/index.js +56 -6
- package/dist-es/models/models_0.js +6 -9
- package/dist-es/models/models_1.js +13 -5
- package/dist-es/models/models_2.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +38 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/commands/CreateJobCommand.d.ts +30 -6
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +30 -6
- package/dist-types/commands/CreatePresetCommand.d.ts +12 -0
- package/dist-types/commands/GetJobCommand.d.ts +15 -3
- package/dist-types/commands/GetJobTemplateCommand.d.ts +15 -3
- package/dist-types/commands/GetJobsQueryResultsCommand.d.ts +15 -3
- package/dist-types/commands/GetPresetCommand.d.ts +6 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +15 -3
- package/dist-types/commands/ListJobsCommand.d.ts +15 -3
- package/dist-types/commands/ListPresetsCommand.d.ts +6 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +15 -3
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +30 -6
- package/dist-types/commands/UpdatePresetCommand.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +52 -32
- package/dist-types/models/models_1.d.ts +55 -183
- package/dist-types/models/models_2.d.ts +185 -4
- package/dist-types/ts3.4/models/models_0.d.ts +15 -13
- package/dist-types/ts3.4/models/models_1.d.ts +23 -49
- package/dist-types/ts3.4/models/models_2.d.ts +59 -3
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -118,6 +118,11 @@ class MediaConvertServiceException extends smithyClient.ServiceException {
|
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
+
const TimecodeSource = {
|
|
122
|
+
EMBEDDED: "EMBEDDED",
|
|
123
|
+
SPECIFIEDSTART: "SPECIFIEDSTART",
|
|
124
|
+
ZEROBASED: "ZEROBASED",
|
|
125
|
+
};
|
|
121
126
|
const ShareStatus = {
|
|
122
127
|
INITIATED: "INITIATED",
|
|
123
128
|
NOT_SHARED: "NOT_SHARED",
|
|
@@ -1754,6 +1759,11 @@ const se_AudioDescription = (input, context) => {
|
|
|
1754
1759
|
return smithyClient.take(input, {
|
|
1755
1760
|
audioChannelTaggingSettings: [, (_) => se_AudioChannelTaggingSettings(_), `AudioChannelTaggingSettings`],
|
|
1756
1761
|
audioNormalizationSettings: [, (_) => se_AudioNormalizationSettings(_), `AudioNormalizationSettings`],
|
|
1762
|
+
audioPitchCorrectionSettings: [
|
|
1763
|
+
,
|
|
1764
|
+
(_) => se_AudioPitchCorrectionSettings(_),
|
|
1765
|
+
`AudioPitchCorrectionSettings`,
|
|
1766
|
+
],
|
|
1757
1767
|
audioSourceName: [, , `AudioSourceName`],
|
|
1758
1768
|
audioType: [, , `AudioType`],
|
|
1759
1769
|
audioTypeControl: [, , `AudioTypeControl`],
|
|
@@ -1776,6 +1786,11 @@ const se_AudioNormalizationSettings = (input, context) => {
|
|
|
1776
1786
|
truePeakLimiterThreshold: [, smithyClient.serializeFloat, `TruePeakLimiterThreshold`],
|
|
1777
1787
|
});
|
|
1778
1788
|
};
|
|
1789
|
+
const se_AudioPitchCorrectionSettings = (input, context) => {
|
|
1790
|
+
return smithyClient.take(input, {
|
|
1791
|
+
slowPalPitchCorrection: [, , `SlowPalPitchCorrection`],
|
|
1792
|
+
});
|
|
1793
|
+
};
|
|
1779
1794
|
const se_AudioSelector = (input, context) => {
|
|
1780
1795
|
return smithyClient.take(input, {
|
|
1781
1796
|
audioDurationCorrection: [, , `AudioDurationCorrection`],
|
|
@@ -1789,6 +1804,7 @@ const se_AudioSelector = (input, context) => {
|
|
|
1789
1804
|
programSelection: [, , `ProgramSelection`],
|
|
1790
1805
|
remixSettings: [, (_) => se_RemixSettings(_), `RemixSettings`],
|
|
1791
1806
|
selectorType: [, , `SelectorType`],
|
|
1807
|
+
streams: [, smithyClient._json, `Streams`],
|
|
1792
1808
|
tracks: [, smithyClient._json, `Tracks`],
|
|
1793
1809
|
});
|
|
1794
1810
|
};
|
|
@@ -3166,6 +3182,11 @@ const se_PartnerWatermarking = (input, context) => {
|
|
|
3166
3182
|
nexguardFileMarkerSettings: [, (_) => se_NexGuardFileMarkerSettings(_), `NexguardFileMarkerSettings`],
|
|
3167
3183
|
});
|
|
3168
3184
|
};
|
|
3185
|
+
const se_PassthroughSettings = (input, context) => {
|
|
3186
|
+
return smithyClient.take(input, {
|
|
3187
|
+
videoSelectorMode: [, , `VideoSelectorMode`],
|
|
3188
|
+
});
|
|
3189
|
+
};
|
|
3169
3190
|
const se_Policy = (input, context) => {
|
|
3170
3191
|
return smithyClient.take(input, {
|
|
3171
3192
|
httpInputs: [, , `HttpInputs`],
|
|
@@ -3325,6 +3346,7 @@ const se_TimedMetadataInsertion = (input, context) => {
|
|
|
3325
3346
|
};
|
|
3326
3347
|
const se_TrackSourceSettings = (input, context) => {
|
|
3327
3348
|
return smithyClient.take(input, {
|
|
3349
|
+
streamNumber: [, , `StreamNumber`],
|
|
3328
3350
|
trackNumber: [, , `TrackNumber`],
|
|
3329
3351
|
});
|
|
3330
3352
|
};
|
|
@@ -3369,6 +3391,7 @@ const se_VideoCodecSettings = (input, context) => {
|
|
|
3369
3391
|
h264Settings: [, (_) => se_H264Settings(_), `H264Settings`],
|
|
3370
3392
|
h265Settings: [, (_) => se_H265Settings(_), `H265Settings`],
|
|
3371
3393
|
mpeg2Settings: [, (_) => se_Mpeg2Settings(_), `Mpeg2Settings`],
|
|
3394
|
+
passthroughSettings: [, (_) => se_PassthroughSettings(_), `PassthroughSettings`],
|
|
3372
3395
|
proresSettings: [, (_) => se_ProresSettings(_), `ProresSettings`],
|
|
3373
3396
|
uncompressedSettings: [, (_) => se_UncompressedSettings(_), `UncompressedSettings`],
|
|
3374
3397
|
vc3Settings: [, (_) => se_Vc3Settings(_), `Vc3Settings`],
|
|
@@ -3435,6 +3458,7 @@ const se_VideoOverlayInputClipping = (input, context) => {
|
|
|
3435
3458
|
const se_VideoOverlayPosition = (input, context) => {
|
|
3436
3459
|
return smithyClient.take(input, {
|
|
3437
3460
|
height: [, , `Height`],
|
|
3461
|
+
opacity: [, , `Opacity`],
|
|
3438
3462
|
unit: [, , `Unit`],
|
|
3439
3463
|
width: [, , `Width`],
|
|
3440
3464
|
xPosition: [, , `XPosition`],
|
|
@@ -4052,6 +4076,11 @@ const de_AudioDescription = (output, context) => {
|
|
|
4052
4076
|
`audioChannelTaggingSettings`,
|
|
4053
4077
|
],
|
|
4054
4078
|
AudioNormalizationSettings: [, (_) => de_AudioNormalizationSettings(_), `audioNormalizationSettings`],
|
|
4079
|
+
AudioPitchCorrectionSettings: [
|
|
4080
|
+
,
|
|
4081
|
+
(_) => de_AudioPitchCorrectionSettings(_),
|
|
4082
|
+
`audioPitchCorrectionSettings`,
|
|
4083
|
+
],
|
|
4055
4084
|
AudioSourceName: [, smithyClient.expectString, `audioSourceName`],
|
|
4056
4085
|
AudioType: [, smithyClient.expectInt32, `audioType`],
|
|
4057
4086
|
AudioTypeControl: [, smithyClient.expectString, `audioTypeControl`],
|
|
@@ -4074,6 +4103,11 @@ const de_AudioNormalizationSettings = (output, context) => {
|
|
|
4074
4103
|
TruePeakLimiterThreshold: [, smithyClient.limitedParseDouble, `truePeakLimiterThreshold`],
|
|
4075
4104
|
});
|
|
4076
4105
|
};
|
|
4106
|
+
const de_AudioPitchCorrectionSettings = (output, context) => {
|
|
4107
|
+
return smithyClient.take(output, {
|
|
4108
|
+
SlowPalPitchCorrection: [, smithyClient.expectString, `slowPalPitchCorrection`],
|
|
4109
|
+
});
|
|
4110
|
+
};
|
|
4077
4111
|
const de_AudioProperties = (output, context) => {
|
|
4078
4112
|
return smithyClient.take(output, {
|
|
4079
4113
|
BitDepth: [, smithyClient.expectInt32, `bitDepth`],
|
|
@@ -4097,6 +4131,7 @@ const de_AudioSelector = (output, context) => {
|
|
|
4097
4131
|
ProgramSelection: [, smithyClient.expectInt32, `programSelection`],
|
|
4098
4132
|
RemixSettings: [, (_) => de_RemixSettings(_), `remixSettings`],
|
|
4099
4133
|
SelectorType: [, smithyClient.expectString, `selectorType`],
|
|
4134
|
+
Streams: [, smithyClient._json, `streams`],
|
|
4100
4135
|
Tracks: [, smithyClient._json, `tracks`],
|
|
4101
4136
|
});
|
|
4102
4137
|
};
|
|
@@ -5617,6 +5652,11 @@ const de_PartnerWatermarking = (output, context) => {
|
|
|
5617
5652
|
NexguardFileMarkerSettings: [, (_) => de_NexGuardFileMarkerSettings(_), `nexguardFileMarkerSettings`],
|
|
5618
5653
|
});
|
|
5619
5654
|
};
|
|
5655
|
+
const de_PassthroughSettings = (output, context) => {
|
|
5656
|
+
return smithyClient.take(output, {
|
|
5657
|
+
VideoSelectorMode: [, smithyClient.expectString, `videoSelectorMode`],
|
|
5658
|
+
});
|
|
5659
|
+
};
|
|
5620
5660
|
const de_Policy = (output, context) => {
|
|
5621
5661
|
return smithyClient.take(output, {
|
|
5622
5662
|
HttpInputs: [, smithyClient.expectString, `httpInputs`],
|
|
@@ -5856,6 +5896,7 @@ const de_TrackMapping = (output, context) => {
|
|
|
5856
5896
|
};
|
|
5857
5897
|
const de_TrackSourceSettings = (output, context) => {
|
|
5858
5898
|
return smithyClient.take(output, {
|
|
5899
|
+
StreamNumber: [, smithyClient.expectInt32, `streamNumber`],
|
|
5859
5900
|
TrackNumber: [, smithyClient.expectInt32, `trackNumber`],
|
|
5860
5901
|
});
|
|
5861
5902
|
};
|
|
@@ -5900,6 +5941,7 @@ const de_VideoCodecSettings = (output, context) => {
|
|
|
5900
5941
|
H264Settings: [, (_) => de_H264Settings(_), `h264Settings`],
|
|
5901
5942
|
H265Settings: [, (_) => de_H265Settings(_), `h265Settings`],
|
|
5902
5943
|
Mpeg2Settings: [, (_) => de_Mpeg2Settings(_), `mpeg2Settings`],
|
|
5944
|
+
PassthroughSettings: [, (_) => de_PassthroughSettings(_), `passthroughSettings`],
|
|
5903
5945
|
ProresSettings: [, (_) => de_ProresSettings(_), `proresSettings`],
|
|
5904
5946
|
UncompressedSettings: [, (_) => de_UncompressedSettings(_), `uncompressedSettings`],
|
|
5905
5947
|
Vc3Settings: [, (_) => de_Vc3Settings(_), `vc3Settings`],
|
|
@@ -5972,6 +6014,7 @@ const de_VideoOverlayInputClipping = (output, context) => {
|
|
|
5972
6014
|
const de_VideoOverlayPosition = (output, context) => {
|
|
5973
6015
|
return smithyClient.take(output, {
|
|
5974
6016
|
Height: [, smithyClient.expectInt32, `height`],
|
|
6017
|
+
Opacity: [, smithyClient.expectInt32, `opacity`],
|
|
5975
6018
|
Unit: [, smithyClient.expectString, `unit`],
|
|
5976
6019
|
Width: [, smithyClient.expectInt32, `width`],
|
|
5977
6020
|
XPosition: [, smithyClient.expectInt32, `xPosition`],
|
|
@@ -6875,6 +6918,10 @@ const AudioNormalizationPeakCalculation = {
|
|
|
6875
6918
|
NONE: "NONE",
|
|
6876
6919
|
TRUE_PEAK: "TRUE_PEAK",
|
|
6877
6920
|
};
|
|
6921
|
+
const SlowPalPitchCorrection = {
|
|
6922
|
+
DISABLED: "DISABLED",
|
|
6923
|
+
ENABLED: "ENABLED",
|
|
6924
|
+
};
|
|
6878
6925
|
const AudioTypeControl = {
|
|
6879
6926
|
FOLLOW_INPUT: "FOLLOW_INPUT",
|
|
6880
6927
|
USE_CONFIGURED: "USE_CONFIGURED",
|
|
@@ -7557,6 +7604,7 @@ const AudioSelectorType = {
|
|
|
7557
7604
|
HLS_RENDITION_GROUP: "HLS_RENDITION_GROUP",
|
|
7558
7605
|
LANGUAGE_CODE: "LANGUAGE_CODE",
|
|
7559
7606
|
PID: "PID",
|
|
7607
|
+
STREAM: "STREAM",
|
|
7560
7608
|
TRACK: "TRACK",
|
|
7561
7609
|
};
|
|
7562
7610
|
const AncillaryConvert608To708 = {
|
|
@@ -7754,6 +7802,7 @@ const DashManifestStyle = {
|
|
|
7754
7802
|
BASIC: "BASIC",
|
|
7755
7803
|
COMPACT: "COMPACT",
|
|
7756
7804
|
DISTINCT: "DISTINCT",
|
|
7805
|
+
FULL: "FULL",
|
|
7757
7806
|
};
|
|
7758
7807
|
const S3ObjectCannedAcl = {
|
|
7759
7808
|
AUTHENTICATED_READ: "AUTHENTICATED_READ",
|
|
@@ -7990,6 +8039,7 @@ const HlsProgressiveWriteHlsManifest = {
|
|
|
7990
8039
|
DISABLED: "DISABLED",
|
|
7991
8040
|
ENABLED: "ENABLED",
|
|
7992
8041
|
};
|
|
8042
|
+
|
|
7993
8043
|
const HlsSegmentControl = {
|
|
7994
8044
|
SEGMENTED_FILES: "SEGMENTED_FILES",
|
|
7995
8045
|
SINGLE_FILE: "SINGLE_FILE",
|
|
@@ -7999,7 +8049,6 @@ const HlsSegmentLengthControl = {
|
|
|
7999
8049
|
GOP_MULTIPLE: "GOP_MULTIPLE",
|
|
8000
8050
|
MATCH: "MATCH",
|
|
8001
8051
|
};
|
|
8002
|
-
|
|
8003
8052
|
const HlsStreamInfResolution = {
|
|
8004
8053
|
EXCLUDE: "EXCLUDE",
|
|
8005
8054
|
INCLUDE: "INCLUDE",
|
|
@@ -8801,6 +8850,10 @@ const Mpeg2TemporalAdaptiveQuantization = {
|
|
|
8801
8850
|
DISABLED: "DISABLED",
|
|
8802
8851
|
ENABLED: "ENABLED",
|
|
8803
8852
|
};
|
|
8853
|
+
const VideoSelectorMode = {
|
|
8854
|
+
AUTO: "AUTO",
|
|
8855
|
+
REMUX_ALL: "REMUX_ALL",
|
|
8856
|
+
};
|
|
8804
8857
|
const ProresChromaSampling = {
|
|
8805
8858
|
PRESERVE_444_SAMPLING: "PRESERVE_444_SAMPLING",
|
|
8806
8859
|
SUBSAMPLE_TO_422: "SUBSAMPLE_TO_422",
|
|
@@ -9165,11 +9218,6 @@ const TimecodeBurninPosition = {
|
|
|
9165
9218
|
TOP_LEFT: "TOP_LEFT",
|
|
9166
9219
|
TOP_RIGHT: "TOP_RIGHT",
|
|
9167
9220
|
};
|
|
9168
|
-
const TimecodeSource = {
|
|
9169
|
-
EMBEDDED: "EMBEDDED",
|
|
9170
|
-
SPECIFIEDSTART: "SPECIFIEDSTART",
|
|
9171
|
-
ZEROBASED: "ZEROBASED",
|
|
9172
|
-
};
|
|
9173
9221
|
|
|
9174
9222
|
Object.defineProperty(exports, "$Command", {
|
|
9175
9223
|
enumerable: true,
|
|
@@ -9600,6 +9648,7 @@ exports.SearchJobsCommand = SearchJobsCommand;
|
|
|
9600
9648
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
9601
9649
|
exports.ShareStatus = ShareStatus;
|
|
9602
9650
|
exports.SimulateReservedQueue = SimulateReservedQueue;
|
|
9651
|
+
exports.SlowPalPitchCorrection = SlowPalPitchCorrection;
|
|
9603
9652
|
exports.SrtStylePassthrough = SrtStylePassthrough;
|
|
9604
9653
|
exports.StartJobsQueryCommand = StartJobsQueryCommand;
|
|
9605
9654
|
exports.StatusUpdateInterval = StatusUpdateInterval;
|
|
@@ -9638,6 +9687,7 @@ exports.VchipAction = VchipAction;
|
|
|
9638
9687
|
exports.VideoCodec = VideoCodec;
|
|
9639
9688
|
exports.VideoOverlayPlayBackMode = VideoOverlayPlayBackMode;
|
|
9640
9689
|
exports.VideoOverlayUnit = VideoOverlayUnit;
|
|
9690
|
+
exports.VideoSelectorMode = VideoSelectorMode;
|
|
9641
9691
|
exports.VideoSelectorType = VideoSelectorType;
|
|
9642
9692
|
exports.VideoTimecodeInsertion = VideoTimecodeInsertion;
|
|
9643
9693
|
exports.Vp8FramerateControl = Vp8FramerateControl;
|
|
@@ -50,6 +50,10 @@ export const AudioNormalizationPeakCalculation = {
|
|
|
50
50
|
NONE: "NONE",
|
|
51
51
|
TRUE_PEAK: "TRUE_PEAK",
|
|
52
52
|
};
|
|
53
|
+
export const SlowPalPitchCorrection = {
|
|
54
|
+
DISABLED: "DISABLED",
|
|
55
|
+
ENABLED: "ENABLED",
|
|
56
|
+
};
|
|
53
57
|
export const AudioTypeControl = {
|
|
54
58
|
FOLLOW_INPUT: "FOLLOW_INPUT",
|
|
55
59
|
USE_CONFIGURED: "USE_CONFIGURED",
|
|
@@ -732,6 +736,7 @@ export const AudioSelectorType = {
|
|
|
732
736
|
HLS_RENDITION_GROUP: "HLS_RENDITION_GROUP",
|
|
733
737
|
LANGUAGE_CODE: "LANGUAGE_CODE",
|
|
734
738
|
PID: "PID",
|
|
739
|
+
STREAM: "STREAM",
|
|
735
740
|
TRACK: "TRACK",
|
|
736
741
|
};
|
|
737
742
|
export const AncillaryConvert608To708 = {
|
|
@@ -929,6 +934,7 @@ export const DashManifestStyle = {
|
|
|
929
934
|
BASIC: "BASIC",
|
|
930
935
|
COMPACT: "COMPACT",
|
|
931
936
|
DISTINCT: "DISTINCT",
|
|
937
|
+
FULL: "FULL",
|
|
932
938
|
};
|
|
933
939
|
export const S3ObjectCannedAcl = {
|
|
934
940
|
AUTHENTICATED_READ: "AUTHENTICATED_READ",
|
|
@@ -1165,12 +1171,3 @@ export const HlsProgressiveWriteHlsManifest = {
|
|
|
1165
1171
|
DISABLED: "DISABLED",
|
|
1166
1172
|
ENABLED: "ENABLED",
|
|
1167
1173
|
};
|
|
1168
|
-
export const HlsSegmentControl = {
|
|
1169
|
-
SEGMENTED_FILES: "SEGMENTED_FILES",
|
|
1170
|
-
SINGLE_FILE: "SINGLE_FILE",
|
|
1171
|
-
};
|
|
1172
|
-
export const HlsSegmentLengthControl = {
|
|
1173
|
-
EXACT: "EXACT",
|
|
1174
|
-
GOP_MULTIPLE: "GOP_MULTIPLE",
|
|
1175
|
-
MATCH: "MATCH",
|
|
1176
|
-
};
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
export const HlsSegmentControl = {
|
|
2
|
+
SEGMENTED_FILES: "SEGMENTED_FILES",
|
|
3
|
+
SINGLE_FILE: "SINGLE_FILE",
|
|
4
|
+
};
|
|
5
|
+
export const HlsSegmentLengthControl = {
|
|
6
|
+
EXACT: "EXACT",
|
|
7
|
+
GOP_MULTIPLE: "GOP_MULTIPLE",
|
|
8
|
+
MATCH: "MATCH",
|
|
9
|
+
};
|
|
1
10
|
export const HlsStreamInfResolution = {
|
|
2
11
|
EXCLUDE: "EXCLUDE",
|
|
3
12
|
INCLUDE: "INCLUDE",
|
|
@@ -799,6 +808,10 @@ export const Mpeg2TemporalAdaptiveQuantization = {
|
|
|
799
808
|
DISABLED: "DISABLED",
|
|
800
809
|
ENABLED: "ENABLED",
|
|
801
810
|
};
|
|
811
|
+
export const VideoSelectorMode = {
|
|
812
|
+
AUTO: "AUTO",
|
|
813
|
+
REMUX_ALL: "REMUX_ALL",
|
|
814
|
+
};
|
|
802
815
|
export const ProresChromaSampling = {
|
|
803
816
|
PRESERVE_444_SAMPLING: "PRESERVE_444_SAMPLING",
|
|
804
817
|
SUBSAMPLE_TO_422: "SUBSAMPLE_TO_422",
|
|
@@ -1163,8 +1176,3 @@ export const TimecodeBurninPosition = {
|
|
|
1163
1176
|
TOP_LEFT: "TOP_LEFT",
|
|
1164
1177
|
TOP_RIGHT: "TOP_RIGHT",
|
|
1165
1178
|
};
|
|
1166
|
-
export const TimecodeSource = {
|
|
1167
|
-
EMBEDDED: "EMBEDDED",
|
|
1168
|
-
SPECIFIEDSTART: "SPECIFIEDSTART",
|
|
1169
|
-
ZEROBASED: "ZEROBASED",
|
|
1170
|
-
};
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
|
|
2
|
+
export const TimecodeSource = {
|
|
3
|
+
EMBEDDED: "EMBEDDED",
|
|
4
|
+
SPECIFIEDSTART: "SPECIFIEDSTART",
|
|
5
|
+
ZEROBASED: "ZEROBASED",
|
|
6
|
+
};
|
|
2
7
|
export const ShareStatus = {
|
|
3
8
|
INITIATED: "INITIATED",
|
|
4
9
|
NOT_SHARED: "NOT_SHARED",
|
|
@@ -1345,6 +1345,11 @@ const se_AudioDescription = (input, context) => {
|
|
|
1345
1345
|
return take(input, {
|
|
1346
1346
|
audioChannelTaggingSettings: [, (_) => se_AudioChannelTaggingSettings(_, context), `AudioChannelTaggingSettings`],
|
|
1347
1347
|
audioNormalizationSettings: [, (_) => se_AudioNormalizationSettings(_, context), `AudioNormalizationSettings`],
|
|
1348
|
+
audioPitchCorrectionSettings: [
|
|
1349
|
+
,
|
|
1350
|
+
(_) => se_AudioPitchCorrectionSettings(_, context),
|
|
1351
|
+
`AudioPitchCorrectionSettings`,
|
|
1352
|
+
],
|
|
1348
1353
|
audioSourceName: [, , `AudioSourceName`],
|
|
1349
1354
|
audioType: [, , `AudioType`],
|
|
1350
1355
|
audioTypeControl: [, , `AudioTypeControl`],
|
|
@@ -1367,6 +1372,11 @@ const se_AudioNormalizationSettings = (input, context) => {
|
|
|
1367
1372
|
truePeakLimiterThreshold: [, __serializeFloat, `TruePeakLimiterThreshold`],
|
|
1368
1373
|
});
|
|
1369
1374
|
};
|
|
1375
|
+
const se_AudioPitchCorrectionSettings = (input, context) => {
|
|
1376
|
+
return take(input, {
|
|
1377
|
+
slowPalPitchCorrection: [, , `SlowPalPitchCorrection`],
|
|
1378
|
+
});
|
|
1379
|
+
};
|
|
1370
1380
|
const se_AudioSelector = (input, context) => {
|
|
1371
1381
|
return take(input, {
|
|
1372
1382
|
audioDurationCorrection: [, , `AudioDurationCorrection`],
|
|
@@ -1380,6 +1390,7 @@ const se_AudioSelector = (input, context) => {
|
|
|
1380
1390
|
programSelection: [, , `ProgramSelection`],
|
|
1381
1391
|
remixSettings: [, (_) => se_RemixSettings(_, context), `RemixSettings`],
|
|
1382
1392
|
selectorType: [, , `SelectorType`],
|
|
1393
|
+
streams: [, _json, `Streams`],
|
|
1383
1394
|
tracks: [, _json, `Tracks`],
|
|
1384
1395
|
});
|
|
1385
1396
|
};
|
|
@@ -2757,6 +2768,11 @@ const se_PartnerWatermarking = (input, context) => {
|
|
|
2757
2768
|
nexguardFileMarkerSettings: [, (_) => se_NexGuardFileMarkerSettings(_, context), `NexguardFileMarkerSettings`],
|
|
2758
2769
|
});
|
|
2759
2770
|
};
|
|
2771
|
+
const se_PassthroughSettings = (input, context) => {
|
|
2772
|
+
return take(input, {
|
|
2773
|
+
videoSelectorMode: [, , `VideoSelectorMode`],
|
|
2774
|
+
});
|
|
2775
|
+
};
|
|
2760
2776
|
const se_Policy = (input, context) => {
|
|
2761
2777
|
return take(input, {
|
|
2762
2778
|
httpInputs: [, , `HttpInputs`],
|
|
@@ -2916,6 +2932,7 @@ const se_TimedMetadataInsertion = (input, context) => {
|
|
|
2916
2932
|
};
|
|
2917
2933
|
const se_TrackSourceSettings = (input, context) => {
|
|
2918
2934
|
return take(input, {
|
|
2935
|
+
streamNumber: [, , `StreamNumber`],
|
|
2919
2936
|
trackNumber: [, , `TrackNumber`],
|
|
2920
2937
|
});
|
|
2921
2938
|
};
|
|
@@ -2960,6 +2977,7 @@ const se_VideoCodecSettings = (input, context) => {
|
|
|
2960
2977
|
h264Settings: [, (_) => se_H264Settings(_, context), `H264Settings`],
|
|
2961
2978
|
h265Settings: [, (_) => se_H265Settings(_, context), `H265Settings`],
|
|
2962
2979
|
mpeg2Settings: [, (_) => se_Mpeg2Settings(_, context), `Mpeg2Settings`],
|
|
2980
|
+
passthroughSettings: [, (_) => se_PassthroughSettings(_, context), `PassthroughSettings`],
|
|
2963
2981
|
proresSettings: [, (_) => se_ProresSettings(_, context), `ProresSettings`],
|
|
2964
2982
|
uncompressedSettings: [, (_) => se_UncompressedSettings(_, context), `UncompressedSettings`],
|
|
2965
2983
|
vc3Settings: [, (_) => se_Vc3Settings(_, context), `Vc3Settings`],
|
|
@@ -3026,6 +3044,7 @@ const se_VideoOverlayInputClipping = (input, context) => {
|
|
|
3026
3044
|
const se_VideoOverlayPosition = (input, context) => {
|
|
3027
3045
|
return take(input, {
|
|
3028
3046
|
height: [, , `Height`],
|
|
3047
|
+
opacity: [, , `Opacity`],
|
|
3029
3048
|
unit: [, , `Unit`],
|
|
3030
3049
|
width: [, , `Width`],
|
|
3031
3050
|
xPosition: [, , `XPosition`],
|
|
@@ -3643,6 +3662,11 @@ const de_AudioDescription = (output, context) => {
|
|
|
3643
3662
|
`audioChannelTaggingSettings`,
|
|
3644
3663
|
],
|
|
3645
3664
|
AudioNormalizationSettings: [, (_) => de_AudioNormalizationSettings(_, context), `audioNormalizationSettings`],
|
|
3665
|
+
AudioPitchCorrectionSettings: [
|
|
3666
|
+
,
|
|
3667
|
+
(_) => de_AudioPitchCorrectionSettings(_, context),
|
|
3668
|
+
`audioPitchCorrectionSettings`,
|
|
3669
|
+
],
|
|
3646
3670
|
AudioSourceName: [, __expectString, `audioSourceName`],
|
|
3647
3671
|
AudioType: [, __expectInt32, `audioType`],
|
|
3648
3672
|
AudioTypeControl: [, __expectString, `audioTypeControl`],
|
|
@@ -3665,6 +3689,11 @@ const de_AudioNormalizationSettings = (output, context) => {
|
|
|
3665
3689
|
TruePeakLimiterThreshold: [, __limitedParseDouble, `truePeakLimiterThreshold`],
|
|
3666
3690
|
});
|
|
3667
3691
|
};
|
|
3692
|
+
const de_AudioPitchCorrectionSettings = (output, context) => {
|
|
3693
|
+
return take(output, {
|
|
3694
|
+
SlowPalPitchCorrection: [, __expectString, `slowPalPitchCorrection`],
|
|
3695
|
+
});
|
|
3696
|
+
};
|
|
3668
3697
|
const de_AudioProperties = (output, context) => {
|
|
3669
3698
|
return take(output, {
|
|
3670
3699
|
BitDepth: [, __expectInt32, `bitDepth`],
|
|
@@ -3688,6 +3717,7 @@ const de_AudioSelector = (output, context) => {
|
|
|
3688
3717
|
ProgramSelection: [, __expectInt32, `programSelection`],
|
|
3689
3718
|
RemixSettings: [, (_) => de_RemixSettings(_, context), `remixSettings`],
|
|
3690
3719
|
SelectorType: [, __expectString, `selectorType`],
|
|
3720
|
+
Streams: [, _json, `streams`],
|
|
3691
3721
|
Tracks: [, _json, `tracks`],
|
|
3692
3722
|
});
|
|
3693
3723
|
};
|
|
@@ -5208,6 +5238,11 @@ const de_PartnerWatermarking = (output, context) => {
|
|
|
5208
5238
|
NexguardFileMarkerSettings: [, (_) => de_NexGuardFileMarkerSettings(_, context), `nexguardFileMarkerSettings`],
|
|
5209
5239
|
});
|
|
5210
5240
|
};
|
|
5241
|
+
const de_PassthroughSettings = (output, context) => {
|
|
5242
|
+
return take(output, {
|
|
5243
|
+
VideoSelectorMode: [, __expectString, `videoSelectorMode`],
|
|
5244
|
+
});
|
|
5245
|
+
};
|
|
5211
5246
|
const de_Policy = (output, context) => {
|
|
5212
5247
|
return take(output, {
|
|
5213
5248
|
HttpInputs: [, __expectString, `httpInputs`],
|
|
@@ -5447,6 +5482,7 @@ const de_TrackMapping = (output, context) => {
|
|
|
5447
5482
|
};
|
|
5448
5483
|
const de_TrackSourceSettings = (output, context) => {
|
|
5449
5484
|
return take(output, {
|
|
5485
|
+
StreamNumber: [, __expectInt32, `streamNumber`],
|
|
5450
5486
|
TrackNumber: [, __expectInt32, `trackNumber`],
|
|
5451
5487
|
});
|
|
5452
5488
|
};
|
|
@@ -5491,6 +5527,7 @@ const de_VideoCodecSettings = (output, context) => {
|
|
|
5491
5527
|
H264Settings: [, (_) => de_H264Settings(_, context), `h264Settings`],
|
|
5492
5528
|
H265Settings: [, (_) => de_H265Settings(_, context), `h265Settings`],
|
|
5493
5529
|
Mpeg2Settings: [, (_) => de_Mpeg2Settings(_, context), `mpeg2Settings`],
|
|
5530
|
+
PassthroughSettings: [, (_) => de_PassthroughSettings(_, context), `passthroughSettings`],
|
|
5494
5531
|
ProresSettings: [, (_) => de_ProresSettings(_, context), `proresSettings`],
|
|
5495
5532
|
UncompressedSettings: [, (_) => de_UncompressedSettings(_, context), `uncompressedSettings`],
|
|
5496
5533
|
Vc3Settings: [, (_) => de_Vc3Settings(_, context), `vc3Settings`],
|
|
@@ -5563,6 +5600,7 @@ const de_VideoOverlayInputClipping = (output, context) => {
|
|
|
5563
5600
|
const de_VideoOverlayPosition = (output, context) => {
|
|
5564
5601
|
return take(output, {
|
|
5565
5602
|
Height: [, __expectInt32, `height`],
|
|
5603
|
+
Opacity: [, __expectInt32, `opacity`],
|
|
5566
5604
|
Unit: [, __expectString, `unit`],
|
|
5567
5605
|
Width: [, __expectInt32, `width`],
|
|
5568
5606
|
XPosition: [, __expectInt32, `xPosition`],
|
|
@@ -26,7 +26,7 @@ export interface MediaConvertHttpAuthSchemeProvider extends HttpAuthSchemeProvid
|
|
|
26
26
|
*/
|
|
27
27
|
export declare const defaultMediaConvertHttpAuthSchemeProvider: MediaConvertHttpAuthSchemeProvider;
|
|
28
28
|
/**
|
|
29
|
-
* @
|
|
29
|
+
* @public
|
|
30
30
|
*/
|
|
31
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
32
32
|
/**
|
|
@@ -131,7 +131,10 @@ declare const CreateJobCommand_base: {
|
|
|
131
131
|
* ChannelsIn: Number("int"),
|
|
132
132
|
* ChannelsOut: Number("int"),
|
|
133
133
|
* },
|
|
134
|
-
* SelectorType: "PID" || "TRACK" || "LANGUAGE_CODE" || "HLS_RENDITION_GROUP" || "ALL_PCM",
|
|
134
|
+
* SelectorType: "PID" || "TRACK" || "LANGUAGE_CODE" || "HLS_RENDITION_GROUP" || "ALL_PCM" || "STREAM",
|
|
135
|
+
* Streams: [
|
|
136
|
+
* Number("int"),
|
|
137
|
+
* ],
|
|
135
138
|
* Tracks: [
|
|
136
139
|
* Number("int"),
|
|
137
140
|
* ],
|
|
@@ -174,6 +177,7 @@ declare const CreateJobCommand_base: {
|
|
|
174
177
|
* PageNumber: "STRING_VALUE",
|
|
175
178
|
* },
|
|
176
179
|
* TrackSourceSettings: { // TrackSourceSettings
|
|
180
|
+
* StreamNumber: Number("int"),
|
|
177
181
|
* TrackNumber: Number("int"),
|
|
178
182
|
* },
|
|
179
183
|
* WebvttHlsSourceSettings: { // WebvttHlsSourceSettings
|
|
@@ -276,6 +280,7 @@ declare const CreateJobCommand_base: {
|
|
|
276
280
|
* EndTimecode: "STRING_VALUE",
|
|
277
281
|
* InitialPosition: { // VideoOverlayPosition
|
|
278
282
|
* Height: Number("int"),
|
|
283
|
+
* Opacity: Number("int"),
|
|
279
284
|
* Unit: "PIXELS" || "PERCENTAGE",
|
|
280
285
|
* Width: Number("int"),
|
|
281
286
|
* XPosition: Number("int"),
|
|
@@ -298,6 +303,7 @@ declare const CreateJobCommand_base: {
|
|
|
298
303
|
* { // VideoOverlayTransition
|
|
299
304
|
* EndPosition: {
|
|
300
305
|
* Height: Number("int"),
|
|
306
|
+
* Opacity: Number("int"),
|
|
301
307
|
* Unit: "PIXELS" || "PERCENTAGE",
|
|
302
308
|
* Width: Number("int"),
|
|
303
309
|
* XPosition: Number("int"),
|
|
@@ -439,7 +445,7 @@ declare const CreateJobCommand_base: {
|
|
|
439
445
|
* ClientCache: "DISABLED" || "ENABLED",
|
|
440
446
|
* CodecSpecification: "RFC_6381" || "RFC_4281",
|
|
441
447
|
* DashIFrameTrickPlayNameModifier: "STRING_VALUE",
|
|
442
|
-
* DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
|
|
448
|
+
* DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT" || "FULL",
|
|
443
449
|
* Destination: "STRING_VALUE",
|
|
444
450
|
* DestinationSettings: { // DestinationSettings
|
|
445
451
|
* S3Settings: { // S3DestinationSettings
|
|
@@ -520,7 +526,7 @@ declare const CreateJobCommand_base: {
|
|
|
520
526
|
* AudioChannelConfigSchemeIdUri: "MPEG_CHANNEL_CONFIGURATION" || "DOLBY_CHANNEL_CONFIGURATION",
|
|
521
527
|
* BaseUrl: "STRING_VALUE",
|
|
522
528
|
* DashIFrameTrickPlayNameModifier: "STRING_VALUE",
|
|
523
|
-
* DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
|
|
529
|
+
* DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT" || "FULL",
|
|
524
530
|
* Destination: "STRING_VALUE",
|
|
525
531
|
* DestinationSettings: {
|
|
526
532
|
* S3Settings: {
|
|
@@ -747,6 +753,9 @@ declare const CreateJobCommand_base: {
|
|
|
747
753
|
* TargetLkfs: Number("double"),
|
|
748
754
|
* TruePeakLimiterThreshold: Number("double"),
|
|
749
755
|
* },
|
|
756
|
+
* AudioPitchCorrectionSettings: { // AudioPitchCorrectionSettings
|
|
757
|
+
* SlowPalPitchCorrection: "DISABLED" || "ENABLED",
|
|
758
|
+
* },
|
|
750
759
|
* AudioSourceName: "STRING_VALUE",
|
|
751
760
|
* AudioType: Number("int"),
|
|
752
761
|
* AudioTypeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
@@ -1352,6 +1361,9 @@ declare const CreateJobCommand_base: {
|
|
|
1352
1361
|
* Telecine: "NONE" || "SOFT" || "HARD",
|
|
1353
1362
|
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1354
1363
|
* },
|
|
1364
|
+
* PassthroughSettings: { // PassthroughSettings
|
|
1365
|
+
* VideoSelectorMode: "AUTO" || "REMUX_ALL",
|
|
1366
|
+
* },
|
|
1355
1367
|
* ProresSettings: { // ProresSettings
|
|
1356
1368
|
* ChromaSampling: "PRESERVE_444_SAMPLING" || "SUBSAMPLE_TO_422",
|
|
1357
1369
|
* CodecProfile: "APPLE_PRORES_422" || "APPLE_PRORES_422_HQ" || "APPLE_PRORES_422_LT" || "APPLE_PRORES_422_PROXY" || "APPLE_PRORES_4444" || "APPLE_PRORES_4444_XQ",
|
|
@@ -1753,7 +1765,10 @@ declare const CreateJobCommand_base: {
|
|
|
1753
1765
|
* // ChannelsIn: Number("int"),
|
|
1754
1766
|
* // ChannelsOut: Number("int"),
|
|
1755
1767
|
* // },
|
|
1756
|
-
* // SelectorType: "PID" || "TRACK" || "LANGUAGE_CODE" || "HLS_RENDITION_GROUP" || "ALL_PCM",
|
|
1768
|
+
* // SelectorType: "PID" || "TRACK" || "LANGUAGE_CODE" || "HLS_RENDITION_GROUP" || "ALL_PCM" || "STREAM",
|
|
1769
|
+
* // Streams: [
|
|
1770
|
+
* // Number("int"),
|
|
1771
|
+
* // ],
|
|
1757
1772
|
* // Tracks: [
|
|
1758
1773
|
* // Number("int"),
|
|
1759
1774
|
* // ],
|
|
@@ -1796,6 +1811,7 @@ declare const CreateJobCommand_base: {
|
|
|
1796
1811
|
* // PageNumber: "STRING_VALUE",
|
|
1797
1812
|
* // },
|
|
1798
1813
|
* // TrackSourceSettings: { // TrackSourceSettings
|
|
1814
|
+
* // StreamNumber: Number("int"),
|
|
1799
1815
|
* // TrackNumber: Number("int"),
|
|
1800
1816
|
* // },
|
|
1801
1817
|
* // WebvttHlsSourceSettings: { // WebvttHlsSourceSettings
|
|
@@ -1898,6 +1914,7 @@ declare const CreateJobCommand_base: {
|
|
|
1898
1914
|
* // EndTimecode: "STRING_VALUE",
|
|
1899
1915
|
* // InitialPosition: { // VideoOverlayPosition
|
|
1900
1916
|
* // Height: Number("int"),
|
|
1917
|
+
* // Opacity: Number("int"),
|
|
1901
1918
|
* // Unit: "PIXELS" || "PERCENTAGE",
|
|
1902
1919
|
* // Width: Number("int"),
|
|
1903
1920
|
* // XPosition: Number("int"),
|
|
@@ -1920,6 +1937,7 @@ declare const CreateJobCommand_base: {
|
|
|
1920
1937
|
* // { // VideoOverlayTransition
|
|
1921
1938
|
* // EndPosition: {
|
|
1922
1939
|
* // Height: Number("int"),
|
|
1940
|
+
* // Opacity: Number("int"),
|
|
1923
1941
|
* // Unit: "PIXELS" || "PERCENTAGE",
|
|
1924
1942
|
* // Width: Number("int"),
|
|
1925
1943
|
* // XPosition: Number("int"),
|
|
@@ -2061,7 +2079,7 @@ declare const CreateJobCommand_base: {
|
|
|
2061
2079
|
* // ClientCache: "DISABLED" || "ENABLED",
|
|
2062
2080
|
* // CodecSpecification: "RFC_6381" || "RFC_4281",
|
|
2063
2081
|
* // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
|
|
2064
|
-
* // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
|
|
2082
|
+
* // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT" || "FULL",
|
|
2065
2083
|
* // Destination: "STRING_VALUE",
|
|
2066
2084
|
* // DestinationSettings: { // DestinationSettings
|
|
2067
2085
|
* // S3Settings: { // S3DestinationSettings
|
|
@@ -2142,7 +2160,7 @@ declare const CreateJobCommand_base: {
|
|
|
2142
2160
|
* // AudioChannelConfigSchemeIdUri: "MPEG_CHANNEL_CONFIGURATION" || "DOLBY_CHANNEL_CONFIGURATION",
|
|
2143
2161
|
* // BaseUrl: "STRING_VALUE",
|
|
2144
2162
|
* // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
|
|
2145
|
-
* // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
|
|
2163
|
+
* // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT" || "FULL",
|
|
2146
2164
|
* // Destination: "STRING_VALUE",
|
|
2147
2165
|
* // DestinationSettings: {
|
|
2148
2166
|
* // S3Settings: {
|
|
@@ -2369,6 +2387,9 @@ declare const CreateJobCommand_base: {
|
|
|
2369
2387
|
* // TargetLkfs: Number("double"),
|
|
2370
2388
|
* // TruePeakLimiterThreshold: Number("double"),
|
|
2371
2389
|
* // },
|
|
2390
|
+
* // AudioPitchCorrectionSettings: { // AudioPitchCorrectionSettings
|
|
2391
|
+
* // SlowPalPitchCorrection: "DISABLED" || "ENABLED",
|
|
2392
|
+
* // },
|
|
2372
2393
|
* // AudioSourceName: "STRING_VALUE",
|
|
2373
2394
|
* // AudioType: Number("int"),
|
|
2374
2395
|
* // AudioTypeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
@@ -2974,6 +2995,9 @@ declare const CreateJobCommand_base: {
|
|
|
2974
2995
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
2975
2996
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2976
2997
|
* // },
|
|
2998
|
+
* // PassthroughSettings: { // PassthroughSettings
|
|
2999
|
+
* // VideoSelectorMode: "AUTO" || "REMUX_ALL",
|
|
3000
|
+
* // },
|
|
2977
3001
|
* // ProresSettings: { // ProresSettings
|
|
2978
3002
|
* // ChromaSampling: "PRESERVE_444_SAMPLING" || "SUBSAMPLE_TO_422",
|
|
2979
3003
|
* // CodecProfile: "APPLE_PRORES_422" || "APPLE_PRORES_422_HQ" || "APPLE_PRORES_422_LT" || "APPLE_PRORES_422_PROXY" || "APPLE_PRORES_4444" || "APPLE_PRORES_4444_XQ",
|