@aws-sdk/client-mediaconvert 3.716.0 → 3.721.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 +13 -5
- package/dist-es/models/models_1.js +4 -3
- package/dist-es/models/models_2.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/CreateJobCommand.d.ts +2 -0
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +2 -0
- package/dist-types/commands/CreatePresetCommand.d.ts +2 -0
- package/dist-types/commands/GetJobCommand.d.ts +1 -0
- package/dist-types/commands/GetJobTemplateCommand.d.ts +1 -0
- package/dist-types/commands/GetPresetCommand.d.ts +1 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +1 -0
- package/dist-types/commands/ListJobsCommand.d.ts +1 -0
- package/dist-types/commands/ListPresetsCommand.d.ts +1 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +2 -0
- package/dist-types/commands/UpdatePresetCommand.d.ts +2 -0
- package/dist-types/models/models_1.d.ts +19 -13
- package/dist-types/models/models_2.d.ts +12 -1
- package/dist-types/ts3.4/models/models_1.d.ts +7 -4
- package/dist-types/ts3.4/models/models_2.d.ts +4 -1
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -234,6 +234,7 @@ __export(src_exports, {
|
|
|
234
234
|
H264Telecine: () => H264Telecine,
|
|
235
235
|
H264TemporalAdaptiveQuantization: () => H264TemporalAdaptiveQuantization,
|
|
236
236
|
H264UnregisteredSeiTimecode: () => H264UnregisteredSeiTimecode,
|
|
237
|
+
H264WriteMp4PackagingType: () => H264WriteMp4PackagingType,
|
|
237
238
|
H265AdaptiveQuantization: () => H265AdaptiveQuantization,
|
|
238
239
|
H265AlternateTransferFunctionSei: () => H265AlternateTransferFunctionSei,
|
|
239
240
|
H265CodecLevel: () => H265CodecLevel,
|
|
@@ -666,6 +667,9 @@ __name(_MediaConvertServiceException, "MediaConvertServiceException");
|
|
|
666
667
|
var MediaConvertServiceException = _MediaConvertServiceException;
|
|
667
668
|
|
|
668
669
|
// src/models/models_2.ts
|
|
670
|
+
var Commitment = {
|
|
671
|
+
ONE_YEAR: "ONE_YEAR"
|
|
672
|
+
};
|
|
669
673
|
var RenewalType = {
|
|
670
674
|
AUTO_RENEW: "AUTO_RENEW",
|
|
671
675
|
EXPIRE: "EXPIRE"
|
|
@@ -2646,7 +2650,8 @@ var se_H264Settings = /* @__PURE__ */ __name((input, context) => {
|
|
|
2646
2650
|
syntax: [, , `Syntax`],
|
|
2647
2651
|
telecine: [, , `Telecine`],
|
|
2648
2652
|
temporalAdaptiveQuantization: [, , `TemporalAdaptiveQuantization`],
|
|
2649
|
-
unregisteredSeiTimecode: [, , `UnregisteredSeiTimecode`]
|
|
2653
|
+
unregisteredSeiTimecode: [, , `UnregisteredSeiTimecode`],
|
|
2654
|
+
writeMp4PackagingType: [, , `WriteMp4PackagingType`]
|
|
2650
2655
|
});
|
|
2651
2656
|
}, "se_H264Settings");
|
|
2652
2657
|
var se_H265QvbrSettings = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -4776,7 +4781,8 @@ var de_H264Settings = /* @__PURE__ */ __name((output, context) => {
|
|
|
4776
4781
|
Syntax: [, import_smithy_client.expectString, `syntax`],
|
|
4777
4782
|
Telecine: [, import_smithy_client.expectString, `telecine`],
|
|
4778
4783
|
TemporalAdaptiveQuantization: [, import_smithy_client.expectString, `temporalAdaptiveQuantization`],
|
|
4779
|
-
UnregisteredSeiTimecode: [, import_smithy_client.expectString, `unregisteredSeiTimecode`]
|
|
4784
|
+
UnregisteredSeiTimecode: [, import_smithy_client.expectString, `unregisteredSeiTimecode`],
|
|
4785
|
+
WriteMp4PackagingType: [, import_smithy_client.expectString, `writeMp4PackagingType`]
|
|
4780
4786
|
});
|
|
4781
4787
|
}, "de_H264Settings");
|
|
4782
4788
|
var de_H265QvbrSettings = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -8246,6 +8252,10 @@ var H264UnregisteredSeiTimecode = {
|
|
|
8246
8252
|
DISABLED: "DISABLED",
|
|
8247
8253
|
ENABLED: "ENABLED"
|
|
8248
8254
|
};
|
|
8255
|
+
var H264WriteMp4PackagingType = {
|
|
8256
|
+
AVC1: "AVC1",
|
|
8257
|
+
AVC3: "AVC3"
|
|
8258
|
+
};
|
|
8249
8259
|
var H265AdaptiveQuantization = {
|
|
8250
8260
|
AUTO: "AUTO",
|
|
8251
8261
|
HIGH: "HIGH",
|
|
@@ -8871,9 +8881,6 @@ var PricingPlan = {
|
|
|
8871
8881
|
ON_DEMAND: "ON_DEMAND",
|
|
8872
8882
|
RESERVED: "RESERVED"
|
|
8873
8883
|
};
|
|
8874
|
-
var Commitment = {
|
|
8875
|
-
ONE_YEAR: "ONE_YEAR"
|
|
8876
|
-
};
|
|
8877
8884
|
// Annotate the CommonJS export names for ESM import in node:
|
|
8878
8885
|
|
|
8879
8886
|
0 && (module.exports = {
|
|
@@ -9214,6 +9221,7 @@ var Commitment = {
|
|
|
9214
9221
|
H264Telecine,
|
|
9215
9222
|
H264TemporalAdaptiveQuantization,
|
|
9216
9223
|
H264UnregisteredSeiTimecode,
|
|
9224
|
+
H264WriteMp4PackagingType,
|
|
9217
9225
|
H265AdaptiveQuantization,
|
|
9218
9226
|
H265AlternateTransferFunctionSei,
|
|
9219
9227
|
H265CodecLevel,
|
|
@@ -514,6 +514,10 @@ export const H264UnregisteredSeiTimecode = {
|
|
|
514
514
|
DISABLED: "DISABLED",
|
|
515
515
|
ENABLED: "ENABLED",
|
|
516
516
|
};
|
|
517
|
+
export const H264WriteMp4PackagingType = {
|
|
518
|
+
AVC1: "AVC1",
|
|
519
|
+
AVC3: "AVC3",
|
|
520
|
+
};
|
|
517
521
|
export const H265AdaptiveQuantization = {
|
|
518
522
|
AUTO: "AUTO",
|
|
519
523
|
HIGH: "HIGH",
|
|
@@ -1139,6 +1143,3 @@ export const PricingPlan = {
|
|
|
1139
1143
|
ON_DEMAND: "ON_DEMAND",
|
|
1140
1144
|
RESERVED: "RESERVED",
|
|
1141
1145
|
};
|
|
1142
|
-
export const Commitment = {
|
|
1143
|
-
ONE_YEAR: "ONE_YEAR",
|
|
1144
|
-
};
|
|
@@ -1863,6 +1863,7 @@ const se_H264Settings = (input, context) => {
|
|
|
1863
1863
|
telecine: [, , `Telecine`],
|
|
1864
1864
|
temporalAdaptiveQuantization: [, , `TemporalAdaptiveQuantization`],
|
|
1865
1865
|
unregisteredSeiTimecode: [, , `UnregisteredSeiTimecode`],
|
|
1866
|
+
writeMp4PackagingType: [, , `WriteMp4PackagingType`],
|
|
1866
1867
|
});
|
|
1867
1868
|
};
|
|
1868
1869
|
const se_H265QvbrSettings = (input, context) => {
|
|
@@ -4065,6 +4066,7 @@ const de_H264Settings = (output, context) => {
|
|
|
4065
4066
|
Telecine: [, __expectString, `telecine`],
|
|
4066
4067
|
TemporalAdaptiveQuantization: [, __expectString, `temporalAdaptiveQuantization`],
|
|
4067
4068
|
UnregisteredSeiTimecode: [, __expectString, `unregisteredSeiTimecode`],
|
|
4069
|
+
WriteMp4PackagingType: [, __expectString, `writeMp4PackagingType`],
|
|
4068
4070
|
});
|
|
4069
4071
|
};
|
|
4070
4072
|
const de_H265QvbrSettings = (output, context) => {
|
|
@@ -1198,6 +1198,7 @@ declare const CreateJobCommand_base: {
|
|
|
1198
1198
|
* Telecine: "NONE" || "SOFT" || "HARD",
|
|
1199
1199
|
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1200
1200
|
* UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
1201
|
+
* WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
1201
1202
|
* },
|
|
1202
1203
|
* H265Settings: { // H265Settings
|
|
1203
1204
|
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -2753,6 +2754,7 @@ declare const CreateJobCommand_base: {
|
|
|
2753
2754
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
2754
2755
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2755
2756
|
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
2757
|
+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
2756
2758
|
* // },
|
|
2757
2759
|
* // H265Settings: { // H265Settings
|
|
2758
2760
|
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -1179,6 +1179,7 @@ declare const CreateJobTemplateCommand_base: {
|
|
|
1179
1179
|
* Telecine: "NONE" || "SOFT" || "HARD",
|
|
1180
1180
|
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1181
1181
|
* UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
1182
|
+
* WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
1182
1183
|
* },
|
|
1183
1184
|
* H265Settings: { // H265Settings
|
|
1184
1185
|
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -2676,6 +2677,7 @@ declare const CreateJobTemplateCommand_base: {
|
|
|
2676
2677
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
2677
2678
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2678
2679
|
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
2680
|
+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
2679
2681
|
* // },
|
|
2680
2682
|
* // H265Settings: { // H265Settings
|
|
2681
2683
|
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -527,6 +527,7 @@ declare const CreatePresetCommand_base: {
|
|
|
527
527
|
* Telecine: "NONE" || "SOFT" || "HARD",
|
|
528
528
|
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
529
529
|
* UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
530
|
+
* WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
530
531
|
* },
|
|
531
532
|
* H265Settings: { // H265Settings
|
|
532
533
|
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -1353,6 +1354,7 @@ declare const CreatePresetCommand_base: {
|
|
|
1353
1354
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
1354
1355
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1355
1356
|
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
1357
|
+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
1356
1358
|
* // },
|
|
1357
1359
|
* // H265Settings: { // H265Settings
|
|
1358
1360
|
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -1242,6 +1242,7 @@ declare const GetJobCommand_base: {
|
|
|
1242
1242
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
1243
1243
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1244
1244
|
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
1245
|
+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
1245
1246
|
* // },
|
|
1246
1247
|
* // H265Settings: { // H265Settings
|
|
1247
1248
|
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -1188,6 +1188,7 @@ declare const GetJobTemplateCommand_base: {
|
|
|
1188
1188
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
1189
1189
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1190
1190
|
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
1191
|
+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
1191
1192
|
* // },
|
|
1192
1193
|
* // H265Settings: { // H265Settings
|
|
1193
1194
|
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -536,6 +536,7 @@ declare const GetPresetCommand_base: {
|
|
|
536
536
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
537
537
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
538
538
|
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
539
|
+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
539
540
|
* // },
|
|
540
541
|
* // H265Settings: { // H265Settings
|
|
541
542
|
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -1193,6 +1193,7 @@ declare const ListJobTemplatesCommand_base: {
|
|
|
1193
1193
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
1194
1194
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1195
1195
|
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
1196
|
+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
1196
1197
|
* // },
|
|
1197
1198
|
* // H265Settings: { // H265Settings
|
|
1198
1199
|
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -1247,6 +1247,7 @@ declare const ListJobsCommand_base: {
|
|
|
1247
1247
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
1248
1248
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1249
1249
|
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
1250
|
+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
1250
1251
|
* // },
|
|
1251
1252
|
* // H265Settings: { // H265Settings
|
|
1252
1253
|
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -542,6 +542,7 @@ declare const ListPresetsCommand_base: {
|
|
|
542
542
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
543
543
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
544
544
|
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
545
|
+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
545
546
|
* // },
|
|
546
547
|
* // H265Settings: { // H265Settings
|
|
547
548
|
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -1248,6 +1248,7 @@ declare const SearchJobsCommand_base: {
|
|
|
1248
1248
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
1249
1249
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1250
1250
|
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
1251
|
+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
1251
1252
|
* // },
|
|
1252
1253
|
* // H265Settings: { // H265Settings
|
|
1253
1254
|
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -1179,6 +1179,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
1179
1179
|
* Telecine: "NONE" || "SOFT" || "HARD",
|
|
1180
1180
|
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1181
1181
|
* UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
1182
|
+
* WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
1182
1183
|
* },
|
|
1183
1184
|
* H265Settings: { // H265Settings
|
|
1184
1185
|
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -2673,6 +2674,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
2673
2674
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
2674
2675
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2675
2676
|
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
2677
|
+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
2676
2678
|
* // },
|
|
2677
2679
|
* // H265Settings: { // H265Settings
|
|
2678
2680
|
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -527,6 +527,7 @@ declare const UpdatePresetCommand_base: {
|
|
|
527
527
|
* Telecine: "NONE" || "SOFT" || "HARD",
|
|
528
528
|
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
529
529
|
* UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
530
|
+
* WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
530
531
|
* },
|
|
531
532
|
* H265Settings: { // H265Settings
|
|
532
533
|
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -1350,6 +1351,7 @@ declare const UpdatePresetCommand_base: {
|
|
|
1350
1351
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
1351
1352
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1352
1353
|
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
1354
|
+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
|
|
1353
1355
|
* // },
|
|
1354
1356
|
* // H265Settings: { // H265Settings
|
|
1355
1357
|
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
@@ -2386,6 +2386,18 @@ export declare const H264UnregisteredSeiTimecode: {
|
|
|
2386
2386
|
* @public
|
|
2387
2387
|
*/
|
|
2388
2388
|
export type H264UnregisteredSeiTimecode = (typeof H264UnregisteredSeiTimecode)[keyof typeof H264UnregisteredSeiTimecode];
|
|
2389
|
+
/**
|
|
2390
|
+
* @public
|
|
2391
|
+
* @enum
|
|
2392
|
+
*/
|
|
2393
|
+
export declare const H264WriteMp4PackagingType: {
|
|
2394
|
+
readonly AVC1: "AVC1";
|
|
2395
|
+
readonly AVC3: "AVC3";
|
|
2396
|
+
};
|
|
2397
|
+
/**
|
|
2398
|
+
* @public
|
|
2399
|
+
*/
|
|
2400
|
+
export type H264WriteMp4PackagingType = (typeof H264WriteMp4PackagingType)[keyof typeof H264WriteMp4PackagingType];
|
|
2389
2401
|
/**
|
|
2390
2402
|
* Required when you set Codec to the value H_264.
|
|
2391
2403
|
* @public
|
|
@@ -2611,6 +2623,11 @@ export interface H264Settings {
|
|
|
2611
2623
|
* @public
|
|
2612
2624
|
*/
|
|
2613
2625
|
UnregisteredSeiTimecode?: H264UnregisteredSeiTimecode | undefined;
|
|
2626
|
+
/**
|
|
2627
|
+
* Specify how SPS and PPS NAL units are written in your output MP4 container, according to ISO/IEC 14496-15. If the location of these parameters doesn't matter in your workflow: Keep the default value, AVC1. MediaConvert writes SPS and PPS NAL units in the sample description ('stsd') box (but not into samples directly). To write SPS and PPS NAL units directly into samples (but not in the 'stsd' box): Choose AVC3. When you do, note that your output might not play properly with some downstream systems or players.
|
|
2628
|
+
* @public
|
|
2629
|
+
*/
|
|
2630
|
+
WriteMp4PackagingType?: H264WriteMp4PackagingType | undefined;
|
|
2614
2631
|
}
|
|
2615
2632
|
/**
|
|
2616
2633
|
* @public
|
|
@@ -5766,7 +5783,7 @@ export interface JobSettings {
|
|
|
5766
5783
|
*/
|
|
5767
5784
|
ExtendedDataServices?: ExtendedDataServices | undefined;
|
|
5768
5785
|
/**
|
|
5769
|
-
* Specify the input that MediaConvert references for your default output settings.
|
|
5786
|
+
* Specify the input that MediaConvert references for your default output settings. MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio for all outputs that you don't manually specify different output settings for. Enabling this setting will disable "Follow source" for all other inputs. If MediaConvert cannot follow your source, for example if you specify an audio-only input, MediaConvert uses the first followable input instead. In your JSON job specification, enter an integer from 1 to 150 corresponding to the order of your inputs.
|
|
5770
5787
|
* @public
|
|
5771
5788
|
*/
|
|
5772
5789
|
FollowSource?: number | undefined;
|
|
@@ -6098,7 +6115,7 @@ export interface JobTemplateSettings {
|
|
|
6098
6115
|
*/
|
|
6099
6116
|
ExtendedDataServices?: ExtendedDataServices | undefined;
|
|
6100
6117
|
/**
|
|
6101
|
-
* Specify the input that MediaConvert references for your default output settings.
|
|
6118
|
+
* Specify the input that MediaConvert references for your default output settings. MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio for all outputs that you don't manually specify different output settings for. Enabling this setting will disable "Follow source" for all other inputs. If MediaConvert cannot follow your source, for example if you specify an audio-only input, MediaConvert uses the first followable input instead. In your JSON job specification, enter an integer from 1 to 150 corresponding to the order of your inputs.
|
|
6102
6119
|
* @public
|
|
6103
6120
|
*/
|
|
6104
6121
|
FollowSource?: number | undefined;
|
|
@@ -6310,14 +6327,3 @@ export declare const PricingPlan: {
|
|
|
6310
6327
|
* @public
|
|
6311
6328
|
*/
|
|
6312
6329
|
export type PricingPlan = (typeof PricingPlan)[keyof typeof PricingPlan];
|
|
6313
|
-
/**
|
|
6314
|
-
* @public
|
|
6315
|
-
* @enum
|
|
6316
|
-
*/
|
|
6317
|
-
export declare const Commitment: {
|
|
6318
|
-
readonly ONE_YEAR: "ONE_YEAR";
|
|
6319
|
-
};
|
|
6320
|
-
/**
|
|
6321
|
-
* @public
|
|
6322
|
-
*/
|
|
6323
|
-
export type Commitment = (typeof Commitment)[keyof typeof Commitment];
|
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
|
|
3
3
|
import { AccelerationSettings, BillingTagsSource, Endpoint, HopDestination } from "./models_0";
|
|
4
|
-
import {
|
|
4
|
+
import { Job, JobEngineVersion, JobSettings, JobStatus, JobTemplate, JobTemplateSettings, Preset, PresetSettings, PricingPlan, SimulateReservedQueue, StatusUpdateInterval, Type } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
* @enum
|
|
8
|
+
*/
|
|
9
|
+
export declare const Commitment: {
|
|
10
|
+
readonly ONE_YEAR: "ONE_YEAR";
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
export type Commitment = (typeof Commitment)[keyof typeof Commitment];
|
|
5
16
|
/**
|
|
6
17
|
* @public
|
|
7
18
|
* @enum
|
|
@@ -964,6 +964,12 @@ export declare const H264UnregisteredSeiTimecode: {
|
|
|
964
964
|
};
|
|
965
965
|
export type H264UnregisteredSeiTimecode =
|
|
966
966
|
(typeof H264UnregisteredSeiTimecode)[keyof typeof H264UnregisteredSeiTimecode];
|
|
967
|
+
export declare const H264WriteMp4PackagingType: {
|
|
968
|
+
readonly AVC1: "AVC1";
|
|
969
|
+
readonly AVC3: "AVC3";
|
|
970
|
+
};
|
|
971
|
+
export type H264WriteMp4PackagingType =
|
|
972
|
+
(typeof H264WriteMp4PackagingType)[keyof typeof H264WriteMp4PackagingType];
|
|
967
973
|
export interface H264Settings {
|
|
968
974
|
AdaptiveQuantization?: H264AdaptiveQuantization | undefined;
|
|
969
975
|
BandwidthReductionFilter?: BandwidthReductionFilter | undefined;
|
|
@@ -1009,6 +1015,7 @@ export interface H264Settings {
|
|
|
1009
1015
|
Telecine?: H264Telecine | undefined;
|
|
1010
1016
|
TemporalAdaptiveQuantization?: H264TemporalAdaptiveQuantization | undefined;
|
|
1011
1017
|
UnregisteredSeiTimecode?: H264UnregisteredSeiTimecode | undefined;
|
|
1018
|
+
WriteMp4PackagingType?: H264WriteMp4PackagingType | undefined;
|
|
1012
1019
|
}
|
|
1013
1020
|
export declare const H265AdaptiveQuantization: {
|
|
1014
1021
|
readonly AUTO: "AUTO";
|
|
@@ -2318,7 +2325,3 @@ export declare const PricingPlan: {
|
|
|
2318
2325
|
readonly RESERVED: "RESERVED";
|
|
2319
2326
|
};
|
|
2320
2327
|
export type PricingPlan = (typeof PricingPlan)[keyof typeof PricingPlan];
|
|
2321
|
-
export declare const Commitment: {
|
|
2322
|
-
readonly ONE_YEAR: "ONE_YEAR";
|
|
2323
|
-
};
|
|
2324
|
-
export type Commitment = (typeof Commitment)[keyof typeof Commitment];
|
|
@@ -7,7 +7,6 @@ import {
|
|
|
7
7
|
HopDestination,
|
|
8
8
|
} from "./models_0";
|
|
9
9
|
import {
|
|
10
|
-
Commitment,
|
|
11
10
|
Job,
|
|
12
11
|
JobEngineVersion,
|
|
13
12
|
JobSettings,
|
|
@@ -21,6 +20,10 @@ import {
|
|
|
21
20
|
StatusUpdateInterval,
|
|
22
21
|
Type,
|
|
23
22
|
} from "./models_1";
|
|
23
|
+
export declare const Commitment: {
|
|
24
|
+
readonly ONE_YEAR: "ONE_YEAR";
|
|
25
|
+
};
|
|
26
|
+
export type Commitment = (typeof Commitment)[keyof typeof Commitment];
|
|
24
27
|
export declare const RenewalType: {
|
|
25
28
|
readonly AUTO_RENEW: "AUTO_RENEW";
|
|
26
29
|
readonly EXPIRE: "EXPIRE";
|
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.721.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",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.721.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.721.0",
|
|
25
25
|
"@aws-sdk/core": "3.716.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.721.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.714.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.714.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.714.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.721.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.714.0",
|
|
32
32
|
"@aws-sdk/types": "3.714.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.714.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.714.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.721.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.13",
|
|
37
37
|
"@smithy/core": "^2.5.5",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.1.2",
|