@aws-sdk/client-mediaconvert 3.920.0 → 3.922.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 +56 -6
- package/dist-es/models/models_0.js +6 -9
- package/dist-es/models/models_1.js +13 -5
- package/dist-es/models/models_2.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +38 -0
- package/dist-types/commands/CreateJobCommand.d.ts +30 -6
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +30 -6
- package/dist-types/commands/CreatePresetCommand.d.ts +12 -0
- package/dist-types/commands/GetJobCommand.d.ts +15 -3
- package/dist-types/commands/GetJobTemplateCommand.d.ts +15 -3
- package/dist-types/commands/GetJobsQueryResultsCommand.d.ts +15 -3
- package/dist-types/commands/GetPresetCommand.d.ts +6 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +15 -3
- package/dist-types/commands/ListJobsCommand.d.ts +15 -3
- package/dist-types/commands/ListPresetsCommand.d.ts +6 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +15 -3
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +30 -6
- package/dist-types/commands/UpdatePresetCommand.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +52 -32
- package/dist-types/models/models_1.d.ts +55 -183
- package/dist-types/models/models_2.d.ts +185 -4
- package/dist-types/ts3.4/models/models_0.d.ts +15 -13
- package/dist-types/ts3.4/models/models_1.d.ts +23 -49
- package/dist-types/ts3.4/models/models_2.d.ts +59 -3
- package/package.json +33 -33
|
@@ -1,4 +1,29 @@
|
|
|
1
|
-
import {
|
|
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, ImageInserter, SpekeKeyProvider } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
* @enum
|
|
5
|
+
*/
|
|
6
|
+
export declare const HlsSegmentControl: {
|
|
7
|
+
readonly SEGMENTED_FILES: "SEGMENTED_FILES";
|
|
8
|
+
readonly SINGLE_FILE: "SINGLE_FILE";
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
export type HlsSegmentControl = (typeof HlsSegmentControl)[keyof typeof HlsSegmentControl];
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
* @enum
|
|
17
|
+
*/
|
|
18
|
+
export declare const HlsSegmentLengthControl: {
|
|
19
|
+
readonly EXACT: "EXACT";
|
|
20
|
+
readonly GOP_MULTIPLE: "GOP_MULTIPLE";
|
|
21
|
+
readonly MATCH: "MATCH";
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export type HlsSegmentLengthControl = (typeof HlsSegmentLengthControl)[keyof typeof HlsSegmentLengthControl];
|
|
2
27
|
/**
|
|
3
28
|
* @public
|
|
4
29
|
* @enum
|
|
@@ -1630,7 +1655,7 @@ export interface MpdSettings {
|
|
|
1630
1655
|
*/
|
|
1631
1656
|
AudioDuration?: MpdAudioDuration | undefined;
|
|
1632
1657
|
/**
|
|
1633
|
-
* Use this setting only in DASH output groups that include sidecar TTML or
|
|
1658
|
+
* 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.
|
|
1634
1659
|
* @public
|
|
1635
1660
|
*/
|
|
1636
1661
|
CaptionContainerType?: MpdCaptionContainerType | undefined;
|
|
@@ -4096,6 +4121,29 @@ export interface Mpeg2Settings {
|
|
|
4096
4121
|
*/
|
|
4097
4122
|
TemporalAdaptiveQuantization?: Mpeg2TemporalAdaptiveQuantization | undefined;
|
|
4098
4123
|
}
|
|
4124
|
+
/**
|
|
4125
|
+
* @public
|
|
4126
|
+
* @enum
|
|
4127
|
+
*/
|
|
4128
|
+
export declare const VideoSelectorMode: {
|
|
4129
|
+
readonly AUTO: "AUTO";
|
|
4130
|
+
readonly REMUX_ALL: "REMUX_ALL";
|
|
4131
|
+
};
|
|
4132
|
+
/**
|
|
4133
|
+
* @public
|
|
4134
|
+
*/
|
|
4135
|
+
export type VideoSelectorMode = (typeof VideoSelectorMode)[keyof typeof VideoSelectorMode];
|
|
4136
|
+
/**
|
|
4137
|
+
* Optional settings when you set Codec to the value Passthrough.
|
|
4138
|
+
* @public
|
|
4139
|
+
*/
|
|
4140
|
+
export interface PassthroughSettings {
|
|
4141
|
+
/**
|
|
4142
|
+
* 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
|
+
* @public
|
|
4144
|
+
*/
|
|
4145
|
+
VideoSelectorMode?: VideoSelectorMode | undefined;
|
|
4146
|
+
}
|
|
4099
4147
|
/**
|
|
4100
4148
|
* @public
|
|
4101
4149
|
* @enum
|
|
@@ -5356,6 +5404,11 @@ export interface VideoCodecSettings {
|
|
|
5356
5404
|
* @public
|
|
5357
5405
|
*/
|
|
5358
5406
|
Mpeg2Settings?: Mpeg2Settings | undefined;
|
|
5407
|
+
/**
|
|
5408
|
+
* Optional settings when you set Codec to the value Passthrough.
|
|
5409
|
+
* @public
|
|
5410
|
+
*/
|
|
5411
|
+
PassthroughSettings?: PassthroughSettings | undefined;
|
|
5359
5412
|
/**
|
|
5360
5413
|
* Required when you set Codec to the value PRORES.
|
|
5361
5414
|
* @public
|
|
@@ -6028,184 +6081,3 @@ export interface VideoPreprocessor {
|
|
|
6028
6081
|
*/
|
|
6029
6082
|
TimecodeBurnin?: TimecodeBurnin | undefined;
|
|
6030
6083
|
}
|
|
6031
|
-
/**
|
|
6032
|
-
* Settings related to video encoding of your output. The specific video settings depend on the video codec that you choose.
|
|
6033
|
-
* @public
|
|
6034
|
-
*/
|
|
6035
|
-
export interface VideoDescription {
|
|
6036
|
-
/**
|
|
6037
|
-
* This setting only applies to H.264, H.265, and MPEG2 outputs. Use Insert AFD signaling to specify whether the service includes AFD values in the output video data and what those values are. * Choose None to remove all AFD values from this output. * Choose Fixed to ignore input AFD values and instead encode the value specified in the job. * Choose Auto to calculate output AFD values based on the input AFD scaler data.
|
|
6038
|
-
* @public
|
|
6039
|
-
*/
|
|
6040
|
-
AfdSignaling?: AfdSignaling | undefined;
|
|
6041
|
-
/**
|
|
6042
|
-
* The anti-alias filter is automatically applied to all outputs. The service no longer accepts the value DISABLED for AntiAlias. If you specify that in your job, the service will ignore the setting.
|
|
6043
|
-
* @public
|
|
6044
|
-
*/
|
|
6045
|
-
AntiAlias?: AntiAlias | undefined;
|
|
6046
|
-
/**
|
|
6047
|
-
* Specify the chroma sample positioning metadata for your H.264 or H.265 output. To have MediaConvert automatically determine chroma positioning: We recommend that you keep the default value, Auto. To specify center positioning: Choose Force center. To specify top left positioning: Choose Force top left.
|
|
6048
|
-
* @public
|
|
6049
|
-
*/
|
|
6050
|
-
ChromaPositionMode?: ChromaPositionMode | undefined;
|
|
6051
|
-
/**
|
|
6052
|
-
* Video codec settings contains the group of settings related to video encoding. The settings in this group vary depending on the value that you choose for Video codec. For each codec enum that you choose, define the corresponding settings object. The following lists the codec enum, settings object pairs. * AV1, Av1Settings * AVC_INTRA, AvcIntraSettings * FRAME_CAPTURE, FrameCaptureSettings * GIF, GifSettings * H_264, H264Settings * H_265, H265Settings * MPEG2, Mpeg2Settings * PRORES, ProresSettings * UNCOMPRESSED, UncompressedSettings * VC3, Vc3Settings * VP8, Vp8Settings * VP9, Vp9Settings * XAVC, XavcSettings
|
|
6053
|
-
* @public
|
|
6054
|
-
*/
|
|
6055
|
-
CodecSettings?: VideoCodecSettings | undefined;
|
|
6056
|
-
/**
|
|
6057
|
-
* Choose Insert for this setting to include color metadata in this output. Choose Ignore to exclude color metadata from this output. If you don't specify a value, the service sets this to Insert by default.
|
|
6058
|
-
* @public
|
|
6059
|
-
*/
|
|
6060
|
-
ColorMetadata?: ColorMetadata | undefined;
|
|
6061
|
-
/**
|
|
6062
|
-
* Use Cropping selection to specify the video area that the service will include in the output video frame.
|
|
6063
|
-
* @public
|
|
6064
|
-
*/
|
|
6065
|
-
Crop?: Rectangle | undefined;
|
|
6066
|
-
/**
|
|
6067
|
-
* Applies only to 29.97 fps outputs. When this feature is enabled, the service will use drop-frame timecode on outputs. If it is not possible to use drop-frame timecode, the system will fall back to non-drop-frame. This setting is enabled by default when Timecode insertion or Timecode track is enabled.
|
|
6068
|
-
* @public
|
|
6069
|
-
*/
|
|
6070
|
-
DropFrameTimecode?: DropFrameTimecode | undefined;
|
|
6071
|
-
/**
|
|
6072
|
-
* Applies only if you set AFD Signaling to Fixed. Use Fixed to specify a four-bit AFD value which the service will write on all frames of this video output.
|
|
6073
|
-
* @public
|
|
6074
|
-
*/
|
|
6075
|
-
FixedAfd?: number | undefined;
|
|
6076
|
-
/**
|
|
6077
|
-
* Use Height to define the video resolution height, in pixels, for this output. To use the same resolution as your input: Leave both Width and Height blank. To evenly scale from your input resolution: Leave Height blank and enter a value for Width. For example, if your input is 1920x1080 and you set Width to 1280, your output will be 1280x720.
|
|
6078
|
-
* @public
|
|
6079
|
-
*/
|
|
6080
|
-
Height?: number | undefined;
|
|
6081
|
-
/**
|
|
6082
|
-
* Use Selection placement to define the video area in your output frame. The area outside of the rectangle that you specify here is black.
|
|
6083
|
-
* @public
|
|
6084
|
-
*/
|
|
6085
|
-
Position?: Rectangle | undefined;
|
|
6086
|
-
/**
|
|
6087
|
-
* Use Respond to AFD to specify how the service changes the video itself in response to AFD values in the input. * Choose Respond to clip the input video frame according to the AFD value, input display aspect ratio, and output display aspect ratio. * Choose Passthrough to include the input AFD values. Do not choose this when AfdSignaling is set to NONE. A preferred implementation of this workflow is to set RespondToAfd to and set AfdSignaling to AUTO. * Choose None to remove all input AFD values from this output.
|
|
6088
|
-
* @public
|
|
6089
|
-
*/
|
|
6090
|
-
RespondToAfd?: RespondToAfd | undefined;
|
|
6091
|
-
/**
|
|
6092
|
-
* Specify the video Scaling behavior when your output has a different resolution than your input. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/video-scaling.html
|
|
6093
|
-
* @public
|
|
6094
|
-
*/
|
|
6095
|
-
ScalingBehavior?: ScalingBehavior | undefined;
|
|
6096
|
-
/**
|
|
6097
|
-
* Use Sharpness setting to specify the strength of anti-aliasing. This setting changes the width of the anti-alias filter kernel used for scaling. Sharpness only applies if your output resolution is different from your input resolution. 0 is the softest setting, 100 the sharpest, and 50 recommended for most content.
|
|
6098
|
-
* @public
|
|
6099
|
-
*/
|
|
6100
|
-
Sharpness?: number | undefined;
|
|
6101
|
-
/**
|
|
6102
|
-
* Applies only to H.264, H.265, MPEG2, and ProRes outputs. Only enable Timecode insertion when the input frame rate is identical to the output frame rate. To include timecodes in this output, set Timecode insertion to PIC_TIMING_SEI. To leave them out, set it to DISABLED. Default is DISABLED. When the service inserts timecodes in an output, by default, it uses any embedded timecodes from the input. If none are present, the service will set the timecode for the first output frame to zero. To change this default behavior, adjust the settings under Timecode configuration. In the console, these settings are located under Job > Job settings > Timecode configuration. Note - Timecode source under input settings does not affect the timecodes that are inserted in the output. Source under Job settings > Timecode configuration does.
|
|
6103
|
-
* @public
|
|
6104
|
-
*/
|
|
6105
|
-
TimecodeInsertion?: VideoTimecodeInsertion | undefined;
|
|
6106
|
-
/**
|
|
6107
|
-
* To include a timecode track in your MP4 output: Choose Enabled. MediaConvert writes the timecode track in the Null Media Header box (NMHD), without any timecode text formatting information. You can also specify dropframe or non-dropframe timecode under the Drop Frame Timecode setting. To not include a timecode track: Keep the default value, Disabled.
|
|
6108
|
-
* @public
|
|
6109
|
-
*/
|
|
6110
|
-
TimecodeTrack?: TimecodeTrack | undefined;
|
|
6111
|
-
/**
|
|
6112
|
-
* Find additional transcoding features under Preprocessors. Enable the features at each output individually. These features are disabled by default.
|
|
6113
|
-
* @public
|
|
6114
|
-
*/
|
|
6115
|
-
VideoPreprocessors?: VideoPreprocessor | undefined;
|
|
6116
|
-
/**
|
|
6117
|
-
* Use Width to define the video resolution width, in pixels, for this output. To use the same resolution as your input: Leave both Width and Height blank. To evenly scale from your input resolution: Leave Width blank and enter a value for Height. For example, if your input is 1920x1080 and you set Height to 720, your output will be 1280x720.
|
|
6118
|
-
* @public
|
|
6119
|
-
*/
|
|
6120
|
-
Width?: number | undefined;
|
|
6121
|
-
}
|
|
6122
|
-
/**
|
|
6123
|
-
* Each output in your job is a collection of settings that describes how you want MediaConvert to encode a single output file or stream. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/create-outputs.html.
|
|
6124
|
-
* @public
|
|
6125
|
-
*/
|
|
6126
|
-
export interface Output {
|
|
6127
|
-
/**
|
|
6128
|
-
* Contains groups of audio encoding settings organized by audio codec. Include one instance of per output. Can contain multiple groups of encoding settings.
|
|
6129
|
-
* @public
|
|
6130
|
-
*/
|
|
6131
|
-
AudioDescriptions?: AudioDescription[] | undefined;
|
|
6132
|
-
/**
|
|
6133
|
-
* Contains groups of captions settings. For each output that has captions, include one instance of CaptionDescriptions. Can contain multiple groups of captions settings.
|
|
6134
|
-
* @public
|
|
6135
|
-
*/
|
|
6136
|
-
CaptionDescriptions?: CaptionDescription[] | undefined;
|
|
6137
|
-
/**
|
|
6138
|
-
* Container specific settings.
|
|
6139
|
-
* @public
|
|
6140
|
-
*/
|
|
6141
|
-
ContainerSettings?: ContainerSettings | undefined;
|
|
6142
|
-
/**
|
|
6143
|
-
* Use Extension to specify the file extension for outputs in File output groups. If you do not specify a value, the service will use default extensions by container type as follows * MPEG-2 transport stream, m2ts * Quicktime, mov * MXF container, mxf * MPEG-4 container, mp4 * WebM container, webm * Animated GIF container, gif * No Container, the service will use codec extensions (e.g. AAC, H265, H265, AC3)
|
|
6144
|
-
* @public
|
|
6145
|
-
*/
|
|
6146
|
-
Extension?: string | undefined;
|
|
6147
|
-
/**
|
|
6148
|
-
* Use Name modifier to have the service add a string to the end of each output filename. You specify the base filename as part of your destination URI. When you create multiple outputs in the same output group, Name modifier is required. Name modifier also accepts format identifiers. For DASH ISO outputs, if you use the format identifiers $Number$ or $Time$ in one output, you must use them in the same way in all outputs of the output group.
|
|
6149
|
-
* @public
|
|
6150
|
-
*/
|
|
6151
|
-
NameModifier?: string | undefined;
|
|
6152
|
-
/**
|
|
6153
|
-
* Specific settings for this type of output.
|
|
6154
|
-
* @public
|
|
6155
|
-
*/
|
|
6156
|
-
OutputSettings?: OutputSettings | undefined;
|
|
6157
|
-
/**
|
|
6158
|
-
* Use Preset to specify a preset for your transcoding settings. Provide the system or custom preset name. You can specify either Preset or Container settings, but not both.
|
|
6159
|
-
* @public
|
|
6160
|
-
*/
|
|
6161
|
-
Preset?: string | undefined;
|
|
6162
|
-
/**
|
|
6163
|
-
* VideoDescription contains a group of video encoding settings. The specific video settings depend on the video codec that you choose for the property codec. Include one instance of VideoDescription per output.
|
|
6164
|
-
* @public
|
|
6165
|
-
*/
|
|
6166
|
-
VideoDescription?: VideoDescription | undefined;
|
|
6167
|
-
}
|
|
6168
|
-
/**
|
|
6169
|
-
* Group of outputs
|
|
6170
|
-
* @public
|
|
6171
|
-
*/
|
|
6172
|
-
export interface OutputGroup {
|
|
6173
|
-
/**
|
|
6174
|
-
* Use automated encoding to have MediaConvert choose your encoding settings for you, based on characteristics of your input video.
|
|
6175
|
-
* @public
|
|
6176
|
-
*/
|
|
6177
|
-
AutomatedEncodingSettings?: AutomatedEncodingSettings | undefined;
|
|
6178
|
-
/**
|
|
6179
|
-
* Use Custom Group Name to specify a name for the output group. This value is displayed on the console and can make your job settings JSON more human-readable. It does not affect your outputs. Use up to twelve characters that are either letters, numbers, spaces, or underscores.
|
|
6180
|
-
* @public
|
|
6181
|
-
*/
|
|
6182
|
-
CustomName?: string | undefined;
|
|
6183
|
-
/**
|
|
6184
|
-
* Name of the output group
|
|
6185
|
-
* @public
|
|
6186
|
-
*/
|
|
6187
|
-
Name?: string | undefined;
|
|
6188
|
-
/**
|
|
6189
|
-
* Output Group settings, including type
|
|
6190
|
-
* @public
|
|
6191
|
-
*/
|
|
6192
|
-
OutputGroupSettings?: OutputGroupSettings | undefined;
|
|
6193
|
-
/**
|
|
6194
|
-
* This object holds groups of encoding settings, one group of settings per output.
|
|
6195
|
-
* @public
|
|
6196
|
-
*/
|
|
6197
|
-
Outputs?: Output[] | undefined;
|
|
6198
|
-
}
|
|
6199
|
-
/**
|
|
6200
|
-
* @public
|
|
6201
|
-
* @enum
|
|
6202
|
-
*/
|
|
6203
|
-
export declare const TimecodeSource: {
|
|
6204
|
-
readonly EMBEDDED: "EMBEDDED";
|
|
6205
|
-
readonly SPECIFIEDSTART: "SPECIFIEDSTART";
|
|
6206
|
-
readonly ZEROBASED: "ZEROBASED";
|
|
6207
|
-
};
|
|
6208
|
-
/**
|
|
6209
|
-
* @public
|
|
6210
|
-
*/
|
|
6211
|
-
export type TimecodeSource = (typeof TimecodeSource)[keyof typeof TimecodeSource];
|
|
@@ -1,7 +1,188 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
|
|
3
|
-
import { AccelerationSettings, AccelerationStatus, AudioDescription, AvailBlanking, BillingTagsSource, CaptionDescriptionPreset, ColorConversion3DLUTSetting, Endpoint, EsamSettings, ExtendedDataServices, HopDestination, Id3Insertion, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, QueueTransition } from "./models_0";
|
|
4
|
-
import { ContainerSettings,
|
|
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, VideoPreprocessor, VideoTimecodeInsertion } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* Settings related to video encoding of your output. The specific video settings depend on the video codec that you choose.
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface VideoDescription {
|
|
10
|
+
/**
|
|
11
|
+
* This setting only applies to H.264, H.265, and MPEG2 outputs. Use Insert AFD signaling to specify whether the service includes AFD values in the output video data and what those values are. * Choose None to remove all AFD values from this output. * Choose Fixed to ignore input AFD values and instead encode the value specified in the job. * Choose Auto to calculate output AFD values based on the input AFD scaler data.
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
AfdSignaling?: AfdSignaling | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* The anti-alias filter is automatically applied to all outputs. The service no longer accepts the value DISABLED for AntiAlias. If you specify that in your job, the service will ignore the setting.
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
AntiAlias?: AntiAlias | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* Specify the chroma sample positioning metadata for your H.264 or H.265 output. To have MediaConvert automatically determine chroma positioning: We recommend that you keep the default value, Auto. To specify center positioning: Choose Force center. To specify top left positioning: Choose Force top left.
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
ChromaPositionMode?: ChromaPositionMode | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* Video codec settings contains the group of settings related to video encoding. The settings in this group vary depending on the value that you choose for Video codec. For each codec enum that you choose, define the corresponding settings object. The following lists the codec enum, settings object pairs. * AV1, Av1Settings * AVC_INTRA, AvcIntraSettings * FRAME_CAPTURE, FrameCaptureSettings * GIF, GifSettings * H_264, H264Settings * H_265, H265Settings * MPEG2, Mpeg2Settings * PRORES, ProresSettings * UNCOMPRESSED, UncompressedSettings * VC3, Vc3Settings * VP8, Vp8Settings * VP9, Vp9Settings * XAVC, XavcSettings
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
CodecSettings?: VideoCodecSettings | undefined;
|
|
30
|
+
/**
|
|
31
|
+
* Choose Insert for this setting to include color metadata in this output. Choose Ignore to exclude color metadata from this output. If you don't specify a value, the service sets this to Insert by default.
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
ColorMetadata?: ColorMetadata | undefined;
|
|
35
|
+
/**
|
|
36
|
+
* Use Cropping selection to specify the video area that the service will include in the output video frame.
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
Crop?: Rectangle | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* Applies only to 29.97 fps outputs. When this feature is enabled, the service will use drop-frame timecode on outputs. If it is not possible to use drop-frame timecode, the system will fall back to non-drop-frame. This setting is enabled by default when Timecode insertion or Timecode track is enabled.
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
DropFrameTimecode?: DropFrameTimecode | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* Applies only if you set AFD Signaling to Fixed. Use Fixed to specify a four-bit AFD value which the service will write on all frames of this video output.
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
FixedAfd?: number | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* Use Height to define the video resolution height, in pixels, for this output. To use the same resolution as your input: Leave both Width and Height blank. To evenly scale from your input resolution: Leave Height blank and enter a value for Width. For example, if your input is 1920x1080 and you set Width to 1280, your output will be 1280x720.
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
Height?: number | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* Use Selection placement to define the video area in your output frame. The area outside of the rectangle that you specify here is black.
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
Position?: Rectangle | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* Use Respond to AFD to specify how the service changes the video itself in response to AFD values in the input. * Choose Respond to clip the input video frame according to the AFD value, input display aspect ratio, and output display aspect ratio. * Choose Passthrough to include the input AFD values. Do not choose this when AfdSignaling is set to NONE. A preferred implementation of this workflow is to set RespondToAfd to and set AfdSignaling to AUTO. * Choose None to remove all input AFD values from this output.
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
RespondToAfd?: RespondToAfd | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* Specify the video Scaling behavior when your output has a different resolution than your input. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/video-scaling.html
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
ScalingBehavior?: ScalingBehavior | undefined;
|
|
70
|
+
/**
|
|
71
|
+
* Use Sharpness setting to specify the strength of anti-aliasing. This setting changes the width of the anti-alias filter kernel used for scaling. Sharpness only applies if your output resolution is different from your input resolution. 0 is the softest setting, 100 the sharpest, and 50 recommended for most content.
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
Sharpness?: number | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* Applies only to H.264, H.265, MPEG2, and ProRes outputs. Only enable Timecode insertion when the input frame rate is identical to the output frame rate. To include timecodes in this output, set Timecode insertion to PIC_TIMING_SEI. To leave them out, set it to DISABLED. Default is DISABLED. When the service inserts timecodes in an output, by default, it uses any embedded timecodes from the input. If none are present, the service will set the timecode for the first output frame to zero. To change this default behavior, adjust the settings under Timecode configuration. In the console, these settings are located under Job > Job settings > Timecode configuration. Note - Timecode source under input settings does not affect the timecodes that are inserted in the output. Source under Job settings > Timecode configuration does.
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
TimecodeInsertion?: VideoTimecodeInsertion | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* To include a timecode track in your MP4 output: Choose Enabled. MediaConvert writes the timecode track in the Null Media Header box (NMHD), without any timecode text formatting information. You can also specify dropframe or non-dropframe timecode under the Drop Frame Timecode setting. To not include a timecode track: Keep the default value, Disabled.
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
TimecodeTrack?: TimecodeTrack | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* Find additional transcoding features under Preprocessors. Enable the features at each output individually. These features are disabled by default.
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
VideoPreprocessors?: VideoPreprocessor | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* Use Width to define the video resolution width, in pixels, for this output. To use the same resolution as your input: Leave both Width and Height blank. To evenly scale from your input resolution: Leave Width blank and enter a value for Height. For example, if your input is 1920x1080 and you set Height to 720, your output will be 1280x720.
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
Width?: number | undefined;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* Each output in your job is a collection of settings that describes how you want MediaConvert to encode a single output file or stream. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/create-outputs.html.
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export interface Output {
|
|
101
|
+
/**
|
|
102
|
+
* Contains groups of audio encoding settings organized by audio codec. Include one instance of per output. Can contain multiple groups of encoding settings.
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
AudioDescriptions?: AudioDescription[] | undefined;
|
|
106
|
+
/**
|
|
107
|
+
* Contains groups of captions settings. For each output that has captions, include one instance of CaptionDescriptions. Can contain multiple groups of captions settings.
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
CaptionDescriptions?: CaptionDescription[] | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* Container specific settings.
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
ContainerSettings?: ContainerSettings | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* Use Extension to specify the file extension for outputs in File output groups. If you do not specify a value, the service will use default extensions by container type as follows * MPEG-2 transport stream, m2ts * Quicktime, mov * MXF container, mxf * MPEG-4 container, mp4 * WebM container, webm * Animated GIF container, gif * No Container, the service will use codec extensions (e.g. AAC, H265, H265, AC3)
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
Extension?: string | undefined;
|
|
121
|
+
/**
|
|
122
|
+
* Use Name modifier to have the service add a string to the end of each output filename. You specify the base filename as part of your destination URI. When you create multiple outputs in the same output group, Name modifier is required. Name modifier also accepts format identifiers. For DASH ISO outputs, if you use the format identifiers $Number$ or $Time$ in one output, you must use them in the same way in all outputs of the output group.
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
NameModifier?: string | undefined;
|
|
126
|
+
/**
|
|
127
|
+
* Specific settings for this type of output.
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
OutputSettings?: OutputSettings | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* Use Preset to specify a preset for your transcoding settings. Provide the system or custom preset name. You can specify either Preset or Container settings, but not both.
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
Preset?: string | undefined;
|
|
136
|
+
/**
|
|
137
|
+
* VideoDescription contains a group of video encoding settings. The specific video settings depend on the video codec that you choose for the property codec. Include one instance of VideoDescription per output.
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
VideoDescription?: VideoDescription | undefined;
|
|
141
|
+
}
|
|
142
|
+
/**
|
|
143
|
+
* Group of outputs
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
export interface OutputGroup {
|
|
147
|
+
/**
|
|
148
|
+
* Use automated encoding to have MediaConvert choose your encoding settings for you, based on characteristics of your input video.
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
AutomatedEncodingSettings?: AutomatedEncodingSettings | undefined;
|
|
152
|
+
/**
|
|
153
|
+
* Use Custom Group Name to specify a name for the output group. This value is displayed on the console and can make your job settings JSON more human-readable. It does not affect your outputs. Use up to twelve characters that are either letters, numbers, spaces, or underscores.
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
CustomName?: string | undefined;
|
|
157
|
+
/**
|
|
158
|
+
* Name of the output group
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
Name?: string | undefined;
|
|
162
|
+
/**
|
|
163
|
+
* Output Group settings, including type
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
OutputGroupSettings?: OutputGroupSettings | undefined;
|
|
167
|
+
/**
|
|
168
|
+
* This object holds groups of encoding settings, one group of settings per output.
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
Outputs?: Output[] | undefined;
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
* @enum
|
|
176
|
+
*/
|
|
177
|
+
export declare const TimecodeSource: {
|
|
178
|
+
readonly EMBEDDED: "EMBEDDED";
|
|
179
|
+
readonly SPECIFIEDSTART: "SPECIFIEDSTART";
|
|
180
|
+
readonly ZEROBASED: "ZEROBASED";
|
|
181
|
+
};
|
|
182
|
+
/**
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
185
|
+
export type TimecodeSource = (typeof TimecodeSource)[keyof typeof TimecodeSource];
|
|
5
186
|
/**
|
|
6
187
|
* These settings control how the service handles timecodes throughout the job. These settings don't affect input clipping.
|
|
7
188
|
* @public
|
|
@@ -70,7 +251,7 @@ export interface JobSettings {
|
|
|
70
251
|
*/
|
|
71
252
|
ExtendedDataServices?: ExtendedDataServices | undefined;
|
|
72
253
|
/**
|
|
73
|
-
* Specify the input that MediaConvert references for your default output settings.
|
|
254
|
+
* 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.
|
|
74
255
|
* @public
|
|
75
256
|
*/
|
|
76
257
|
FollowSource?: number | undefined;
|
|
@@ -458,7 +639,7 @@ export interface JobTemplateSettings {
|
|
|
458
639
|
*/
|
|
459
640
|
ExtendedDataServices?: ExtendedDataServices | undefined;
|
|
460
641
|
/**
|
|
461
|
-
* Specify the input that MediaConvert references for your default output settings.
|
|
642
|
+
* 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.
|
|
462
643
|
* @public
|
|
463
644
|
*/
|
|
464
645
|
FollowSource?: number | undefined;
|
|
@@ -79,6 +79,15 @@ export interface AudioNormalizationSettings {
|
|
|
79
79
|
TargetLkfs?: number | undefined;
|
|
80
80
|
TruePeakLimiterThreshold?: number | undefined;
|
|
81
81
|
}
|
|
82
|
+
export declare const SlowPalPitchCorrection: {
|
|
83
|
+
readonly DISABLED: "DISABLED";
|
|
84
|
+
readonly ENABLED: "ENABLED";
|
|
85
|
+
};
|
|
86
|
+
export type SlowPalPitchCorrection =
|
|
87
|
+
(typeof SlowPalPitchCorrection)[keyof typeof SlowPalPitchCorrection];
|
|
88
|
+
export interface AudioPitchCorrectionSettings {
|
|
89
|
+
SlowPalPitchCorrection?: SlowPalPitchCorrection | undefined;
|
|
90
|
+
}
|
|
82
91
|
export declare const AudioTypeControl: {
|
|
83
92
|
readonly FOLLOW_INPUT: "FOLLOW_INPUT";
|
|
84
93
|
readonly USE_CONFIGURED: "USE_CONFIGURED";
|
|
@@ -744,6 +753,7 @@ export interface RemixSettings {
|
|
|
744
753
|
export interface AudioDescription {
|
|
745
754
|
AudioChannelTaggingSettings?: AudioChannelTaggingSettings | undefined;
|
|
746
755
|
AudioNormalizationSettings?: AudioNormalizationSettings | undefined;
|
|
756
|
+
AudioPitchCorrectionSettings?: AudioPitchCorrectionSettings | undefined;
|
|
747
757
|
AudioSourceName?: string | undefined;
|
|
748
758
|
AudioType?: number | undefined;
|
|
749
759
|
AudioTypeControl?: AudioTypeControl | undefined;
|
|
@@ -1252,6 +1262,7 @@ export declare const AudioSelectorType: {
|
|
|
1252
1262
|
readonly HLS_RENDITION_GROUP: "HLS_RENDITION_GROUP";
|
|
1253
1263
|
readonly LANGUAGE_CODE: "LANGUAGE_CODE";
|
|
1254
1264
|
readonly PID: "PID";
|
|
1265
|
+
readonly STREAM: "STREAM";
|
|
1255
1266
|
readonly TRACK: "TRACK";
|
|
1256
1267
|
};
|
|
1257
1268
|
export type AudioSelectorType =
|
|
@@ -1268,6 +1279,7 @@ export interface AudioSelector {
|
|
|
1268
1279
|
ProgramSelection?: number | undefined;
|
|
1269
1280
|
RemixSettings?: RemixSettings | undefined;
|
|
1270
1281
|
SelectorType?: AudioSelectorType | undefined;
|
|
1282
|
+
Streams?: number[] | undefined;
|
|
1271
1283
|
Tracks?: number[] | undefined;
|
|
1272
1284
|
}
|
|
1273
1285
|
export declare const AncillaryConvert608To708: {
|
|
@@ -1374,6 +1386,7 @@ export interface TeletextSourceSettings {
|
|
|
1374
1386
|
PageNumber?: string | undefined;
|
|
1375
1387
|
}
|
|
1376
1388
|
export interface TrackSourceSettings {
|
|
1389
|
+
StreamNumber?: number | undefined;
|
|
1377
1390
|
TrackNumber?: number | undefined;
|
|
1378
1391
|
}
|
|
1379
1392
|
export interface WebvttHlsSourceSettings {
|
|
@@ -1523,6 +1536,7 @@ export interface VideoOverlayCrop {
|
|
|
1523
1536
|
}
|
|
1524
1537
|
export interface VideoOverlayPosition {
|
|
1525
1538
|
Height?: number | undefined;
|
|
1539
|
+
Opacity?: number | undefined;
|
|
1526
1540
|
Unit?: VideoOverlayUnit | undefined;
|
|
1527
1541
|
Width?: number | undefined;
|
|
1528
1542
|
XPosition?: number | undefined;
|
|
@@ -1871,6 +1885,7 @@ export declare const DashManifestStyle: {
|
|
|
1871
1885
|
readonly BASIC: "BASIC";
|
|
1872
1886
|
readonly COMPACT: "COMPACT";
|
|
1873
1887
|
readonly DISTINCT: "DISTINCT";
|
|
1888
|
+
readonly FULL: "FULL";
|
|
1874
1889
|
};
|
|
1875
1890
|
export type DashManifestStyle =
|
|
1876
1891
|
(typeof DashManifestStyle)[keyof typeof DashManifestStyle];
|
|
@@ -2369,16 +2384,3 @@ export declare const HlsProgressiveWriteHlsManifest: {
|
|
|
2369
2384
|
};
|
|
2370
2385
|
export type HlsProgressiveWriteHlsManifest =
|
|
2371
2386
|
(typeof HlsProgressiveWriteHlsManifest)[keyof typeof HlsProgressiveWriteHlsManifest];
|
|
2372
|
-
export declare const HlsSegmentControl: {
|
|
2373
|
-
readonly SEGMENTED_FILES: "SEGMENTED_FILES";
|
|
2374
|
-
readonly SINGLE_FILE: "SINGLE_FILE";
|
|
2375
|
-
};
|
|
2376
|
-
export type HlsSegmentControl =
|
|
2377
|
-
(typeof HlsSegmentControl)[keyof typeof HlsSegmentControl];
|
|
2378
|
-
export declare const HlsSegmentLengthControl: {
|
|
2379
|
-
readonly EXACT: "EXACT";
|
|
2380
|
-
readonly GOP_MULTIPLE: "GOP_MULTIPLE";
|
|
2381
|
-
readonly MATCH: "MATCH";
|
|
2382
|
-
};
|
|
2383
|
-
export type HlsSegmentLengthControl =
|
|
2384
|
-
(typeof HlsSegmentLengthControl)[keyof typeof HlsSegmentLengthControl];
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import {
|
|
2
|
-
AudioDescription,
|
|
3
|
-
AutomatedEncodingSettings,
|
|
4
|
-
CaptionDescription,
|
|
5
2
|
CmafGroupSettings,
|
|
6
3
|
DashIsoGroupSettings,
|
|
7
4
|
DestinationSettings,
|
|
@@ -25,12 +22,22 @@ import {
|
|
|
25
22
|
HlsOutputSelection,
|
|
26
23
|
HlsProgramDateTime,
|
|
27
24
|
HlsProgressiveWriteHlsManifest,
|
|
28
|
-
HlsSegmentControl,
|
|
29
|
-
HlsSegmentLengthControl,
|
|
30
25
|
ImageInserter,
|
|
31
|
-
Rectangle,
|
|
32
26
|
SpekeKeyProvider,
|
|
33
27
|
} from "./models_0";
|
|
28
|
+
export declare const HlsSegmentControl: {
|
|
29
|
+
readonly SEGMENTED_FILES: "SEGMENTED_FILES";
|
|
30
|
+
readonly SINGLE_FILE: "SINGLE_FILE";
|
|
31
|
+
};
|
|
32
|
+
export type HlsSegmentControl =
|
|
33
|
+
(typeof HlsSegmentControl)[keyof typeof HlsSegmentControl];
|
|
34
|
+
export declare const HlsSegmentLengthControl: {
|
|
35
|
+
readonly EXACT: "EXACT";
|
|
36
|
+
readonly GOP_MULTIPLE: "GOP_MULTIPLE";
|
|
37
|
+
readonly MATCH: "MATCH";
|
|
38
|
+
};
|
|
39
|
+
export type HlsSegmentLengthControl =
|
|
40
|
+
(typeof HlsSegmentLengthControl)[keyof typeof HlsSegmentLengthControl];
|
|
34
41
|
export declare const HlsStreamInfResolution: {
|
|
35
42
|
readonly EXCLUDE: "EXCLUDE";
|
|
36
43
|
readonly INCLUDE: "INCLUDE";
|
|
@@ -1562,6 +1569,15 @@ export interface Mpeg2Settings {
|
|
|
1562
1569
|
Telecine?: Mpeg2Telecine | undefined;
|
|
1563
1570
|
TemporalAdaptiveQuantization?: Mpeg2TemporalAdaptiveQuantization | undefined;
|
|
1564
1571
|
}
|
|
1572
|
+
export declare const VideoSelectorMode: {
|
|
1573
|
+
readonly AUTO: "AUTO";
|
|
1574
|
+
readonly REMUX_ALL: "REMUX_ALL";
|
|
1575
|
+
};
|
|
1576
|
+
export type VideoSelectorMode =
|
|
1577
|
+
(typeof VideoSelectorMode)[keyof typeof VideoSelectorMode];
|
|
1578
|
+
export interface PassthroughSettings {
|
|
1579
|
+
VideoSelectorMode?: VideoSelectorMode | undefined;
|
|
1580
|
+
}
|
|
1565
1581
|
export declare const ProresChromaSampling: {
|
|
1566
1582
|
readonly PRESERVE_444_SAMPLING: "PRESERVE_444_SAMPLING";
|
|
1567
1583
|
readonly SUBSAMPLE_TO_422: "SUBSAMPLE_TO_422";
|
|
@@ -2038,6 +2054,7 @@ export interface VideoCodecSettings {
|
|
|
2038
2054
|
H264Settings?: H264Settings | undefined;
|
|
2039
2055
|
H265Settings?: H265Settings | undefined;
|
|
2040
2056
|
Mpeg2Settings?: Mpeg2Settings | undefined;
|
|
2057
|
+
PassthroughSettings?: PassthroughSettings | undefined;
|
|
2041
2058
|
ProresSettings?: ProresSettings | undefined;
|
|
2042
2059
|
UncompressedSettings?: UncompressedSettings | undefined;
|
|
2043
2060
|
Vc3Settings?: Vc3Settings | undefined;
|
|
@@ -2281,46 +2298,3 @@ export interface VideoPreprocessor {
|
|
|
2281
2298
|
PartnerWatermarking?: PartnerWatermarking | undefined;
|
|
2282
2299
|
TimecodeBurnin?: TimecodeBurnin | undefined;
|
|
2283
2300
|
}
|
|
2284
|
-
export interface VideoDescription {
|
|
2285
|
-
AfdSignaling?: AfdSignaling | undefined;
|
|
2286
|
-
AntiAlias?: AntiAlias | undefined;
|
|
2287
|
-
ChromaPositionMode?: ChromaPositionMode | undefined;
|
|
2288
|
-
CodecSettings?: VideoCodecSettings | undefined;
|
|
2289
|
-
ColorMetadata?: ColorMetadata | undefined;
|
|
2290
|
-
Crop?: Rectangle | undefined;
|
|
2291
|
-
DropFrameTimecode?: DropFrameTimecode | undefined;
|
|
2292
|
-
FixedAfd?: number | undefined;
|
|
2293
|
-
Height?: number | undefined;
|
|
2294
|
-
Position?: Rectangle | undefined;
|
|
2295
|
-
RespondToAfd?: RespondToAfd | undefined;
|
|
2296
|
-
ScalingBehavior?: ScalingBehavior | undefined;
|
|
2297
|
-
Sharpness?: number | undefined;
|
|
2298
|
-
TimecodeInsertion?: VideoTimecodeInsertion | undefined;
|
|
2299
|
-
TimecodeTrack?: TimecodeTrack | undefined;
|
|
2300
|
-
VideoPreprocessors?: VideoPreprocessor | undefined;
|
|
2301
|
-
Width?: number | undefined;
|
|
2302
|
-
}
|
|
2303
|
-
export interface Output {
|
|
2304
|
-
AudioDescriptions?: AudioDescription[] | undefined;
|
|
2305
|
-
CaptionDescriptions?: CaptionDescription[] | undefined;
|
|
2306
|
-
ContainerSettings?: ContainerSettings | undefined;
|
|
2307
|
-
Extension?: string | undefined;
|
|
2308
|
-
NameModifier?: string | undefined;
|
|
2309
|
-
OutputSettings?: OutputSettings | undefined;
|
|
2310
|
-
Preset?: string | undefined;
|
|
2311
|
-
VideoDescription?: VideoDescription | undefined;
|
|
2312
|
-
}
|
|
2313
|
-
export interface OutputGroup {
|
|
2314
|
-
AutomatedEncodingSettings?: AutomatedEncodingSettings | undefined;
|
|
2315
|
-
CustomName?: string | undefined;
|
|
2316
|
-
Name?: string | undefined;
|
|
2317
|
-
OutputGroupSettings?: OutputGroupSettings | undefined;
|
|
2318
|
-
Outputs?: Output[] | undefined;
|
|
2319
|
-
}
|
|
2320
|
-
export declare const TimecodeSource: {
|
|
2321
|
-
readonly EMBEDDED: "EMBEDDED";
|
|
2322
|
-
readonly SPECIFIEDSTART: "SPECIFIEDSTART";
|
|
2323
|
-
readonly ZEROBASED: "ZEROBASED";
|
|
2324
|
-
};
|
|
2325
|
-
export type TimecodeSource =
|
|
2326
|
-
(typeof TimecodeSource)[keyof typeof TimecodeSource];
|