@aws-sdk/client-mediaconvert 3.846.0 → 3.848.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 +23 -8
- package/dist-es/models/models_0.js +5 -0
- package/dist-es/models/models_1.js +0 -7
- package/dist-es/models/models_2.js +9 -0
- package/dist-es/protocols/Aws_restJson1.js +6 -0
- package/dist-types/commands/CreateJobCommand.d.ts +8 -2
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +8 -2
- package/dist-types/commands/CreatePresetCommand.d.ts +8 -2
- package/dist-types/commands/GetJobCommand.d.ts +4 -1
- package/dist-types/commands/GetJobTemplateCommand.d.ts +4 -1
- package/dist-types/commands/GetPresetCommand.d.ts +4 -1
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +4 -1
- package/dist-types/commands/ListJobsCommand.d.ts +4 -1
- package/dist-types/commands/ListPresetsCommand.d.ts +4 -1
- package/dist-types/commands/ProbeCommand.d.ts +2 -2
- package/dist-types/commands/SearchJobsCommand.d.ts +4 -1
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +8 -2
- package/dist-types/commands/UpdatePresetCommand.d.ts +8 -2
- package/dist-types/models/models_0.d.ts +28 -16
- package/dist-types/models/models_1.d.ts +18 -17
- package/dist-types/models/models_2.d.ts +19 -2
- package/dist-types/ts3.4/models/models_0.d.ts +10 -4
- package/dist-types/ts3.4/models/models_1.d.ts +4 -9
- package/dist-types/ts3.4/models/models_2.d.ts +10 -1
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -24,6 +24,7 @@ __export(index_exports, {
|
|
|
24
24
|
AacAudioDescriptionBroadcasterMix: () => AacAudioDescriptionBroadcasterMix,
|
|
25
25
|
AacCodecProfile: () => AacCodecProfile,
|
|
26
26
|
AacCodingMode: () => AacCodingMode,
|
|
27
|
+
AacLoudnessMeasurementMode: () => AacLoudnessMeasurementMode,
|
|
27
28
|
AacRateControlMode: () => AacRateControlMode,
|
|
28
29
|
AacRawFormat: () => AacRawFormat,
|
|
29
30
|
AacSpecification: () => AacSpecification,
|
|
@@ -687,6 +688,13 @@ var MediaConvertServiceException = class _MediaConvertServiceException extends i
|
|
|
687
688
|
};
|
|
688
689
|
|
|
689
690
|
// src/models/models_2.ts
|
|
691
|
+
var JobStatus = {
|
|
692
|
+
CANCELED: "CANCELED",
|
|
693
|
+
COMPLETE: "COMPLETE",
|
|
694
|
+
ERROR: "ERROR",
|
|
695
|
+
PROGRESSING: "PROGRESSING",
|
|
696
|
+
SUBMITTED: "SUBMITTED"
|
|
697
|
+
};
|
|
690
698
|
var StatusUpdateInterval = {
|
|
691
699
|
SECONDS_10: "SECONDS_10",
|
|
692
700
|
SECONDS_12: "SECONDS_12",
|
|
@@ -711,6 +719,7 @@ var Type = {
|
|
|
711
719
|
var Format = {
|
|
712
720
|
matroska: "matroska",
|
|
713
721
|
mp4: "mp4",
|
|
722
|
+
mxf: "mxf",
|
|
714
723
|
quicktime: "quicktime",
|
|
715
724
|
webm: "webm"
|
|
716
725
|
};
|
|
@@ -724,6 +733,7 @@ var Codec = {
|
|
|
724
733
|
EAC3: "EAC3",
|
|
725
734
|
FLAC: "FLAC",
|
|
726
735
|
HEVC: "HEVC",
|
|
736
|
+
JPEG2000: "JPEG2000",
|
|
727
737
|
MJPEG: "MJPEG",
|
|
728
738
|
MP3: "MP3",
|
|
729
739
|
MP4V: "MP4V",
|
|
@@ -2100,10 +2110,13 @@ var se_AacSettings = /* @__PURE__ */ __name((input, context) => {
|
|
|
2100
2110
|
bitrate: [, , `Bitrate`],
|
|
2101
2111
|
codecProfile: [, , `CodecProfile`],
|
|
2102
2112
|
codingMode: [, , `CodingMode`],
|
|
2113
|
+
loudnessMeasurementMode: [, , `LoudnessMeasurementMode`],
|
|
2114
|
+
rapInterval: [, , `RapInterval`],
|
|
2103
2115
|
rateControlMode: [, , `RateControlMode`],
|
|
2104
2116
|
rawFormat: [, , `RawFormat`],
|
|
2105
2117
|
sampleRate: [, , `SampleRate`],
|
|
2106
2118
|
specification: [, , `Specification`],
|
|
2119
|
+
targetLoudnessRange: [, , `TargetLoudnessRange`],
|
|
2107
2120
|
vbrQuality: [, , `VbrQuality`]
|
|
2108
2121
|
});
|
|
2109
2122
|
}, "se_AacSettings");
|
|
@@ -4293,10 +4306,13 @@ var de_AacSettings = /* @__PURE__ */ __name((output, context) => {
|
|
|
4293
4306
|
Bitrate: [, import_smithy_client.expectInt32, `bitrate`],
|
|
4294
4307
|
CodecProfile: [, import_smithy_client.expectString, `codecProfile`],
|
|
4295
4308
|
CodingMode: [, import_smithy_client.expectString, `codingMode`],
|
|
4309
|
+
LoudnessMeasurementMode: [, import_smithy_client.expectString, `loudnessMeasurementMode`],
|
|
4310
|
+
RapInterval: [, import_smithy_client.expectInt32, `rapInterval`],
|
|
4296
4311
|
RateControlMode: [, import_smithy_client.expectString, `rateControlMode`],
|
|
4297
4312
|
RawFormat: [, import_smithy_client.expectString, `rawFormat`],
|
|
4298
4313
|
SampleRate: [, import_smithy_client.expectInt32, `sampleRate`],
|
|
4299
4314
|
Specification: [, import_smithy_client.expectString, `specification`],
|
|
4315
|
+
TargetLoudnessRange: [, import_smithy_client.expectInt32, `targetLoudnessRange`],
|
|
4300
4316
|
VbrQuality: [, import_smithy_client.expectString, `vbrQuality`]
|
|
4301
4317
|
});
|
|
4302
4318
|
}, "de_AacSettings");
|
|
@@ -7078,7 +7094,8 @@ var AacAudioDescriptionBroadcasterMix = {
|
|
|
7078
7094
|
var AacCodecProfile = {
|
|
7079
7095
|
HEV1: "HEV1",
|
|
7080
7096
|
HEV2: "HEV2",
|
|
7081
|
-
LC: "LC"
|
|
7097
|
+
LC: "LC",
|
|
7098
|
+
XHE: "XHE"
|
|
7082
7099
|
};
|
|
7083
7100
|
var AacCodingMode = {
|
|
7084
7101
|
AD_RECEIVER_MIX: "AD_RECEIVER_MIX",
|
|
@@ -7087,6 +7104,10 @@ var AacCodingMode = {
|
|
|
7087
7104
|
CODING_MODE_2_0: "CODING_MODE_2_0",
|
|
7088
7105
|
CODING_MODE_5_1: "CODING_MODE_5_1"
|
|
7089
7106
|
};
|
|
7107
|
+
var AacLoudnessMeasurementMode = {
|
|
7108
|
+
ANCHOR: "ANCHOR",
|
|
7109
|
+
PROGRAM: "PROGRAM"
|
|
7110
|
+
};
|
|
7090
7111
|
var AacRateControlMode = {
|
|
7091
7112
|
CBR: "CBR",
|
|
7092
7113
|
VBR: "VBR"
|
|
@@ -9347,13 +9368,6 @@ var SimulateReservedQueue = {
|
|
|
9347
9368
|
DISABLED: "DISABLED",
|
|
9348
9369
|
ENABLED: "ENABLED"
|
|
9349
9370
|
};
|
|
9350
|
-
var JobStatus = {
|
|
9351
|
-
CANCELED: "CANCELED",
|
|
9352
|
-
COMPLETE: "COMPLETE",
|
|
9353
|
-
ERROR: "ERROR",
|
|
9354
|
-
PROGRESSING: "PROGRESSING",
|
|
9355
|
-
SUBMITTED: "SUBMITTED"
|
|
9356
|
-
};
|
|
9357
9371
|
// Annotate the CommonJS export names for ESM import in node:
|
|
9358
9372
|
|
|
9359
9373
|
0 && (module.exports = {
|
|
@@ -9410,6 +9424,7 @@ var JobStatus = {
|
|
|
9410
9424
|
AacAudioDescriptionBroadcasterMix,
|
|
9411
9425
|
AacCodecProfile,
|
|
9412
9426
|
AacCodingMode,
|
|
9427
|
+
AacLoudnessMeasurementMode,
|
|
9413
9428
|
AacRateControlMode,
|
|
9414
9429
|
AacRawFormat,
|
|
9415
9430
|
AacSpecification,
|
|
@@ -62,6 +62,7 @@ export const AacCodecProfile = {
|
|
|
62
62
|
HEV1: "HEV1",
|
|
63
63
|
HEV2: "HEV2",
|
|
64
64
|
LC: "LC",
|
|
65
|
+
XHE: "XHE",
|
|
65
66
|
};
|
|
66
67
|
export const AacCodingMode = {
|
|
67
68
|
AD_RECEIVER_MIX: "AD_RECEIVER_MIX",
|
|
@@ -70,6 +71,10 @@ export const AacCodingMode = {
|
|
|
70
71
|
CODING_MODE_2_0: "CODING_MODE_2_0",
|
|
71
72
|
CODING_MODE_5_1: "CODING_MODE_5_1",
|
|
72
73
|
};
|
|
74
|
+
export const AacLoudnessMeasurementMode = {
|
|
75
|
+
ANCHOR: "ANCHOR",
|
|
76
|
+
PROGRAM: "PROGRAM",
|
|
77
|
+
};
|
|
73
78
|
export const AacRateControlMode = {
|
|
74
79
|
CBR: "CBR",
|
|
75
80
|
VBR: "VBR",
|
|
@@ -1158,10 +1158,3 @@ export const SimulateReservedQueue = {
|
|
|
1158
1158
|
DISABLED: "DISABLED",
|
|
1159
1159
|
ENABLED: "ENABLED",
|
|
1160
1160
|
};
|
|
1161
|
-
export const JobStatus = {
|
|
1162
|
-
CANCELED: "CANCELED",
|
|
1163
|
-
COMPLETE: "COMPLETE",
|
|
1164
|
-
ERROR: "ERROR",
|
|
1165
|
-
PROGRESSING: "PROGRESSING",
|
|
1166
|
-
SUBMITTED: "SUBMITTED",
|
|
1167
|
-
};
|
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
|
|
2
|
+
export const JobStatus = {
|
|
3
|
+
CANCELED: "CANCELED",
|
|
4
|
+
COMPLETE: "COMPLETE",
|
|
5
|
+
ERROR: "ERROR",
|
|
6
|
+
PROGRESSING: "PROGRESSING",
|
|
7
|
+
SUBMITTED: "SUBMITTED",
|
|
8
|
+
};
|
|
2
9
|
export const StatusUpdateInterval = {
|
|
3
10
|
SECONDS_10: "SECONDS_10",
|
|
4
11
|
SECONDS_12: "SECONDS_12",
|
|
@@ -23,6 +30,7 @@ export const Type = {
|
|
|
23
30
|
export const Format = {
|
|
24
31
|
matroska: "matroska",
|
|
25
32
|
mp4: "mp4",
|
|
33
|
+
mxf: "mxf",
|
|
26
34
|
quicktime: "quicktime",
|
|
27
35
|
webm: "webm",
|
|
28
36
|
};
|
|
@@ -36,6 +44,7 @@ export const Codec = {
|
|
|
36
44
|
EAC3: "EAC3",
|
|
37
45
|
FLAC: "FLAC",
|
|
38
46
|
HEVC: "HEVC",
|
|
47
|
+
JPEG2000: "JPEG2000",
|
|
39
48
|
MJPEG: "MJPEG",
|
|
40
49
|
MP3: "MP3",
|
|
41
50
|
MP4V: "MP4V",
|
|
@@ -1161,10 +1161,13 @@ const se_AacSettings = (input, context) => {
|
|
|
1161
1161
|
bitrate: [, , `Bitrate`],
|
|
1162
1162
|
codecProfile: [, , `CodecProfile`],
|
|
1163
1163
|
codingMode: [, , `CodingMode`],
|
|
1164
|
+
loudnessMeasurementMode: [, , `LoudnessMeasurementMode`],
|
|
1165
|
+
rapInterval: [, , `RapInterval`],
|
|
1164
1166
|
rateControlMode: [, , `RateControlMode`],
|
|
1165
1167
|
rawFormat: [, , `RawFormat`],
|
|
1166
1168
|
sampleRate: [, , `SampleRate`],
|
|
1167
1169
|
specification: [, , `Specification`],
|
|
1170
|
+
targetLoudnessRange: [, , `TargetLoudnessRange`],
|
|
1168
1171
|
vbrQuality: [, , `VbrQuality`],
|
|
1169
1172
|
});
|
|
1170
1173
|
};
|
|
@@ -3432,10 +3435,13 @@ const de_AacSettings = (output, context) => {
|
|
|
3432
3435
|
Bitrate: [, __expectInt32, `bitrate`],
|
|
3433
3436
|
CodecProfile: [, __expectString, `codecProfile`],
|
|
3434
3437
|
CodingMode: [, __expectString, `codingMode`],
|
|
3438
|
+
LoudnessMeasurementMode: [, __expectString, `loudnessMeasurementMode`],
|
|
3439
|
+
RapInterval: [, __expectInt32, `rapInterval`],
|
|
3435
3440
|
RateControlMode: [, __expectString, `rateControlMode`],
|
|
3436
3441
|
RawFormat: [, __expectString, `rawFormat`],
|
|
3437
3442
|
SampleRate: [, __expectInt32, `sampleRate`],
|
|
3438
3443
|
Specification: [, __expectString, `specification`],
|
|
3444
|
+
TargetLoudnessRange: [, __expectInt32, `targetLoudnessRange`],
|
|
3439
3445
|
VbrQuality: [, __expectString, `vbrQuality`],
|
|
3440
3446
|
});
|
|
3441
3447
|
};
|
|
@@ -740,12 +740,15 @@ declare const CreateJobCommand_base: {
|
|
|
740
740
|
* AacSettings: { // AacSettings
|
|
741
741
|
* AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
742
742
|
* Bitrate: Number("int"),
|
|
743
|
-
* CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
743
|
+
* CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
744
744
|
* CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
745
|
+
* LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
746
|
+
* RapInterval: Number("int"),
|
|
745
747
|
* RateControlMode: "CBR" || "VBR",
|
|
746
748
|
* RawFormat: "LATM_LOAS" || "NONE",
|
|
747
749
|
* SampleRate: Number("int"),
|
|
748
750
|
* Specification: "MPEG2" || "MPEG4",
|
|
751
|
+
* TargetLoudnessRange: Number("int"),
|
|
749
752
|
* VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
750
753
|
* },
|
|
751
754
|
* Ac3Settings: { // Ac3Settings
|
|
@@ -2345,12 +2348,15 @@ declare const CreateJobCommand_base: {
|
|
|
2345
2348
|
* // AacSettings: { // AacSettings
|
|
2346
2349
|
* // AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
2347
2350
|
* // Bitrate: Number("int"),
|
|
2348
|
-
* // CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
2351
|
+
* // CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
2349
2352
|
* // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
2353
|
+
* // LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
2354
|
+
* // RapInterval: Number("int"),
|
|
2350
2355
|
* // RateControlMode: "CBR" || "VBR",
|
|
2351
2356
|
* // RawFormat: "LATM_LOAS" || "NONE",
|
|
2352
2357
|
* // SampleRate: Number("int"),
|
|
2353
2358
|
* // Specification: "MPEG2" || "MPEG4",
|
|
2359
|
+
* // TargetLoudnessRange: Number("int"),
|
|
2354
2360
|
* // VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
2355
2361
|
* // },
|
|
2356
2362
|
* // Ac3Settings: { // Ac3Settings
|
|
@@ -721,12 +721,15 @@ declare const CreateJobTemplateCommand_base: {
|
|
|
721
721
|
* AacSettings: { // AacSettings
|
|
722
722
|
* AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
723
723
|
* Bitrate: Number("int"),
|
|
724
|
-
* CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
724
|
+
* CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
725
725
|
* CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
726
|
+
* LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
727
|
+
* RapInterval: Number("int"),
|
|
726
728
|
* RateControlMode: "CBR" || "VBR",
|
|
727
729
|
* RawFormat: "LATM_LOAS" || "NONE",
|
|
728
730
|
* SampleRate: Number("int"),
|
|
729
731
|
* Specification: "MPEG2" || "MPEG4",
|
|
732
|
+
* TargetLoudnessRange: Number("int"),
|
|
730
733
|
* VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
731
734
|
* },
|
|
732
735
|
* Ac3Settings: { // Ac3Settings
|
|
@@ -2268,12 +2271,15 @@ declare const CreateJobTemplateCommand_base: {
|
|
|
2268
2271
|
* // AacSettings: { // AacSettings
|
|
2269
2272
|
* // AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
2270
2273
|
* // Bitrate: Number("int"),
|
|
2271
|
-
* // CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
2274
|
+
* // CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
2272
2275
|
* // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
2276
|
+
* // LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
2277
|
+
* // RapInterval: Number("int"),
|
|
2273
2278
|
* // RateControlMode: "CBR" || "VBR",
|
|
2274
2279
|
* // RawFormat: "LATM_LOAS" || "NONE",
|
|
2275
2280
|
* // SampleRate: Number("int"),
|
|
2276
2281
|
* // Specification: "MPEG2" || "MPEG4",
|
|
2282
|
+
* // TargetLoudnessRange: Number("int"),
|
|
2277
2283
|
* // VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
2278
2284
|
* // },
|
|
2279
2285
|
* // Ac3Settings: { // Ac3Settings
|
|
@@ -63,12 +63,15 @@ declare const CreatePresetCommand_base: {
|
|
|
63
63
|
* AacSettings: { // AacSettings
|
|
64
64
|
* AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
65
65
|
* Bitrate: Number("int"),
|
|
66
|
-
* CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
66
|
+
* CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
67
67
|
* CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
68
|
+
* LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
69
|
+
* RapInterval: Number("int"),
|
|
68
70
|
* RateControlMode: "CBR" || "VBR",
|
|
69
71
|
* RawFormat: "LATM_LOAS" || "NONE",
|
|
70
72
|
* SampleRate: Number("int"),
|
|
71
73
|
* Specification: "MPEG2" || "MPEG4",
|
|
74
|
+
* TargetLoudnessRange: Number("int"),
|
|
72
75
|
* VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
73
76
|
* },
|
|
74
77
|
* Ac3Settings: { // Ac3Settings
|
|
@@ -920,12 +923,15 @@ declare const CreatePresetCommand_base: {
|
|
|
920
923
|
* // AacSettings: { // AacSettings
|
|
921
924
|
* // AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
922
925
|
* // Bitrate: Number("int"),
|
|
923
|
-
* // CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
926
|
+
* // CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
924
927
|
* // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
928
|
+
* // LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
929
|
+
* // RapInterval: Number("int"),
|
|
925
930
|
* // RateControlMode: "CBR" || "VBR",
|
|
926
931
|
* // RawFormat: "LATM_LOAS" || "NONE",
|
|
927
932
|
* // SampleRate: Number("int"),
|
|
928
933
|
* // Specification: "MPEG2" || "MPEG4",
|
|
934
|
+
* // TargetLoudnessRange: Number("int"),
|
|
929
935
|
* // VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
930
936
|
* // },
|
|
931
937
|
* // Ac3Settings: { // Ac3Settings
|
|
@@ -784,12 +784,15 @@ declare const GetJobCommand_base: {
|
|
|
784
784
|
* // AacSettings: { // AacSettings
|
|
785
785
|
* // AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
786
786
|
* // Bitrate: Number("int"),
|
|
787
|
-
* // CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
787
|
+
* // CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
788
788
|
* // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
789
|
+
* // LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
790
|
+
* // RapInterval: Number("int"),
|
|
789
791
|
* // RateControlMode: "CBR" || "VBR",
|
|
790
792
|
* // RawFormat: "LATM_LOAS" || "NONE",
|
|
791
793
|
* // SampleRate: Number("int"),
|
|
792
794
|
* // Specification: "MPEG2" || "MPEG4",
|
|
795
|
+
* // TargetLoudnessRange: Number("int"),
|
|
793
796
|
* // VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
794
797
|
* // },
|
|
795
798
|
* // Ac3Settings: { // Ac3Settings
|
|
@@ -730,12 +730,15 @@ declare const GetJobTemplateCommand_base: {
|
|
|
730
730
|
* // AacSettings: { // AacSettings
|
|
731
731
|
* // AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
732
732
|
* // Bitrate: Number("int"),
|
|
733
|
-
* // CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
733
|
+
* // CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
734
734
|
* // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
735
|
+
* // LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
736
|
+
* // RapInterval: Number("int"),
|
|
735
737
|
* // RateControlMode: "CBR" || "VBR",
|
|
736
738
|
* // RawFormat: "LATM_LOAS" || "NONE",
|
|
737
739
|
* // SampleRate: Number("int"),
|
|
738
740
|
* // Specification: "MPEG2" || "MPEG4",
|
|
741
|
+
* // TargetLoudnessRange: Number("int"),
|
|
739
742
|
* // VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
740
743
|
* // },
|
|
741
744
|
* // Ac3Settings: { // Ac3Settings
|
|
@@ -72,12 +72,15 @@ declare const GetPresetCommand_base: {
|
|
|
72
72
|
* // AacSettings: { // AacSettings
|
|
73
73
|
* // AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
74
74
|
* // Bitrate: Number("int"),
|
|
75
|
-
* // CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
75
|
+
* // CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
76
76
|
* // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
77
|
+
* // LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
78
|
+
* // RapInterval: Number("int"),
|
|
77
79
|
* // RateControlMode: "CBR" || "VBR",
|
|
78
80
|
* // RawFormat: "LATM_LOAS" || "NONE",
|
|
79
81
|
* // SampleRate: Number("int"),
|
|
80
82
|
* // Specification: "MPEG2" || "MPEG4",
|
|
83
|
+
* // TargetLoudnessRange: Number("int"),
|
|
81
84
|
* // VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
82
85
|
* // },
|
|
83
86
|
* // Ac3Settings: { // Ac3Settings
|
|
@@ -735,12 +735,15 @@ declare const ListJobTemplatesCommand_base: {
|
|
|
735
735
|
* // AacSettings: { // AacSettings
|
|
736
736
|
* // AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
737
737
|
* // Bitrate: Number("int"),
|
|
738
|
-
* // CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
738
|
+
* // CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
739
739
|
* // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
740
|
+
* // LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
741
|
+
* // RapInterval: Number("int"),
|
|
740
742
|
* // RateControlMode: "CBR" || "VBR",
|
|
741
743
|
* // RawFormat: "LATM_LOAS" || "NONE",
|
|
742
744
|
* // SampleRate: Number("int"),
|
|
743
745
|
* // Specification: "MPEG2" || "MPEG4",
|
|
746
|
+
* // TargetLoudnessRange: Number("int"),
|
|
744
747
|
* // VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
745
748
|
* // },
|
|
746
749
|
* // Ac3Settings: { // Ac3Settings
|
|
@@ -789,12 +789,15 @@ declare const ListJobsCommand_base: {
|
|
|
789
789
|
* // AacSettings: { // AacSettings
|
|
790
790
|
* // AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
791
791
|
* // Bitrate: Number("int"),
|
|
792
|
-
* // CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
792
|
+
* // CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
793
793
|
* // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
794
|
+
* // LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
795
|
+
* // RapInterval: Number("int"),
|
|
794
796
|
* // RateControlMode: "CBR" || "VBR",
|
|
795
797
|
* // RawFormat: "LATM_LOAS" || "NONE",
|
|
796
798
|
* // SampleRate: Number("int"),
|
|
797
799
|
* // Specification: "MPEG2" || "MPEG4",
|
|
800
|
+
* // TargetLoudnessRange: Number("int"),
|
|
798
801
|
* // VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
799
802
|
* // },
|
|
800
803
|
* // Ac3Settings: { // Ac3Settings
|
|
@@ -78,12 +78,15 @@ declare const ListPresetsCommand_base: {
|
|
|
78
78
|
* // AacSettings: { // AacSettings
|
|
79
79
|
* // AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
80
80
|
* // Bitrate: Number("int"),
|
|
81
|
-
* // CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
81
|
+
* // CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
82
82
|
* // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
83
|
+
* // LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
84
|
+
* // RapInterval: Number("int"),
|
|
83
85
|
* // RateControlMode: "CBR" || "VBR",
|
|
84
86
|
* // RawFormat: "LATM_LOAS" || "NONE",
|
|
85
87
|
* // SampleRate: Number("int"),
|
|
86
88
|
* // Specification: "MPEG2" || "MPEG4",
|
|
89
|
+
* // TargetLoudnessRange: Number("int"),
|
|
87
90
|
* // VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
88
91
|
* // },
|
|
89
92
|
* // Ac3Settings: { // Ac3Settings
|
|
@@ -48,7 +48,7 @@ declare const ProbeCommand_base: {
|
|
|
48
48
|
* // { // ProbeResult
|
|
49
49
|
* // Container: { // Container
|
|
50
50
|
* // Duration: Number("double"),
|
|
51
|
-
* // Format: "mp4" || "quicktime" || "matroska" || "webm",
|
|
51
|
+
* // Format: "mp4" || "quicktime" || "matroska" || "webm" || "mxf",
|
|
52
52
|
* // Tracks: [ // __listOfTrack
|
|
53
53
|
* // { // Track
|
|
54
54
|
* // AudioProperties: { // AudioProperties
|
|
@@ -62,7 +62,7 @@ declare const ProbeCommand_base: {
|
|
|
62
62
|
* // LanguageCode: "STRING_VALUE",
|
|
63
63
|
* // SampleRate: Number("int"),
|
|
64
64
|
* // },
|
|
65
|
-
* // Codec: "UNKNOWN" || "AAC" || "AC3" || "EAC3" || "FLAC" || "MP3" || "OPUS" || "PCM" || "VORBIS" || "AV1" || "AVC" || "HEVC" || "MJPEG" || "MP4V" || "MPEG2" || "PRORES" || "THEORA" || "VP8" || "VP9" || "C608" || "C708" || "WEBVTT",
|
|
65
|
+
* // Codec: "UNKNOWN" || "AAC" || "AC3" || "EAC3" || "FLAC" || "MP3" || "OPUS" || "PCM" || "VORBIS" || "AV1" || "AVC" || "HEVC" || "JPEG2000" || "MJPEG" || "MP4V" || "MPEG2" || "PRORES" || "THEORA" || "VP8" || "VP9" || "C608" || "C708" || "WEBVTT",
|
|
66
66
|
* // DataProperties: { // DataProperties
|
|
67
67
|
* // LanguageCode: "STRING_VALUE",
|
|
68
68
|
* // },
|
|
@@ -790,12 +790,15 @@ declare const SearchJobsCommand_base: {
|
|
|
790
790
|
* // AacSettings: { // AacSettings
|
|
791
791
|
* // AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
792
792
|
* // Bitrate: Number("int"),
|
|
793
|
-
* // CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
793
|
+
* // CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
794
794
|
* // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
795
|
+
* // LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
796
|
+
* // RapInterval: Number("int"),
|
|
795
797
|
* // RateControlMode: "CBR" || "VBR",
|
|
796
798
|
* // RawFormat: "LATM_LOAS" || "NONE",
|
|
797
799
|
* // SampleRate: Number("int"),
|
|
798
800
|
* // Specification: "MPEG2" || "MPEG4",
|
|
801
|
+
* // TargetLoudnessRange: Number("int"),
|
|
799
802
|
* // VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
800
803
|
* // },
|
|
801
804
|
* // Ac3Settings: { // Ac3Settings
|
|
@@ -721,12 +721,15 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
721
721
|
* AacSettings: { // AacSettings
|
|
722
722
|
* AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
723
723
|
* Bitrate: Number("int"),
|
|
724
|
-
* CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
724
|
+
* CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
725
725
|
* CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
726
|
+
* LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
727
|
+
* RapInterval: Number("int"),
|
|
726
728
|
* RateControlMode: "CBR" || "VBR",
|
|
727
729
|
* RawFormat: "LATM_LOAS" || "NONE",
|
|
728
730
|
* SampleRate: Number("int"),
|
|
729
731
|
* Specification: "MPEG2" || "MPEG4",
|
|
732
|
+
* TargetLoudnessRange: Number("int"),
|
|
730
733
|
* VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
731
734
|
* },
|
|
732
735
|
* Ac3Settings: { // Ac3Settings
|
|
@@ -2265,12 +2268,15 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
2265
2268
|
* // AacSettings: { // AacSettings
|
|
2266
2269
|
* // AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
2267
2270
|
* // Bitrate: Number("int"),
|
|
2268
|
-
* // CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
2271
|
+
* // CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
2269
2272
|
* // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
2273
|
+
* // LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
2274
|
+
* // RapInterval: Number("int"),
|
|
2270
2275
|
* // RateControlMode: "CBR" || "VBR",
|
|
2271
2276
|
* // RawFormat: "LATM_LOAS" || "NONE",
|
|
2272
2277
|
* // SampleRate: Number("int"),
|
|
2273
2278
|
* // Specification: "MPEG2" || "MPEG4",
|
|
2279
|
+
* // TargetLoudnessRange: Number("int"),
|
|
2274
2280
|
* // VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
2275
2281
|
* // },
|
|
2276
2282
|
* // Ac3Settings: { // Ac3Settings
|
|
@@ -63,12 +63,15 @@ declare const UpdatePresetCommand_base: {
|
|
|
63
63
|
* AacSettings: { // AacSettings
|
|
64
64
|
* AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
65
65
|
* Bitrate: Number("int"),
|
|
66
|
-
* CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
66
|
+
* CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
67
67
|
* CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
68
|
+
* LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
69
|
+
* RapInterval: Number("int"),
|
|
68
70
|
* RateControlMode: "CBR" || "VBR",
|
|
69
71
|
* RawFormat: "LATM_LOAS" || "NONE",
|
|
70
72
|
* SampleRate: Number("int"),
|
|
71
73
|
* Specification: "MPEG2" || "MPEG4",
|
|
74
|
+
* TargetLoudnessRange: Number("int"),
|
|
72
75
|
* VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
73
76
|
* },
|
|
74
77
|
* Ac3Settings: { // Ac3Settings
|
|
@@ -917,12 +920,15 @@ declare const UpdatePresetCommand_base: {
|
|
|
917
920
|
* // AacSettings: { // AacSettings
|
|
918
921
|
* // AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
919
922
|
* // Bitrate: Number("int"),
|
|
920
|
-
* // CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
923
|
+
* // CodecProfile: "LC" || "HEV1" || "HEV2" || "XHE",
|
|
921
924
|
* // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
925
|
+
* // LoudnessMeasurementMode: "PROGRAM" || "ANCHOR",
|
|
926
|
+
* // RapInterval: Number("int"),
|
|
922
927
|
* // RateControlMode: "CBR" || "VBR",
|
|
923
928
|
* // RawFormat: "LATM_LOAS" || "NONE",
|
|
924
929
|
* // SampleRate: Number("int"),
|
|
925
930
|
* // Specification: "MPEG2" || "MPEG4",
|
|
931
|
+
* // TargetLoudnessRange: Number("int"),
|
|
926
932
|
* // VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
927
933
|
* // },
|
|
928
934
|
* // Ac3Settings: { // Ac3Settings
|
|
@@ -208,6 +208,7 @@ export declare const AacCodecProfile: {
|
|
|
208
208
|
readonly HEV1: "HEV1";
|
|
209
209
|
readonly HEV2: "HEV2";
|
|
210
210
|
readonly LC: "LC";
|
|
211
|
+
readonly XHE: "XHE";
|
|
211
212
|
};
|
|
212
213
|
/**
|
|
213
214
|
* @public
|
|
@@ -228,6 +229,18 @@ export declare const AacCodingMode: {
|
|
|
228
229
|
* @public
|
|
229
230
|
*/
|
|
230
231
|
export type AacCodingMode = (typeof AacCodingMode)[keyof typeof AacCodingMode];
|
|
232
|
+
/**
|
|
233
|
+
* @public
|
|
234
|
+
* @enum
|
|
235
|
+
*/
|
|
236
|
+
export declare const AacLoudnessMeasurementMode: {
|
|
237
|
+
readonly ANCHOR: "ANCHOR";
|
|
238
|
+
readonly PROGRAM: "PROGRAM";
|
|
239
|
+
};
|
|
240
|
+
/**
|
|
241
|
+
* @public
|
|
242
|
+
*/
|
|
243
|
+
export type AacLoudnessMeasurementMode = (typeof AacLoudnessMeasurementMode)[keyof typeof AacLoudnessMeasurementMode];
|
|
231
244
|
/**
|
|
232
245
|
* @public
|
|
233
246
|
* @enum
|
|
@@ -303,6 +316,16 @@ export interface AacSettings {
|
|
|
303
316
|
* @public
|
|
304
317
|
*/
|
|
305
318
|
CodingMode?: AacCodingMode | undefined;
|
|
319
|
+
/**
|
|
320
|
+
* Choose the loudness measurement mode for your audio content. For music or advertisements: We recommend that you keep the default value, Program. For speech or other content: We recommend that you choose Anchor. When you do, MediaConvert optimizes the loudness of your output for clarify by applying speech gates.
|
|
321
|
+
* @public
|
|
322
|
+
*/
|
|
323
|
+
LoudnessMeasurementMode?: AacLoudnessMeasurementMode | undefined;
|
|
324
|
+
/**
|
|
325
|
+
* Specify the RAP (Random Access Point) interval for your xHE-AAC audio output. A RAP allows a decoder to decode audio data mid-stream, without the need to reference previous audio frames, and perform adaptive audio bitrate switching. To specify the RAP interval: Enter an integer from 2000 to 30000, in milliseconds. Smaller values allow for better seeking and more frequent stream switching, while large values improve compression efficiency. To have MediaConvert automatically determine the RAP interval: Leave blank.
|
|
326
|
+
* @public
|
|
327
|
+
*/
|
|
328
|
+
RapInterval?: number | undefined;
|
|
306
329
|
/**
|
|
307
330
|
* Specify the AAC rate control mode. For a constant bitrate: Choose CBR. Your AAC output bitrate will be equal to the value that you choose for Bitrate. For a variable bitrate: Choose VBR. Your AAC output bitrate will vary according to your audio content and the value that you choose for Bitrate quality.
|
|
308
331
|
* @public
|
|
@@ -323,6 +346,11 @@ export interface AacSettings {
|
|
|
323
346
|
* @public
|
|
324
347
|
*/
|
|
325
348
|
Specification?: AacSpecification | undefined;
|
|
349
|
+
/**
|
|
350
|
+
* Specify the xHE-AAC loudness target. Enter an integer from 6 to 16, representing "loudness units". For more information, see the following specification: Supplementary information for R 128 EBU Tech 3342-2023.
|
|
351
|
+
* @public
|
|
352
|
+
*/
|
|
353
|
+
TargetLoudnessRange?: number | undefined;
|
|
326
354
|
/**
|
|
327
355
|
* Specify the quality of your variable bitrate (VBR) AAC audio. For a list of approximate VBR bitrates, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/aac-support.html#aac_vbr
|
|
328
356
|
* @public
|
|
@@ -6500,19 +6528,3 @@ export interface HlsGroupSettings {
|
|
|
6500
6528
|
*/
|
|
6501
6529
|
TimestampDeltaMilliseconds?: number | undefined;
|
|
6502
6530
|
}
|
|
6503
|
-
/**
|
|
6504
|
-
* Specify the details for each additional Microsoft Smooth Streaming manifest that you want the service to generate for this output group. Each manifest can reference a different subset of outputs in the group.
|
|
6505
|
-
* @public
|
|
6506
|
-
*/
|
|
6507
|
-
export interface MsSmoothAdditionalManifest {
|
|
6508
|
-
/**
|
|
6509
|
-
* Specify a name modifier that the service adds to the name of this manifest to make it different from the file names of the other main manifests in the output group. For example, say that the default main manifest for your Microsoft Smooth group is film-name.ismv. If you enter "-no-premium" for this setting, then the file name the service generates for this top-level manifest is film-name-no-premium.ismv.
|
|
6510
|
-
* @public
|
|
6511
|
-
*/
|
|
6512
|
-
ManifestNameModifier?: string | undefined;
|
|
6513
|
-
/**
|
|
6514
|
-
* Specify the outputs that you want this additional top-level manifest to reference.
|
|
6515
|
-
* @public
|
|
6516
|
-
*/
|
|
6517
|
-
SelectedOutputs?: string[] | undefined;
|
|
6518
|
-
}
|
|
@@ -1,4 +1,20 @@
|
|
|
1
|
-
import { AudioDescription, AutomatedEncodingSettings, AvailBlanking, CaptionDescription, CmafGroupSettings, ColorConversion3DLUTSetting, DashIsoGroupSettings, DestinationSettings, EsamSettings, ExtendedDataServices, FileGroupSettings, FrameMetricType, Hdr10Metadata, HlsGroupSettings, Id3Insertion, ImageInserter, Input, KantarWatermarkSettings, MotionImageInserter,
|
|
1
|
+
import { AudioDescription, AutomatedEncodingSettings, AvailBlanking, CaptionDescription, CmafGroupSettings, ColorConversion3DLUTSetting, DashIsoGroupSettings, DestinationSettings, EsamSettings, ExtendedDataServices, FileGroupSettings, FrameMetricType, Hdr10Metadata, HlsGroupSettings, Id3Insertion, ImageInserter, Input, KantarWatermarkSettings, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, Rectangle, SpekeKeyProvider } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* Specify the details for each additional Microsoft Smooth Streaming manifest that you want the service to generate for this output group. Each manifest can reference a different subset of outputs in the group.
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface MsSmoothAdditionalManifest {
|
|
7
|
+
/**
|
|
8
|
+
* Specify a name modifier that the service adds to the name of this manifest to make it different from the file names of the other main manifests in the output group. For example, say that the default main manifest for your Microsoft Smooth group is film-name.ismv. If you enter "-no-premium" for this setting, then the file name the service generates for this top-level manifest is film-name-no-premium.ismv.
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
ManifestNameModifier?: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* Specify the outputs that you want this additional top-level manifest to reference.
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
SelectedOutputs?: string[] | undefined;
|
|
17
|
+
}
|
|
2
18
|
/**
|
|
3
19
|
* @public
|
|
4
20
|
* @enum
|
|
@@ -5107,7 +5123,7 @@ export interface VideoCodecSettings {
|
|
|
5107
5123
|
*/
|
|
5108
5124
|
AvcIntraSettings?: AvcIntraSettings | undefined;
|
|
5109
5125
|
/**
|
|
5110
|
-
* Specifies the video codec. This must be equal to one of the enum values defined by the object VideoCodec. To passthrough the video stream of your input
|
|
5126
|
+
* Specifies the video codec. This must be equal to one of the enum values defined by the object VideoCodec. To passthrough the video stream of your input without any video encoding: Choose Passthrough. More information about passthrough codec support and job settings requirements, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/video-passthrough-feature-restrictions.html
|
|
5111
5127
|
* @public
|
|
5112
5128
|
*/
|
|
5113
5129
|
Codec?: VideoCodec | undefined;
|
|
@@ -6114,18 +6130,3 @@ export declare const SimulateReservedQueue: {
|
|
|
6114
6130
|
* @public
|
|
6115
6131
|
*/
|
|
6116
6132
|
export type SimulateReservedQueue = (typeof SimulateReservedQueue)[keyof typeof SimulateReservedQueue];
|
|
6117
|
-
/**
|
|
6118
|
-
* @public
|
|
6119
|
-
* @enum
|
|
6120
|
-
*/
|
|
6121
|
-
export declare const JobStatus: {
|
|
6122
|
-
readonly CANCELED: "CANCELED";
|
|
6123
|
-
readonly COMPLETE: "COMPLETE";
|
|
6124
|
-
readonly ERROR: "ERROR";
|
|
6125
|
-
readonly PROGRESSING: "PROGRESSING";
|
|
6126
|
-
readonly SUBMITTED: "SUBMITTED";
|
|
6127
|
-
};
|
|
6128
|
-
/**
|
|
6129
|
-
* @public
|
|
6130
|
-
*/
|
|
6131
|
-
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
@@ -1,7 +1,22 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
|
|
3
3
|
import { AccelerationSettings, AccelerationStatus, AudioDescription, AvailBlanking, BillingTagsSource, CaptionDescriptionPreset, ColorConversion3DLUTSetting, Endpoint, EsamSettings, ExtendedDataServices, HopDestination, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, QueueTransition } from "./models_0";
|
|
4
|
-
import { ContainerSettings, JobSettings,
|
|
4
|
+
import { ContainerSettings, JobSettings, OutputGroup, SimulateReservedQueue, TimecodeConfig, TimedMetadataInsertion, VideoDescription } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
* @enum
|
|
8
|
+
*/
|
|
9
|
+
export declare const JobStatus: {
|
|
10
|
+
readonly CANCELED: "CANCELED";
|
|
11
|
+
readonly COMPLETE: "COMPLETE";
|
|
12
|
+
readonly ERROR: "ERROR";
|
|
13
|
+
readonly PROGRESSING: "PROGRESSING";
|
|
14
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
5
20
|
/**
|
|
6
21
|
* @public
|
|
7
22
|
* @enum
|
|
@@ -480,6 +495,7 @@ export interface ProbeInputFile {
|
|
|
480
495
|
export declare const Format: {
|
|
481
496
|
readonly matroska: "matroska";
|
|
482
497
|
readonly mp4: "mp4";
|
|
498
|
+
readonly mxf: "mxf";
|
|
483
499
|
readonly quicktime: "quicktime";
|
|
484
500
|
readonly webm: "webm";
|
|
485
501
|
};
|
|
@@ -553,6 +569,7 @@ export declare const Codec: {
|
|
|
553
569
|
readonly EAC3: "EAC3";
|
|
554
570
|
readonly FLAC: "FLAC";
|
|
555
571
|
readonly HEVC: "HEVC";
|
|
572
|
+
readonly JPEG2000: "JPEG2000";
|
|
556
573
|
readonly MJPEG: "MJPEG";
|
|
557
574
|
readonly MP3: "MP3";
|
|
558
575
|
readonly MP4V: "MP4V";
|
|
@@ -776,7 +793,7 @@ export interface Container {
|
|
|
776
793
|
*/
|
|
777
794
|
Duration?: number | undefined;
|
|
778
795
|
/**
|
|
779
|
-
* The format of your media file. For example: MP4, QuickTime (MOV), Matroska (MKV), or
|
|
796
|
+
* The format of your media file. For example: MP4, QuickTime (MOV), Matroska (MKV), WebM or MXF. Note that this will be blank if your media file has a format that the MediaConvert Probe operation does not recognize.
|
|
780
797
|
* @public
|
|
781
798
|
*/
|
|
782
799
|
Format?: Format | undefined;
|
|
@@ -95,6 +95,7 @@ export declare const AacCodecProfile: {
|
|
|
95
95
|
readonly HEV1: "HEV1";
|
|
96
96
|
readonly HEV2: "HEV2";
|
|
97
97
|
readonly LC: "LC";
|
|
98
|
+
readonly XHE: "XHE";
|
|
98
99
|
};
|
|
99
100
|
export type AacCodecProfile =
|
|
100
101
|
(typeof AacCodecProfile)[keyof typeof AacCodecProfile];
|
|
@@ -106,6 +107,12 @@ export declare const AacCodingMode: {
|
|
|
106
107
|
readonly CODING_MODE_5_1: "CODING_MODE_5_1";
|
|
107
108
|
};
|
|
108
109
|
export type AacCodingMode = (typeof AacCodingMode)[keyof typeof AacCodingMode];
|
|
110
|
+
export declare const AacLoudnessMeasurementMode: {
|
|
111
|
+
readonly ANCHOR: "ANCHOR";
|
|
112
|
+
readonly PROGRAM: "PROGRAM";
|
|
113
|
+
};
|
|
114
|
+
export type AacLoudnessMeasurementMode =
|
|
115
|
+
(typeof AacLoudnessMeasurementMode)[keyof typeof AacLoudnessMeasurementMode];
|
|
109
116
|
export declare const AacRateControlMode: {
|
|
110
117
|
readonly CBR: "CBR";
|
|
111
118
|
readonly VBR: "VBR";
|
|
@@ -137,10 +144,13 @@ export interface AacSettings {
|
|
|
137
144
|
Bitrate?: number | undefined;
|
|
138
145
|
CodecProfile?: AacCodecProfile | undefined;
|
|
139
146
|
CodingMode?: AacCodingMode | undefined;
|
|
147
|
+
LoudnessMeasurementMode?: AacLoudnessMeasurementMode | undefined;
|
|
148
|
+
RapInterval?: number | undefined;
|
|
140
149
|
RateControlMode?: AacRateControlMode | undefined;
|
|
141
150
|
RawFormat?: AacRawFormat | undefined;
|
|
142
151
|
SampleRate?: number | undefined;
|
|
143
152
|
Specification?: AacSpecification | undefined;
|
|
153
|
+
TargetLoudnessRange?: number | undefined;
|
|
144
154
|
VbrQuality?: AacVbrQuality | undefined;
|
|
145
155
|
}
|
|
146
156
|
export declare const Ac3BitstreamMode: {
|
|
@@ -2395,7 +2405,3 @@ export interface HlsGroupSettings {
|
|
|
2395
2405
|
TimedMetadataId3Period?: number | undefined;
|
|
2396
2406
|
TimestampDeltaMilliseconds?: number | undefined;
|
|
2397
2407
|
}
|
|
2398
|
-
export interface MsSmoothAdditionalManifest {
|
|
2399
|
-
ManifestNameModifier?: string | undefined;
|
|
2400
|
-
SelectedOutputs?: string[] | undefined;
|
|
2401
|
-
}
|
|
@@ -18,12 +18,15 @@ import {
|
|
|
18
18
|
Input,
|
|
19
19
|
KantarWatermarkSettings,
|
|
20
20
|
MotionImageInserter,
|
|
21
|
-
MsSmoothAdditionalManifest,
|
|
22
21
|
NielsenConfiguration,
|
|
23
22
|
NielsenNonLinearWatermarkSettings,
|
|
24
23
|
Rectangle,
|
|
25
24
|
SpekeKeyProvider,
|
|
26
25
|
} from "./models_0";
|
|
26
|
+
export interface MsSmoothAdditionalManifest {
|
|
27
|
+
ManifestNameModifier?: string | undefined;
|
|
28
|
+
SelectedOutputs?: string[] | undefined;
|
|
29
|
+
}
|
|
27
30
|
export declare const MsSmoothAudioDeduplication: {
|
|
28
31
|
readonly COMBINE_DUPLICATE_STREAMS: "COMBINE_DUPLICATE_STREAMS";
|
|
29
32
|
readonly NONE: "NONE";
|
|
@@ -2288,11 +2291,3 @@ export declare const SimulateReservedQueue: {
|
|
|
2288
2291
|
};
|
|
2289
2292
|
export type SimulateReservedQueue =
|
|
2290
2293
|
(typeof SimulateReservedQueue)[keyof typeof SimulateReservedQueue];
|
|
2291
|
-
export declare const JobStatus: {
|
|
2292
|
-
readonly CANCELED: "CANCELED";
|
|
2293
|
-
readonly COMPLETE: "COMPLETE";
|
|
2294
|
-
readonly ERROR: "ERROR";
|
|
2295
|
-
readonly PROGRESSING: "PROGRESSING";
|
|
2296
|
-
readonly SUBMITTED: "SUBMITTED";
|
|
2297
|
-
};
|
|
2298
|
-
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
@@ -25,13 +25,20 @@ import {
|
|
|
25
25
|
import {
|
|
26
26
|
ContainerSettings,
|
|
27
27
|
JobSettings,
|
|
28
|
-
JobStatus,
|
|
29
28
|
OutputGroup,
|
|
30
29
|
SimulateReservedQueue,
|
|
31
30
|
TimecodeConfig,
|
|
32
31
|
TimedMetadataInsertion,
|
|
33
32
|
VideoDescription,
|
|
34
33
|
} from "./models_1";
|
|
34
|
+
export declare const JobStatus: {
|
|
35
|
+
readonly CANCELED: "CANCELED";
|
|
36
|
+
readonly COMPLETE: "COMPLETE";
|
|
37
|
+
readonly ERROR: "ERROR";
|
|
38
|
+
readonly PROGRESSING: "PROGRESSING";
|
|
39
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
40
|
+
};
|
|
41
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
35
42
|
export declare const StatusUpdateInterval: {
|
|
36
43
|
readonly SECONDS_10: "SECONDS_10";
|
|
37
44
|
readonly SECONDS_12: "SECONDS_12";
|
|
@@ -153,6 +160,7 @@ export interface ProbeInputFile {
|
|
|
153
160
|
export declare const Format: {
|
|
154
161
|
readonly matroska: "matroska";
|
|
155
162
|
readonly mp4: "mp4";
|
|
163
|
+
readonly mxf: "mxf";
|
|
156
164
|
readonly quicktime: "quicktime";
|
|
157
165
|
readonly webm: "webm";
|
|
158
166
|
};
|
|
@@ -179,6 +187,7 @@ export declare const Codec: {
|
|
|
179
187
|
readonly EAC3: "EAC3";
|
|
180
188
|
readonly FLAC: "FLAC";
|
|
181
189
|
readonly HEVC: "HEVC";
|
|
190
|
+
readonly JPEG2000: "JPEG2000";
|
|
182
191
|
readonly MJPEG: "MJPEG";
|
|
183
192
|
readonly MP3: "MP3";
|
|
184
193
|
readonly MP4V: "MP4V";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediaconvert",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediaconvert Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.848.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-mediaconvert",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.846.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.848.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.840.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.848.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.840.0",
|
|
30
30
|
"@aws-sdk/types": "3.840.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.848.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.840.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.848.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
35
|
"@smithy/core": "^3.7.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.1.0",
|