@aws-sdk/client-mediaconvert 3.758.0 → 3.759.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/README.md +8 -0
- package/dist-cjs/index.js +254 -0
- package/dist-es/MediaConvert.js +2 -0
- package/dist-es/commands/ProbeCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_2.js +94 -0
- package/dist-es/protocols/Aws_restJson1.js +137 -1
- package/dist-types/MediaConvert.d.ts +8 -0
- package/dist-types/MediaConvertClient.d.ts +3 -2
- package/dist-types/commands/ProbeCommand.d.ts +154 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_2.d.ts +412 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/MediaConvert.d.ts +15 -0
- package/dist-types/ts3.4/MediaConvertClient.d.ts +3 -0
- package/dist-types/ts3.4/commands/ProbeCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_2.d.ts +167 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +1 -1
|
@@ -85,6 +85,167 @@ export interface Preset {
|
|
|
85
85
|
Settings: PresetSettings | undefined;
|
|
86
86
|
Type?: Type | undefined;
|
|
87
87
|
}
|
|
88
|
+
export interface ProbeInputFile {
|
|
89
|
+
FileUrl?: string | undefined;
|
|
90
|
+
}
|
|
91
|
+
export declare const Format: {
|
|
92
|
+
readonly matroska: "matroska";
|
|
93
|
+
readonly mp4: "mp4";
|
|
94
|
+
readonly quicktime: "quicktime";
|
|
95
|
+
readonly webm: "webm";
|
|
96
|
+
};
|
|
97
|
+
export type Format = (typeof Format)[keyof typeof Format];
|
|
98
|
+
export interface FrameRate {
|
|
99
|
+
Denominator?: number | undefined;
|
|
100
|
+
Numerator?: number | undefined;
|
|
101
|
+
}
|
|
102
|
+
export interface AudioProperties {
|
|
103
|
+
BitDepth?: number | undefined;
|
|
104
|
+
BitRate?: number | undefined;
|
|
105
|
+
Channels?: number | undefined;
|
|
106
|
+
FrameRate?: FrameRate | undefined;
|
|
107
|
+
LanguageCode?: string | undefined;
|
|
108
|
+
SampleRate?: number | undefined;
|
|
109
|
+
}
|
|
110
|
+
export declare const Codec: {
|
|
111
|
+
readonly AAC: "AAC";
|
|
112
|
+
readonly AC3: "AC3";
|
|
113
|
+
readonly AV1: "AV1";
|
|
114
|
+
readonly AVC: "AVC";
|
|
115
|
+
readonly C608: "C608";
|
|
116
|
+
readonly C708: "C708";
|
|
117
|
+
readonly EAC3: "EAC3";
|
|
118
|
+
readonly FLAC: "FLAC";
|
|
119
|
+
readonly HEVC: "HEVC";
|
|
120
|
+
readonly MJPEG: "MJPEG";
|
|
121
|
+
readonly MP3: "MP3";
|
|
122
|
+
readonly MP4V: "MP4V";
|
|
123
|
+
readonly MPEG2: "MPEG2";
|
|
124
|
+
readonly OPUS: "OPUS";
|
|
125
|
+
readonly PCM: "PCM";
|
|
126
|
+
readonly PRORES: "PRORES";
|
|
127
|
+
readonly THEORA: "THEORA";
|
|
128
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
129
|
+
readonly VORBIS: "VORBIS";
|
|
130
|
+
readonly VP8: "VP8";
|
|
131
|
+
readonly VP9: "VP9";
|
|
132
|
+
readonly WEBVTT: "WEBVTT";
|
|
133
|
+
};
|
|
134
|
+
export type Codec = (typeof Codec)[keyof typeof Codec];
|
|
135
|
+
export interface DataProperties {
|
|
136
|
+
LanguageCode?: string | undefined;
|
|
137
|
+
}
|
|
138
|
+
export declare const TrackType: {
|
|
139
|
+
readonly audio: "audio";
|
|
140
|
+
readonly data: "data";
|
|
141
|
+
readonly video: "video";
|
|
142
|
+
};
|
|
143
|
+
export type TrackType = (typeof TrackType)[keyof typeof TrackType];
|
|
144
|
+
export declare const ColorPrimaries: {
|
|
145
|
+
readonly EBU_3213_E: "EBU_3213_E";
|
|
146
|
+
readonly GENERIC_FILM: "GENERIC_FILM";
|
|
147
|
+
readonly IPT: "IPT";
|
|
148
|
+
readonly ITU_2020: "ITU_2020";
|
|
149
|
+
readonly ITU_470BG: "ITU_470BG";
|
|
150
|
+
readonly ITU_470M: "ITU_470M";
|
|
151
|
+
readonly ITU_709: "ITU_709";
|
|
152
|
+
readonly LAST: "LAST";
|
|
153
|
+
readonly RESERVED: "RESERVED";
|
|
154
|
+
readonly SMPTE_170M: "SMPTE_170M";
|
|
155
|
+
readonly SMPTE_2067XYZ: "SMPTE_2067XYZ";
|
|
156
|
+
readonly SMPTE_240M: "SMPTE_240M";
|
|
157
|
+
readonly SMPTE_428_1: "SMPTE_428_1";
|
|
158
|
+
readonly SMPTE_431_2: "SMPTE_431_2";
|
|
159
|
+
readonly SMPTE_EG_432_1: "SMPTE_EG_432_1";
|
|
160
|
+
readonly UNSPECIFIED: "UNSPECIFIED";
|
|
161
|
+
};
|
|
162
|
+
export type ColorPrimaries =
|
|
163
|
+
(typeof ColorPrimaries)[keyof typeof ColorPrimaries];
|
|
164
|
+
export declare const MatrixCoefficients: {
|
|
165
|
+
readonly CD_CL: "CD_CL";
|
|
166
|
+
readonly CD_NCL: "CD_NCL";
|
|
167
|
+
readonly EBU3213: "EBU3213";
|
|
168
|
+
readonly FCC: "FCC";
|
|
169
|
+
readonly IPT: "IPT";
|
|
170
|
+
readonly ITU_2020_CL: "ITU_2020_CL";
|
|
171
|
+
readonly ITU_2020_NCL: "ITU_2020_NCL";
|
|
172
|
+
readonly ITU_2100ICtCp: "ITU_2100ICtCp";
|
|
173
|
+
readonly ITU_470BG: "ITU_470BG";
|
|
174
|
+
readonly ITU_709: "ITU_709";
|
|
175
|
+
readonly LAST: "LAST";
|
|
176
|
+
readonly RESERVED: "RESERVED";
|
|
177
|
+
readonly RGB: "RGB";
|
|
178
|
+
readonly SMPTE_170M: "SMPTE_170M";
|
|
179
|
+
readonly SMPTE_2085: "SMPTE_2085";
|
|
180
|
+
readonly SMPTE_240M: "SMPTE_240M";
|
|
181
|
+
readonly UNSPECIFIED: "UNSPECIFIED";
|
|
182
|
+
readonly YCgCo: "YCgCo";
|
|
183
|
+
};
|
|
184
|
+
export type MatrixCoefficients =
|
|
185
|
+
(typeof MatrixCoefficients)[keyof typeof MatrixCoefficients];
|
|
186
|
+
export declare const TransferCharacteristics: {
|
|
187
|
+
readonly ARIB_B67: "ARIB_B67";
|
|
188
|
+
readonly IEC_61966_2_1: "IEC_61966_2_1";
|
|
189
|
+
readonly IEC_61966_2_4: "IEC_61966_2_4";
|
|
190
|
+
readonly ITU_1361: "ITU_1361";
|
|
191
|
+
readonly ITU_2020_10bit: "ITU_2020_10bit";
|
|
192
|
+
readonly ITU_2020_12bit: "ITU_2020_12bit";
|
|
193
|
+
readonly ITU_470BG: "ITU_470BG";
|
|
194
|
+
readonly ITU_470M: "ITU_470M";
|
|
195
|
+
readonly ITU_709: "ITU_709";
|
|
196
|
+
readonly LAST: "LAST";
|
|
197
|
+
readonly LINEAR: "LINEAR";
|
|
198
|
+
readonly LOC10_2_5: "LOC10_2_5";
|
|
199
|
+
readonly LOG10_2: "LOG10_2";
|
|
200
|
+
readonly RESERVED: "RESERVED";
|
|
201
|
+
readonly SMPTE_170M: "SMPTE_170M";
|
|
202
|
+
readonly SMPTE_2084: "SMPTE_2084";
|
|
203
|
+
readonly SMPTE_240M: "SMPTE_240M";
|
|
204
|
+
readonly SMPTE_428_1: "SMPTE_428_1";
|
|
205
|
+
readonly UNSPECIFIED: "UNSPECIFIED";
|
|
206
|
+
};
|
|
207
|
+
export type TransferCharacteristics =
|
|
208
|
+
(typeof TransferCharacteristics)[keyof typeof TransferCharacteristics];
|
|
209
|
+
export interface VideoProperties {
|
|
210
|
+
BitDepth?: number | undefined;
|
|
211
|
+
BitRate?: number | undefined;
|
|
212
|
+
ColorPrimaries?: ColorPrimaries | undefined;
|
|
213
|
+
FrameRate?: FrameRate | undefined;
|
|
214
|
+
Height?: number | undefined;
|
|
215
|
+
MatrixCoefficients?: MatrixCoefficients | undefined;
|
|
216
|
+
TransferCharacteristics?: TransferCharacteristics | undefined;
|
|
217
|
+
Width?: number | undefined;
|
|
218
|
+
}
|
|
219
|
+
export interface Track {
|
|
220
|
+
AudioProperties?: AudioProperties | undefined;
|
|
221
|
+
Codec?: Codec | undefined;
|
|
222
|
+
DataProperties?: DataProperties | undefined;
|
|
223
|
+
Duration?: number | undefined;
|
|
224
|
+
Index?: number | undefined;
|
|
225
|
+
TrackType?: TrackType | undefined;
|
|
226
|
+
VideoProperties?: VideoProperties | undefined;
|
|
227
|
+
}
|
|
228
|
+
export interface Container {
|
|
229
|
+
Duration?: number | undefined;
|
|
230
|
+
Format?: Format | undefined;
|
|
231
|
+
Tracks?: Track[] | undefined;
|
|
232
|
+
}
|
|
233
|
+
export interface Metadata {
|
|
234
|
+
ETag?: string | undefined;
|
|
235
|
+
FileSize?: number | undefined;
|
|
236
|
+
LastModified?: Date | undefined;
|
|
237
|
+
MimeType?: string | undefined;
|
|
238
|
+
}
|
|
239
|
+
export interface TrackMapping {
|
|
240
|
+
AudioTrackIndexes?: number[] | undefined;
|
|
241
|
+
DataTrackIndexes?: number[] | undefined;
|
|
242
|
+
VideoTrackIndexes?: number[] | undefined;
|
|
243
|
+
}
|
|
244
|
+
export interface ProbeResult {
|
|
245
|
+
Container?: Container | undefined;
|
|
246
|
+
Metadata?: Metadata | undefined;
|
|
247
|
+
TrackMappings?: TrackMapping[] | undefined;
|
|
248
|
+
}
|
|
88
249
|
export declare const PricingPlan: {
|
|
89
250
|
readonly ON_DEMAND: "ON_DEMAND";
|
|
90
251
|
readonly RESERVED: "RESERVED";
|
|
@@ -407,6 +568,12 @@ export interface ListVersionsResponse {
|
|
|
407
568
|
NextToken?: string | undefined;
|
|
408
569
|
Versions?: JobEngineVersion[] | undefined;
|
|
409
570
|
}
|
|
571
|
+
export interface ProbeRequest {
|
|
572
|
+
InputFiles?: ProbeInputFile[] | undefined;
|
|
573
|
+
}
|
|
574
|
+
export interface ProbeResponse {
|
|
575
|
+
ProbeResults?: ProbeResult[] | undefined;
|
|
576
|
+
}
|
|
410
577
|
export interface PutPolicyRequest {
|
|
411
578
|
Policy: Policy | undefined;
|
|
412
579
|
}
|
|
@@ -95,6 +95,10 @@ import {
|
|
|
95
95
|
ListVersionsCommandInput,
|
|
96
96
|
ListVersionsCommandOutput,
|
|
97
97
|
} from "../commands/ListVersionsCommand";
|
|
98
|
+
import {
|
|
99
|
+
ProbeCommandInput,
|
|
100
|
+
ProbeCommandOutput,
|
|
101
|
+
} from "../commands/ProbeCommand";
|
|
98
102
|
import {
|
|
99
103
|
PutPolicyCommandInput,
|
|
100
104
|
PutPolicyCommandOutput,
|
|
@@ -215,6 +219,10 @@ export declare const se_ListVersionsCommand: (
|
|
|
215
219
|
input: ListVersionsCommandInput,
|
|
216
220
|
context: __SerdeContext
|
|
217
221
|
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const se_ProbeCommand: (
|
|
223
|
+
input: ProbeCommandInput,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<__HttpRequest>;
|
|
218
226
|
export declare const se_PutPolicyCommand: (
|
|
219
227
|
input: PutPolicyCommandInput,
|
|
220
228
|
context: __SerdeContext
|
|
@@ -335,6 +343,10 @@ export declare const de_ListVersionsCommand: (
|
|
|
335
343
|
output: __HttpResponse,
|
|
336
344
|
context: __SerdeContext
|
|
337
345
|
) => Promise<ListVersionsCommandOutput>;
|
|
346
|
+
export declare const de_ProbeCommand: (
|
|
347
|
+
output: __HttpResponse,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<ProbeCommandOutput>;
|
|
338
350
|
export declare const de_PutPolicyCommand: (
|
|
339
351
|
output: __HttpResponse,
|
|
340
352
|
context: __SerdeContext
|
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.759.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",
|