@aws-sdk/client-mediaconvert 3.930.0 → 3.932.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 +70 -11
- package/dist-es/models/models_1.js +12 -11
- package/dist-es/models/models_2.js +11 -0
- package/dist-es/schemas/schemas_0.js +47 -3
- package/dist-types/commands/CreateJobCommand.d.ts +14 -0
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +14 -0
- package/dist-types/commands/CreatePresetCommand.d.ts +14 -0
- package/dist-types/commands/GetJobCommand.d.ts +7 -0
- package/dist-types/commands/GetJobTemplateCommand.d.ts +7 -0
- package/dist-types/commands/GetJobsQueryResultsCommand.d.ts +7 -0
- package/dist-types/commands/GetPresetCommand.d.ts +7 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +7 -0
- package/dist-types/commands/ListJobsCommand.d.ts +7 -0
- package/dist-types/commands/ListPresetsCommand.d.ts +7 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +7 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +14 -0
- package/dist-types/commands/UpdatePresetCommand.d.ts +14 -0
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +72 -87
- package/dist-types/models/models_2.d.ts +88 -2
- package/dist-types/ts3.4/models/models_1.d.ts +24 -29
- package/dist-types/ts3.4/models/models_2.d.ts +35 -1
- package/package.json +5 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CmafGroupSettings, DashIsoGroupSettings, DestinationSettings, FileGroupSettings, FrameMetricType, Hdr10Metadata, HlsAdditionalManifest, HlsAdMarkers, HlsAudioOnlyHeader, HlsCaptionLanguageMapping, HlsCaptionLanguageSetting, HlsCaptionSegmentLengthControl, HlsClientCache, HlsCodecSpecification, HlsDirectoryStructure, HlsEncryptionSettings, HlsImageBasedTrickPlay, HlsImageBasedTrickPlaySettings, HlsManifestCompression, HlsManifestDurationFormat, HlsOutputSelection, HlsProgramDateTime, HlsProgressiveWriteHlsManifest,
|
|
1
|
+
import { CmafGroupSettings, DashIsoGroupSettings, DestinationSettings, FileGroupSettings, FrameMetricType, Hdr10Metadata, HlsAdditionalManifest, HlsAdMarkers, HlsAudioOnlyHeader, HlsCaptionLanguageMapping, HlsCaptionLanguageSetting, HlsCaptionSegmentLengthControl, HlsClientCache, HlsCodecSpecification, HlsDirectoryStructure, HlsEncryptionSettings, HlsImageBasedTrickPlay, HlsImageBasedTrickPlaySettings, HlsManifestCompression, HlsManifestDurationFormat, HlsOutputSelection, HlsProgramDateTime, HlsProgressiveWriteHlsManifest, SpekeKeyProvider } from "./models_0";
|
|
2
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
* @enum
|
|
@@ -418,6 +418,18 @@ export declare const CmfcAudioTrackType: {
|
|
|
418
418
|
* @public
|
|
419
419
|
*/
|
|
420
420
|
export type CmfcAudioTrackType = (typeof CmfcAudioTrackType)[keyof typeof CmfcAudioTrackType];
|
|
421
|
+
/**
|
|
422
|
+
* @public
|
|
423
|
+
* @enum
|
|
424
|
+
*/
|
|
425
|
+
export declare const CmfcC2paManifest: {
|
|
426
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
427
|
+
readonly INCLUDE: "INCLUDE";
|
|
428
|
+
};
|
|
429
|
+
/**
|
|
430
|
+
* @public
|
|
431
|
+
*/
|
|
432
|
+
export type CmfcC2paManifest = (typeof CmfcC2paManifest)[keyof typeof CmfcC2paManifest];
|
|
421
433
|
/**
|
|
422
434
|
* @public
|
|
423
435
|
* @enum
|
|
@@ -539,6 +551,16 @@ export interface CmfcSettings {
|
|
|
539
551
|
* @public
|
|
540
552
|
*/
|
|
541
553
|
AudioTrackType?: CmfcAudioTrackType | undefined;
|
|
554
|
+
/**
|
|
555
|
+
* When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html
|
|
556
|
+
* @public
|
|
557
|
+
*/
|
|
558
|
+
C2paManifest?: CmfcC2paManifest | undefined;
|
|
559
|
+
/**
|
|
560
|
+
* Specify the name or ARN of the AWS Secrets Manager secret that contains your C2PA public certificate chain in PEM format. Provide a valid secret name or ARN. Note that your MediaConvert service role must allow access to this secret. The public certificate chain is added to the COSE header (x5chain) for signature validation. Include the signer's certificate and all intermediate certificates. Do not include the root certificate. For details on COSE, see: https://opensource.contentauthenticity.org/docs/manifest/signing-manifests
|
|
561
|
+
* @public
|
|
562
|
+
*/
|
|
563
|
+
CertificateSecret?: string | undefined;
|
|
542
564
|
/**
|
|
543
565
|
* Specify whether to flag this audio track as descriptive video service (DVS) in your HLS parent manifest. When you choose Flag, MediaConvert includes the parameter CHARACTERISTICS="public.accessibility.describes-video" in the EXT-X-MEDIA entry for this track. When you keep the default choice, Don't flag, MediaConvert leaves this parameter out. The DVS flag can help with accessibility on Apple devices. For more information, see the Apple documentation.
|
|
544
566
|
* @public
|
|
@@ -569,6 +591,11 @@ export interface CmfcSettings {
|
|
|
569
591
|
* @public
|
|
570
592
|
*/
|
|
571
593
|
Scte35Source?: CmfcScte35Source | undefined;
|
|
594
|
+
/**
|
|
595
|
+
* Specify the ID or ARN of the AWS KMS key used to sign the C2PA manifest in your MP4 output. Provide a valid KMS key ARN. Note that your MediaConvert service role must allow access to this key.
|
|
596
|
+
* @public
|
|
597
|
+
*/
|
|
598
|
+
SigningKmsKey?: string | undefined;
|
|
572
599
|
/**
|
|
573
600
|
* To include ID3 metadata in this output: Set ID3 metadata to Passthrough. Specify this ID3 metadata in Custom ID3 metadata inserter. MediaConvert writes each instance of ID3 metadata in a separate Event Message (eMSG) box. To exclude this ID3 metadata: Set ID3 metadata to None or leave blank.
|
|
574
601
|
* @public
|
|
@@ -1555,6 +1582,18 @@ export declare const MpdAudioDuration: {
|
|
|
1555
1582
|
* @public
|
|
1556
1583
|
*/
|
|
1557
1584
|
export type MpdAudioDuration = (typeof MpdAudioDuration)[keyof typeof MpdAudioDuration];
|
|
1585
|
+
/**
|
|
1586
|
+
* @public
|
|
1587
|
+
* @enum
|
|
1588
|
+
*/
|
|
1589
|
+
export declare const MpdC2paManifest: {
|
|
1590
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
1591
|
+
readonly INCLUDE: "INCLUDE";
|
|
1592
|
+
};
|
|
1593
|
+
/**
|
|
1594
|
+
* @public
|
|
1595
|
+
*/
|
|
1596
|
+
export type MpdC2paManifest = (typeof MpdC2paManifest)[keyof typeof MpdC2paManifest];
|
|
1558
1597
|
/**
|
|
1559
1598
|
* @public
|
|
1560
1599
|
* @enum
|
|
@@ -1654,11 +1693,21 @@ export interface MpdSettings {
|
|
|
1654
1693
|
* @public
|
|
1655
1694
|
*/
|
|
1656
1695
|
AudioDuration?: MpdAudioDuration | undefined;
|
|
1696
|
+
/**
|
|
1697
|
+
* When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html
|
|
1698
|
+
* @public
|
|
1699
|
+
*/
|
|
1700
|
+
C2paManifest?: MpdC2paManifest | undefined;
|
|
1657
1701
|
/**
|
|
1658
1702
|
* Use this setting only in DASH output groups that include sidecar TTML, IMSC or WEBVTT captions. You specify sidecar captions in a separate output from your audio and video. Choose Raw for captions in a single XML file in a raw container. Choose Fragmented MPEG-4 for captions in XML format contained within fragmented MP4 files. This set of fragmented MP4 files is separate from your video and audio fragmented MP4 files.
|
|
1659
1703
|
* @public
|
|
1660
1704
|
*/
|
|
1661
1705
|
CaptionContainerType?: MpdCaptionContainerType | undefined;
|
|
1706
|
+
/**
|
|
1707
|
+
* Specify the name or ARN of the AWS Secrets Manager secret that contains your C2PA public certificate chain in PEM format. Provide a valid secret name or ARN. Note that your MediaConvert service role must allow access to this secret. The public certificate chain is added to the COSE header (x5chain) for signature validation. Include the signer's certificate and all intermediate certificates. Do not include the root certificate. For details on COSE, see: https://opensource.contentauthenticity.org/docs/manifest/signing-manifests
|
|
1708
|
+
* @public
|
|
1709
|
+
*/
|
|
1710
|
+
CertificateSecret?: string | undefined;
|
|
1662
1711
|
/**
|
|
1663
1712
|
* To include key-length-value metadata in this output: Set KLV metadata insertion to Passthrough. MediaConvert reads KLV metadata present in your input and writes each instance to a separate event message box in the output, according to MISB ST1910.1. To exclude this KLV metadata: Set KLV metadata insertion to None or leave blank.
|
|
1664
1713
|
* @public
|
|
@@ -1679,6 +1728,11 @@ export interface MpdSettings {
|
|
|
1679
1728
|
* @public
|
|
1680
1729
|
*/
|
|
1681
1730
|
Scte35Source?: MpdScte35Source | undefined;
|
|
1731
|
+
/**
|
|
1732
|
+
* Specify the ID or ARN of the AWS KMS key used to sign the C2PA manifest in your MP4 output. Provide a valid KMS key ARN. Note that your MediaConvert service role must allow access to this key.
|
|
1733
|
+
* @public
|
|
1734
|
+
*/
|
|
1735
|
+
SigningKmsKey?: string | undefined;
|
|
1682
1736
|
/**
|
|
1683
1737
|
* To include ID3 metadata in this output: Set ID3 metadata to Passthrough. Specify this ID3 metadata in Custom ID3 metadata inserter. MediaConvert writes each instance of ID3 metadata in a separate Event Message (eMSG) box. To exclude this ID3 metadata: Set ID3 metadata to None or leave blank.
|
|
1684
1738
|
* @public
|
|
@@ -4121,6 +4175,18 @@ export interface Mpeg2Settings {
|
|
|
4121
4175
|
*/
|
|
4122
4176
|
TemporalAdaptiveQuantization?: Mpeg2TemporalAdaptiveQuantization | undefined;
|
|
4123
4177
|
}
|
|
4178
|
+
/**
|
|
4179
|
+
* @public
|
|
4180
|
+
* @enum
|
|
4181
|
+
*/
|
|
4182
|
+
export declare const FrameControl: {
|
|
4183
|
+
readonly NEAREST_IDRFRAME: "NEAREST_IDRFRAME";
|
|
4184
|
+
readonly NEAREST_IFRAME: "NEAREST_IFRAME";
|
|
4185
|
+
};
|
|
4186
|
+
/**
|
|
4187
|
+
* @public
|
|
4188
|
+
*/
|
|
4189
|
+
export type FrameControl = (typeof FrameControl)[keyof typeof FrameControl];
|
|
4124
4190
|
/**
|
|
4125
4191
|
* @public
|
|
4126
4192
|
* @enum
|
|
@@ -4138,6 +4204,11 @@ export type VideoSelectorMode = (typeof VideoSelectorMode)[keyof typeof VideoSel
|
|
|
4138
4204
|
* @public
|
|
4139
4205
|
*/
|
|
4140
4206
|
export interface PassthroughSettings {
|
|
4207
|
+
/**
|
|
4208
|
+
* Choose how MediaConvert handles start and end times for input clipping with video passthrough. Your input video codec must be H.264 or H.265 to use IFRAME. To clip at the nearest IDR-frame: Choose Nearest IDR. If an IDR-frame is not found at the frame that you specify, MediaConvert uses the next compatible IDR-frame. Note that your output may be shorter than your input clip duration. To clip at the nearest I-frame: Choose Nearest I-frame. If an I-frame is not found at the frame that you specify, MediaConvert uses the next compatible I-frame. Note that your output may be shorter than your input clip duration. We only recommend this setting for special workflows, and when you choose this setting your output may not be compatible with most players.
|
|
4209
|
+
* @public
|
|
4210
|
+
*/
|
|
4211
|
+
FrameControl?: FrameControl | undefined;
|
|
4141
4212
|
/**
|
|
4142
4213
|
* AUTO will select the highest bitrate input in the video selector source. REMUX_ALL will passthrough all the selected streams in the video selector source. When selecting streams from multiple renditions (i.e. using Stream video selector type): REMUX_ALL will only remux all streams selected, and AUTO will use the highest bitrate video stream among the selected streams as source.
|
|
4143
4214
|
* @public
|
|
@@ -5995,89 +6066,3 @@ export interface PartnerWatermarking {
|
|
|
5995
6066
|
*/
|
|
5996
6067
|
NexguardFileMarkerSettings?: NexGuardFileMarkerSettings | undefined;
|
|
5997
6068
|
}
|
|
5998
|
-
/**
|
|
5999
|
-
* @public
|
|
6000
|
-
* @enum
|
|
6001
|
-
*/
|
|
6002
|
-
export declare const TimecodeBurninPosition: {
|
|
6003
|
-
readonly BOTTOM_CENTER: "BOTTOM_CENTER";
|
|
6004
|
-
readonly BOTTOM_LEFT: "BOTTOM_LEFT";
|
|
6005
|
-
readonly BOTTOM_RIGHT: "BOTTOM_RIGHT";
|
|
6006
|
-
readonly MIDDLE_CENTER: "MIDDLE_CENTER";
|
|
6007
|
-
readonly MIDDLE_LEFT: "MIDDLE_LEFT";
|
|
6008
|
-
readonly MIDDLE_RIGHT: "MIDDLE_RIGHT";
|
|
6009
|
-
readonly TOP_CENTER: "TOP_CENTER";
|
|
6010
|
-
readonly TOP_LEFT: "TOP_LEFT";
|
|
6011
|
-
readonly TOP_RIGHT: "TOP_RIGHT";
|
|
6012
|
-
};
|
|
6013
|
-
/**
|
|
6014
|
-
* @public
|
|
6015
|
-
*/
|
|
6016
|
-
export type TimecodeBurninPosition = (typeof TimecodeBurninPosition)[keyof typeof TimecodeBurninPosition];
|
|
6017
|
-
/**
|
|
6018
|
-
* Settings for burning the output timecode and specified prefix into the output.
|
|
6019
|
-
* @public
|
|
6020
|
-
*/
|
|
6021
|
-
export interface TimecodeBurnin {
|
|
6022
|
-
/**
|
|
6023
|
-
* Use Font size to set the font size of any burned-in timecode. Valid values are 10, 16, 32, 48.
|
|
6024
|
-
* @public
|
|
6025
|
-
*/
|
|
6026
|
-
FontSize?: number | undefined;
|
|
6027
|
-
/**
|
|
6028
|
-
* Use Position under Timecode burn-in to specify the location the burned-in timecode on output video.
|
|
6029
|
-
* @public
|
|
6030
|
-
*/
|
|
6031
|
-
Position?: TimecodeBurninPosition | undefined;
|
|
6032
|
-
/**
|
|
6033
|
-
* Use Prefix to place ASCII characters before any burned-in timecode. For example, a prefix of "EZ-" will result in the timecode "EZ-00:00:00:00". Provide either the characters themselves or the ASCII code equivalents. The supported range of characters is 0x20 through 0x7e. This includes letters, numbers, and all special characters represented on a standard English keyboard.
|
|
6034
|
-
* @public
|
|
6035
|
-
*/
|
|
6036
|
-
Prefix?: string | undefined;
|
|
6037
|
-
}
|
|
6038
|
-
/**
|
|
6039
|
-
* Find additional transcoding features under Preprocessors. Enable the features at each output individually. These features are disabled by default.
|
|
6040
|
-
* @public
|
|
6041
|
-
*/
|
|
6042
|
-
export interface VideoPreprocessor {
|
|
6043
|
-
/**
|
|
6044
|
-
* Use these settings to convert the color space or to modify properties such as hue and contrast for this output. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/converting-the-color-space.html.
|
|
6045
|
-
* @public
|
|
6046
|
-
*/
|
|
6047
|
-
ColorCorrector?: ColorCorrector | undefined;
|
|
6048
|
-
/**
|
|
6049
|
-
* Use the deinterlacer to produce smoother motion and a clearer picture. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-scan-type.html.
|
|
6050
|
-
* @public
|
|
6051
|
-
*/
|
|
6052
|
-
Deinterlacer?: Deinterlacer | undefined;
|
|
6053
|
-
/**
|
|
6054
|
-
* Enable Dolby Vision feature to produce Dolby Vision compatible video output.
|
|
6055
|
-
* @public
|
|
6056
|
-
*/
|
|
6057
|
-
DolbyVision?: DolbyVision | undefined;
|
|
6058
|
-
/**
|
|
6059
|
-
* Enable HDR10+ analysis and metadata injection. Compatible with HEVC only.
|
|
6060
|
-
* @public
|
|
6061
|
-
*/
|
|
6062
|
-
Hdr10Plus?: Hdr10Plus | undefined;
|
|
6063
|
-
/**
|
|
6064
|
-
* Enable the Image inserter feature to include a graphic overlay on your video. Enable or disable this feature for each output individually. This setting is disabled by default.
|
|
6065
|
-
* @public
|
|
6066
|
-
*/
|
|
6067
|
-
ImageInserter?: ImageInserter | undefined;
|
|
6068
|
-
/**
|
|
6069
|
-
* Enable the Noise reducer feature to remove noise from your video output if necessary. Enable or disable this feature for each output individually. This setting is disabled by default. When you enable Noise reducer, you must also select a value for Noise reducer filter. For AVC outputs, when you include Noise reducer, you cannot include the Bandwidth reduction filter.
|
|
6070
|
-
* @public
|
|
6071
|
-
*/
|
|
6072
|
-
NoiseReducer?: NoiseReducer | undefined;
|
|
6073
|
-
/**
|
|
6074
|
-
* If you work with a third party video watermarking partner, use the group of settings that correspond with your watermarking partner to include watermarks in your output.
|
|
6075
|
-
* @public
|
|
6076
|
-
*/
|
|
6077
|
-
PartnerWatermarking?: PartnerWatermarking | undefined;
|
|
6078
|
-
/**
|
|
6079
|
-
* Settings for burning the output timecode and specified prefix into the output.
|
|
6080
|
-
* @public
|
|
6081
|
-
*/
|
|
6082
|
-
TimecodeBurnin?: TimecodeBurnin | undefined;
|
|
6083
|
-
}
|
|
@@ -1,7 +1,93 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
|
|
3
|
-
import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, ColorConversion3DLUTSetting, Endpoint, EsamSettings, ExtendedDataServices, HopDestination, Id3Insertion, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, QueueTransition, Rectangle } from "./models_0";
|
|
4
|
-
import { AfdSignaling, AntiAlias, ChromaPositionMode, ColorMetadata, ContainerSettings, DropFrameTimecode, OutputGroupSettings, OutputSettings, RespondToAfd, ScalingBehavior, TimecodeTrack, VideoCodecSettings,
|
|
3
|
+
import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, ColorConversion3DLUTSetting, Endpoint, EsamSettings, ExtendedDataServices, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, QueueTransition, Rectangle } from "./models_0";
|
|
4
|
+
import { AfdSignaling, AntiAlias, ChromaPositionMode, ColorCorrector, ColorMetadata, ContainerSettings, Deinterlacer, DolbyVision, DropFrameTimecode, Hdr10Plus, NoiseReducer, OutputGroupSettings, OutputSettings, PartnerWatermarking, RespondToAfd, ScalingBehavior, TimecodeTrack, VideoCodecSettings, VideoTimecodeInsertion } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
* @enum
|
|
8
|
+
*/
|
|
9
|
+
export declare const TimecodeBurninPosition: {
|
|
10
|
+
readonly BOTTOM_CENTER: "BOTTOM_CENTER";
|
|
11
|
+
readonly BOTTOM_LEFT: "BOTTOM_LEFT";
|
|
12
|
+
readonly BOTTOM_RIGHT: "BOTTOM_RIGHT";
|
|
13
|
+
readonly MIDDLE_CENTER: "MIDDLE_CENTER";
|
|
14
|
+
readonly MIDDLE_LEFT: "MIDDLE_LEFT";
|
|
15
|
+
readonly MIDDLE_RIGHT: "MIDDLE_RIGHT";
|
|
16
|
+
readonly TOP_CENTER: "TOP_CENTER";
|
|
17
|
+
readonly TOP_LEFT: "TOP_LEFT";
|
|
18
|
+
readonly TOP_RIGHT: "TOP_RIGHT";
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export type TimecodeBurninPosition = (typeof TimecodeBurninPosition)[keyof typeof TimecodeBurninPosition];
|
|
24
|
+
/**
|
|
25
|
+
* Settings for burning the output timecode and specified prefix into the output.
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export interface TimecodeBurnin {
|
|
29
|
+
/**
|
|
30
|
+
* Use Font size to set the font size of any burned-in timecode. Valid values are 10, 16, 32, 48.
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
FontSize?: number | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* Use Position under Timecode burn-in to specify the location the burned-in timecode on output video.
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
Position?: TimecodeBurninPosition | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* Use Prefix to place ASCII characters before any burned-in timecode. For example, a prefix of "EZ-" will result in the timecode "EZ-00:00:00:00". Provide either the characters themselves or the ASCII code equivalents. The supported range of characters is 0x20 through 0x7e. This includes letters, numbers, and all special characters represented on a standard English keyboard.
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
Prefix?: string | undefined;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Find additional transcoding features under Preprocessors. Enable the features at each output individually. These features are disabled by default.
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export interface VideoPreprocessor {
|
|
50
|
+
/**
|
|
51
|
+
* Use these settings to convert the color space or to modify properties such as hue and contrast for this output. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/converting-the-color-space.html.
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
ColorCorrector?: ColorCorrector | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* Use the deinterlacer to produce smoother motion and a clearer picture. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-scan-type.html.
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
Deinterlacer?: Deinterlacer | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* Enable Dolby Vision feature to produce Dolby Vision compatible video output.
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
DolbyVision?: DolbyVision | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* Enable HDR10+ analysis and metadata injection. Compatible with HEVC only.
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
Hdr10Plus?: Hdr10Plus | undefined;
|
|
70
|
+
/**
|
|
71
|
+
* Enable the Image inserter feature to include a graphic overlay on your video. Enable or disable this feature for each output individually. This setting is disabled by default.
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
ImageInserter?: ImageInserter | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* Enable the Noise reducer feature to remove noise from your video output if necessary. Enable or disable this feature for each output individually. This setting is disabled by default. When you enable Noise reducer, you must also select a value for Noise reducer filter. For AVC outputs, when you include Noise reducer, you cannot include the Bandwidth reduction filter.
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
NoiseReducer?: NoiseReducer | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* If you work with a third party video watermarking partner, use the group of settings that correspond with your watermarking partner to include watermarks in your output.
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
PartnerWatermarking?: PartnerWatermarking | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* Settings for burning the output timecode and specified prefix into the output.
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
TimecodeBurnin?: TimecodeBurnin | undefined;
|
|
90
|
+
}
|
|
5
91
|
/**
|
|
6
92
|
* Settings related to video encoding of your output. The specific video settings depend on the video codec that you choose.
|
|
7
93
|
* @public
|
|
@@ -22,7 +22,6 @@ import {
|
|
|
22
22
|
HlsOutputSelection,
|
|
23
23
|
HlsProgramDateTime,
|
|
24
24
|
HlsProgressiveWriteHlsManifest,
|
|
25
|
-
ImageInserter,
|
|
26
25
|
SpekeKeyProvider,
|
|
27
26
|
} from "./models_0";
|
|
28
27
|
export declare const HlsSegmentControl: {
|
|
@@ -160,6 +159,12 @@ export declare const CmfcAudioTrackType: {
|
|
|
160
159
|
};
|
|
161
160
|
export type CmfcAudioTrackType =
|
|
162
161
|
(typeof CmfcAudioTrackType)[keyof typeof CmfcAudioTrackType];
|
|
162
|
+
export declare const CmfcC2paManifest: {
|
|
163
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
164
|
+
readonly INCLUDE: "INCLUDE";
|
|
165
|
+
};
|
|
166
|
+
export type CmfcC2paManifest =
|
|
167
|
+
(typeof CmfcC2paManifest)[keyof typeof CmfcC2paManifest];
|
|
163
168
|
export declare const CmfcDescriptiveVideoServiceFlag: {
|
|
164
169
|
readonly DONT_FLAG: "DONT_FLAG";
|
|
165
170
|
readonly FLAG: "FLAG";
|
|
@@ -213,12 +218,15 @@ export interface CmfcSettings {
|
|
|
213
218
|
AudioGroupId?: string | undefined;
|
|
214
219
|
AudioRenditionSets?: string | undefined;
|
|
215
220
|
AudioTrackType?: CmfcAudioTrackType | undefined;
|
|
221
|
+
C2paManifest?: CmfcC2paManifest | undefined;
|
|
222
|
+
CertificateSecret?: string | undefined;
|
|
216
223
|
DescriptiveVideoServiceFlag?: CmfcDescriptiveVideoServiceFlag | undefined;
|
|
217
224
|
IFrameOnlyManifest?: CmfcIFrameOnlyManifest | undefined;
|
|
218
225
|
KlvMetadata?: CmfcKlvMetadata | undefined;
|
|
219
226
|
ManifestMetadataSignaling?: CmfcManifestMetadataSignaling | undefined;
|
|
220
227
|
Scte35Esam?: CmfcScte35Esam | undefined;
|
|
221
228
|
Scte35Source?: CmfcScte35Source | undefined;
|
|
229
|
+
SigningKmsKey?: string | undefined;
|
|
222
230
|
TimedMetadata?: CmfcTimedMetadata | undefined;
|
|
223
231
|
TimedMetadataBoxVersion?: CmfcTimedMetadataBoxVersion | undefined;
|
|
224
232
|
TimedMetadataSchemeIdUri?: string | undefined;
|
|
@@ -563,6 +571,12 @@ export declare const MpdAudioDuration: {
|
|
|
563
571
|
};
|
|
564
572
|
export type MpdAudioDuration =
|
|
565
573
|
(typeof MpdAudioDuration)[keyof typeof MpdAudioDuration];
|
|
574
|
+
export declare const MpdC2paManifest: {
|
|
575
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
576
|
+
readonly INCLUDE: "INCLUDE";
|
|
577
|
+
};
|
|
578
|
+
export type MpdC2paManifest =
|
|
579
|
+
(typeof MpdC2paManifest)[keyof typeof MpdC2paManifest];
|
|
566
580
|
export declare const MpdCaptionContainerType: {
|
|
567
581
|
readonly FRAGMENTED_MP4: "FRAGMENTED_MP4";
|
|
568
582
|
readonly RAW: "RAW";
|
|
@@ -607,11 +621,14 @@ export type MpdTimedMetadataBoxVersion =
|
|
|
607
621
|
export interface MpdSettings {
|
|
608
622
|
AccessibilityCaptionHints?: MpdAccessibilityCaptionHints | undefined;
|
|
609
623
|
AudioDuration?: MpdAudioDuration | undefined;
|
|
624
|
+
C2paManifest?: MpdC2paManifest | undefined;
|
|
610
625
|
CaptionContainerType?: MpdCaptionContainerType | undefined;
|
|
626
|
+
CertificateSecret?: string | undefined;
|
|
611
627
|
KlvMetadata?: MpdKlvMetadata | undefined;
|
|
612
628
|
ManifestMetadataSignaling?: MpdManifestMetadataSignaling | undefined;
|
|
613
629
|
Scte35Esam?: MpdScte35Esam | undefined;
|
|
614
630
|
Scte35Source?: MpdScte35Source | undefined;
|
|
631
|
+
SigningKmsKey?: string | undefined;
|
|
615
632
|
TimedMetadata?: MpdTimedMetadata | undefined;
|
|
616
633
|
TimedMetadataBoxVersion?: MpdTimedMetadataBoxVersion | undefined;
|
|
617
634
|
TimedMetadataSchemeIdUri?: string | undefined;
|
|
@@ -1569,6 +1586,11 @@ export interface Mpeg2Settings {
|
|
|
1569
1586
|
Telecine?: Mpeg2Telecine | undefined;
|
|
1570
1587
|
TemporalAdaptiveQuantization?: Mpeg2TemporalAdaptiveQuantization | undefined;
|
|
1571
1588
|
}
|
|
1589
|
+
export declare const FrameControl: {
|
|
1590
|
+
readonly NEAREST_IDRFRAME: "NEAREST_IDRFRAME";
|
|
1591
|
+
readonly NEAREST_IFRAME: "NEAREST_IFRAME";
|
|
1592
|
+
};
|
|
1593
|
+
export type FrameControl = (typeof FrameControl)[keyof typeof FrameControl];
|
|
1572
1594
|
export declare const VideoSelectorMode: {
|
|
1573
1595
|
readonly AUTO: "AUTO";
|
|
1574
1596
|
readonly REMUX_ALL: "REMUX_ALL";
|
|
@@ -1576,6 +1598,7 @@ export declare const VideoSelectorMode: {
|
|
|
1576
1598
|
export type VideoSelectorMode =
|
|
1577
1599
|
(typeof VideoSelectorMode)[keyof typeof VideoSelectorMode];
|
|
1578
1600
|
export interface PassthroughSettings {
|
|
1601
|
+
FrameControl?: FrameControl | undefined;
|
|
1579
1602
|
VideoSelectorMode?: VideoSelectorMode | undefined;
|
|
1580
1603
|
}
|
|
1581
1604
|
export declare const ProresChromaSampling: {
|
|
@@ -2270,31 +2293,3 @@ export interface NexGuardFileMarkerSettings {
|
|
|
2270
2293
|
export interface PartnerWatermarking {
|
|
2271
2294
|
NexguardFileMarkerSettings?: NexGuardFileMarkerSettings | undefined;
|
|
2272
2295
|
}
|
|
2273
|
-
export declare const TimecodeBurninPosition: {
|
|
2274
|
-
readonly BOTTOM_CENTER: "BOTTOM_CENTER";
|
|
2275
|
-
readonly BOTTOM_LEFT: "BOTTOM_LEFT";
|
|
2276
|
-
readonly BOTTOM_RIGHT: "BOTTOM_RIGHT";
|
|
2277
|
-
readonly MIDDLE_CENTER: "MIDDLE_CENTER";
|
|
2278
|
-
readonly MIDDLE_LEFT: "MIDDLE_LEFT";
|
|
2279
|
-
readonly MIDDLE_RIGHT: "MIDDLE_RIGHT";
|
|
2280
|
-
readonly TOP_CENTER: "TOP_CENTER";
|
|
2281
|
-
readonly TOP_LEFT: "TOP_LEFT";
|
|
2282
|
-
readonly TOP_RIGHT: "TOP_RIGHT";
|
|
2283
|
-
};
|
|
2284
|
-
export type TimecodeBurninPosition =
|
|
2285
|
-
(typeof TimecodeBurninPosition)[keyof typeof TimecodeBurninPosition];
|
|
2286
|
-
export interface TimecodeBurnin {
|
|
2287
|
-
FontSize?: number | undefined;
|
|
2288
|
-
Position?: TimecodeBurninPosition | undefined;
|
|
2289
|
-
Prefix?: string | undefined;
|
|
2290
|
-
}
|
|
2291
|
-
export interface VideoPreprocessor {
|
|
2292
|
-
ColorCorrector?: ColorCorrector | undefined;
|
|
2293
|
-
Deinterlacer?: Deinterlacer | undefined;
|
|
2294
|
-
DolbyVision?: DolbyVision | undefined;
|
|
2295
|
-
Hdr10Plus?: Hdr10Plus | undefined;
|
|
2296
|
-
ImageInserter?: ImageInserter | undefined;
|
|
2297
|
-
NoiseReducer?: NoiseReducer | undefined;
|
|
2298
|
-
PartnerWatermarking?: PartnerWatermarking | undefined;
|
|
2299
|
-
TimecodeBurnin?: TimecodeBurnin | undefined;
|
|
2300
|
-
}
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ExtendedDataServices,
|
|
16
16
|
HopDestination,
|
|
17
17
|
Id3Insertion,
|
|
18
|
+
ImageInserter,
|
|
18
19
|
Input,
|
|
19
20
|
InputTemplate,
|
|
20
21
|
JobMessages,
|
|
@@ -31,18 +32,51 @@ import {
|
|
|
31
32
|
AfdSignaling,
|
|
32
33
|
AntiAlias,
|
|
33
34
|
ChromaPositionMode,
|
|
35
|
+
ColorCorrector,
|
|
34
36
|
ColorMetadata,
|
|
35
37
|
ContainerSettings,
|
|
38
|
+
Deinterlacer,
|
|
39
|
+
DolbyVision,
|
|
36
40
|
DropFrameTimecode,
|
|
41
|
+
Hdr10Plus,
|
|
42
|
+
NoiseReducer,
|
|
37
43
|
OutputGroupSettings,
|
|
38
44
|
OutputSettings,
|
|
45
|
+
PartnerWatermarking,
|
|
39
46
|
RespondToAfd,
|
|
40
47
|
ScalingBehavior,
|
|
41
48
|
TimecodeTrack,
|
|
42
49
|
VideoCodecSettings,
|
|
43
|
-
VideoPreprocessor,
|
|
44
50
|
VideoTimecodeInsertion,
|
|
45
51
|
} from "./models_1";
|
|
52
|
+
export declare const TimecodeBurninPosition: {
|
|
53
|
+
readonly BOTTOM_CENTER: "BOTTOM_CENTER";
|
|
54
|
+
readonly BOTTOM_LEFT: "BOTTOM_LEFT";
|
|
55
|
+
readonly BOTTOM_RIGHT: "BOTTOM_RIGHT";
|
|
56
|
+
readonly MIDDLE_CENTER: "MIDDLE_CENTER";
|
|
57
|
+
readonly MIDDLE_LEFT: "MIDDLE_LEFT";
|
|
58
|
+
readonly MIDDLE_RIGHT: "MIDDLE_RIGHT";
|
|
59
|
+
readonly TOP_CENTER: "TOP_CENTER";
|
|
60
|
+
readonly TOP_LEFT: "TOP_LEFT";
|
|
61
|
+
readonly TOP_RIGHT: "TOP_RIGHT";
|
|
62
|
+
};
|
|
63
|
+
export type TimecodeBurninPosition =
|
|
64
|
+
(typeof TimecodeBurninPosition)[keyof typeof TimecodeBurninPosition];
|
|
65
|
+
export interface TimecodeBurnin {
|
|
66
|
+
FontSize?: number | undefined;
|
|
67
|
+
Position?: TimecodeBurninPosition | undefined;
|
|
68
|
+
Prefix?: string | undefined;
|
|
69
|
+
}
|
|
70
|
+
export interface VideoPreprocessor {
|
|
71
|
+
ColorCorrector?: ColorCorrector | undefined;
|
|
72
|
+
Deinterlacer?: Deinterlacer | undefined;
|
|
73
|
+
DolbyVision?: DolbyVision | undefined;
|
|
74
|
+
Hdr10Plus?: Hdr10Plus | undefined;
|
|
75
|
+
ImageInserter?: ImageInserter | undefined;
|
|
76
|
+
NoiseReducer?: NoiseReducer | undefined;
|
|
77
|
+
PartnerWatermarking?: PartnerWatermarking | undefined;
|
|
78
|
+
TimecodeBurnin?: TimecodeBurnin | undefined;
|
|
79
|
+
}
|
|
46
80
|
export interface VideoDescription {
|
|
47
81
|
AfdSignaling?: AfdSignaling | undefined;
|
|
48
82
|
AntiAlias?: AntiAlias | undefined;
|
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.932.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,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.932.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.932.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.932.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.932.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|