@aws-sdk/client-mediaconvert 3.734.0 → 3.738.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.
@@ -1388,6 +1388,19 @@ export declare const InputDenoiseFilter: {
1388
1388
  };
1389
1389
  export type InputDenoiseFilter =
1390
1390
  (typeof InputDenoiseFilter)[keyof typeof InputDenoiseFilter];
1391
+ export declare const DynamicAudioSelectorType: {
1392
+ readonly ALL_TRACKS: "ALL_TRACKS";
1393
+ readonly LANGUAGE_CODE: "LANGUAGE_CODE";
1394
+ };
1395
+ export type DynamicAudioSelectorType =
1396
+ (typeof DynamicAudioSelectorType)[keyof typeof DynamicAudioSelectorType];
1397
+ export interface DynamicAudioSelector {
1398
+ AudioDurationCorrection?: AudioDurationCorrection | undefined;
1399
+ ExternalAudioFileInput?: string | undefined;
1400
+ LanguageCode?: LanguageCode | undefined;
1401
+ Offset?: number | undefined;
1402
+ SelectorType?: DynamicAudioSelectorType | undefined;
1403
+ }
1391
1404
  export declare const InputFilterEnable: {
1392
1405
  readonly AUTO: "AUTO";
1393
1406
  readonly DISABLE: "DISABLE";
@@ -1558,6 +1571,7 @@ export interface Input {
1558
1571
  DecryptionSettings?: InputDecryptionSettings | undefined;
1559
1572
  DenoiseFilter?: InputDenoiseFilter | undefined;
1560
1573
  DolbyVisionMetadataXml?: string | undefined;
1574
+ DynamicAudioSelectors?: Record<string, DynamicAudioSelector> | undefined;
1561
1575
  FileInput?: string | undefined;
1562
1576
  FilterEnable?: InputFilterEnable | undefined;
1563
1577
  FilterStrength?: number | undefined;
@@ -1584,6 +1598,7 @@ export interface InputTemplate {
1584
1598
  DeblockFilter?: InputDeblockFilter | undefined;
1585
1599
  DenoiseFilter?: InputDenoiseFilter | undefined;
1586
1600
  DolbyVisionMetadataXml?: string | undefined;
1601
+ DynamicAudioSelectors?: Record<string, DynamicAudioSelector> | undefined;
1587
1602
  FilterEnable?: InputFilterEnable | undefined;
1588
1603
  FilterStrength?: number | undefined;
1589
1604
  ImageInserter?: ImageInserter | undefined;
@@ -2366,19 +2381,3 @@ export declare const MsSmoothFragmentLengthControl: {
2366
2381
  };
2367
2382
  export type MsSmoothFragmentLengthControl =
2368
2383
  (typeof MsSmoothFragmentLengthControl)[keyof typeof MsSmoothFragmentLengthControl];
2369
- export declare const MsSmoothManifestEncoding: {
2370
- readonly UTF16: "UTF16";
2371
- readonly UTF8: "UTF8";
2372
- };
2373
- export type MsSmoothManifestEncoding =
2374
- (typeof MsSmoothManifestEncoding)[keyof typeof MsSmoothManifestEncoding];
2375
- export interface MsSmoothGroupSettings {
2376
- AdditionalManifests?: MsSmoothAdditionalManifest[] | undefined;
2377
- AudioDeduplication?: MsSmoothAudioDeduplication | undefined;
2378
- Destination?: string | undefined;
2379
- DestinationSettings?: DestinationSettings | undefined;
2380
- Encryption?: MsSmoothEncryptionSettings | undefined;
2381
- FragmentLength?: number | undefined;
2382
- FragmentLengthControl?: MsSmoothFragmentLengthControl | undefined;
2383
- ManifestEncoding?: MsSmoothManifestEncoding | undefined;
2384
- }
@@ -6,10 +6,10 @@ import {
6
6
  AvailBlanking,
7
7
  BillingTagsSource,
8
8
  CaptionDescription,
9
- CaptionDescriptionPreset,
10
9
  CmafGroupSettings,
11
10
  ColorConversion3DLUTSetting,
12
11
  DashIsoGroupSettings,
12
+ DestinationSettings,
13
13
  EsamSettings,
14
14
  ExtendedDataServices,
15
15
  FileGroupSettings,
@@ -24,13 +24,32 @@ import {
24
24
  JobPhase,
25
25
  KantarWatermarkSettings,
26
26
  MotionImageInserter,
27
- MsSmoothGroupSettings,
27
+ MsSmoothAdditionalManifest,
28
+ MsSmoothAudioDeduplication,
29
+ MsSmoothEncryptionSettings,
30
+ MsSmoothFragmentLengthControl,
28
31
  NielsenConfiguration,
29
32
  NielsenNonLinearWatermarkSettings,
30
33
  OutputGroupDetail,
31
34
  QueueTransition,
32
35
  Rectangle,
33
36
  } from "./models_0";
37
+ export declare const MsSmoothManifestEncoding: {
38
+ readonly UTF16: "UTF16";
39
+ readonly UTF8: "UTF8";
40
+ };
41
+ export type MsSmoothManifestEncoding =
42
+ (typeof MsSmoothManifestEncoding)[keyof typeof MsSmoothManifestEncoding];
43
+ export interface MsSmoothGroupSettings {
44
+ AdditionalManifests?: MsSmoothAdditionalManifest[] | undefined;
45
+ AudioDeduplication?: MsSmoothAudioDeduplication | undefined;
46
+ Destination?: string | undefined;
47
+ DestinationSettings?: DestinationSettings | undefined;
48
+ Encryption?: MsSmoothEncryptionSettings | undefined;
49
+ FragmentLength?: number | undefined;
50
+ FragmentLengthControl?: MsSmoothFragmentLengthControl | undefined;
51
+ ManifestEncoding?: MsSmoothManifestEncoding | undefined;
52
+ }
34
53
  export declare const OutputGroupType: {
35
54
  readonly CMAF_GROUP_SETTINGS: "CMAF_GROUP_SETTINGS";
36
55
  readonly DASH_ISO_GROUP_SETTINGS: "DASH_ISO_GROUP_SETTINGS";
@@ -1064,6 +1083,12 @@ export declare const H265CodecProfile: {
1064
1083
  };
1065
1084
  export type H265CodecProfile =
1066
1085
  (typeof H265CodecProfile)[keyof typeof H265CodecProfile];
1086
+ export declare const H265Deblocking: {
1087
+ readonly DISABLED: "DISABLED";
1088
+ readonly ENABLED: "ENABLED";
1089
+ };
1090
+ export type H265Deblocking =
1091
+ (typeof H265Deblocking)[keyof typeof H265Deblocking];
1067
1092
  export declare const H265DynamicSubGop: {
1068
1093
  readonly ADAPTIVE: "ADAPTIVE";
1069
1094
  readonly STATIC: "STATIC";
@@ -1215,6 +1240,7 @@ export interface H265Settings {
1215
1240
  Bitrate?: number | undefined;
1216
1241
  CodecLevel?: H265CodecLevel | undefined;
1217
1242
  CodecProfile?: H265CodecProfile | undefined;
1243
+ Deblocking?: H265Deblocking | undefined;
1218
1244
  DynamicSubGop?: H265DynamicSubGop | undefined;
1219
1245
  EndOfStreamMarkers?: H265EndOfStreamMarkers | undefined;
1220
1246
  FlickerAdaptiveQuantization?: H265FlickerAdaptiveQuantization | undefined;
@@ -2304,24 +2330,3 @@ export interface JobTemplate {
2304
2330
  StatusUpdateInterval?: StatusUpdateInterval | undefined;
2305
2331
  Type?: Type | undefined;
2306
2332
  }
2307
- export interface PresetSettings {
2308
- AudioDescriptions?: AudioDescription[] | undefined;
2309
- CaptionDescriptions?: CaptionDescriptionPreset[] | undefined;
2310
- ContainerSettings?: ContainerSettings | undefined;
2311
- VideoDescription?: VideoDescription | undefined;
2312
- }
2313
- export interface Preset {
2314
- Arn?: string | undefined;
2315
- Category?: string | undefined;
2316
- CreatedAt?: Date | undefined;
2317
- Description?: string | undefined;
2318
- LastUpdated?: Date | undefined;
2319
- Name: string | undefined;
2320
- Settings: PresetSettings | undefined;
2321
- Type?: Type | undefined;
2322
- }
2323
- export declare const PricingPlan: {
2324
- readonly ON_DEMAND: "ON_DEMAND";
2325
- readonly RESERVED: "RESERVED";
2326
- };
2327
- export type PricingPlan = (typeof PricingPlan)[keyof typeof PricingPlan];
@@ -2,24 +2,46 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
2
2
  import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
3
3
  import {
4
4
  AccelerationSettings,
5
+ AudioDescription,
5
6
  BillingTagsSource,
7
+ CaptionDescriptionPreset,
6
8
  Endpoint,
7
9
  HopDestination,
8
10
  } from "./models_0";
9
11
  import {
12
+ ContainerSettings,
10
13
  Job,
11
14
  JobEngineVersion,
12
15
  JobSettings,
13
16
  JobStatus,
14
17
  JobTemplate,
15
18
  JobTemplateSettings,
16
- Preset,
17
- PresetSettings,
18
- PricingPlan,
19
19
  SimulateReservedQueue,
20
20
  StatusUpdateInterval,
21
21
  Type,
22
+ VideoDescription,
22
23
  } from "./models_1";
24
+ export interface PresetSettings {
25
+ AudioDescriptions?: AudioDescription[] | undefined;
26
+ CaptionDescriptions?: CaptionDescriptionPreset[] | undefined;
27
+ ContainerSettings?: ContainerSettings | undefined;
28
+ VideoDescription?: VideoDescription | undefined;
29
+ }
30
+ export interface Preset {
31
+ Arn?: string | undefined;
32
+ Category?: string | undefined;
33
+ CreatedAt?: Date | undefined;
34
+ Description?: string | undefined;
35
+ LastUpdated?: Date | undefined;
36
+ Name: string | undefined;
37
+ Settings: PresetSettings | undefined;
38
+ Type?: Type | undefined;
39
+ }
40
+ export declare const PricingPlan: {
41
+ readonly ON_DEMAND: "ON_DEMAND";
42
+ readonly RESERVED: "RESERVED";
43
+ };
44
+ export type PricingPlan = (typeof PricingPlan)[keyof typeof PricingPlan];
23
45
  export declare const Commitment: {
24
46
  readonly ONE_YEAR: "ONE_YEAR";
25
47
  };
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.734.0",
4
+ "version": "3.738.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,7 +21,7 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.734.0",
24
- "@aws-sdk/credential-provider-node": "3.734.0",
24
+ "@aws-sdk/credential-provider-node": "3.738.0",
25
25
  "@aws-sdk/middleware-host-header": "3.734.0",
26
26
  "@aws-sdk/middleware-logger": "3.734.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.734.0",