@aws-sdk/client-mediaconvert 3.953.0 → 3.955.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 +47 -2
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +17 -0
- package/dist-es/schemas/schemas_0.js +26 -2
- package/dist-types/commands/CreateJobCommand.d.ts +104 -44
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +102 -44
- package/dist-types/commands/CreatePresetCommand.d.ts +12 -0
- package/dist-types/commands/GetJobCommand.d.ts +52 -22
- package/dist-types/commands/GetJobTemplateCommand.d.ts +51 -22
- package/dist-types/commands/GetJobsQueryResultsCommand.d.ts +52 -22
- package/dist-types/commands/GetPresetCommand.d.ts +6 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +51 -22
- package/dist-types/commands/ListJobsCommand.d.ts +52 -22
- package/dist-types/commands/ListPresetsCommand.d.ts +6 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +52 -22
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +102 -44
- package/dist-types/commands/UpdatePresetCommand.d.ts +12 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +49 -0
- package/dist-types/models/models_0.d.ts +42 -2
- package/dist-types/ts3.4/models/enums.d.ts +25 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -0
- package/package.json +10 -10
|
@@ -593,6 +593,8 @@ declare const UpdatePresetCommand_base: {
|
|
|
593
593
|
* InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
594
594
|
* MaxBitrate: Number("int"),
|
|
595
595
|
* MinIInterval: Number("int"),
|
|
596
|
+
* MvOverPictureBoundaries: "ENABLED" || "DISABLED",
|
|
597
|
+
* MvTemporalPredictor: "ENABLED" || "DISABLED",
|
|
596
598
|
* NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
597
599
|
* NumberReferenceFrames: Number("int"),
|
|
598
600
|
* ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
@@ -617,7 +619,11 @@ declare const UpdatePresetCommand_base: {
|
|
|
617
619
|
* Telecine: "NONE" || "SOFT" || "HARD",
|
|
618
620
|
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
619
621
|
* TemporalIds: "DISABLED" || "ENABLED",
|
|
622
|
+
* TileHeight: Number("int"),
|
|
623
|
+
* TilePadding: "NONE" || "PADDED",
|
|
624
|
+
* TileWidth: Number("int"),
|
|
620
625
|
* Tiles: "DISABLED" || "ENABLED",
|
|
626
|
+
* TreeBlockSize: "AUTO" || "TREE_SIZE_32X32",
|
|
621
627
|
* UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
622
628
|
* WriteMp4PackagingType: "HVC1" || "HEV1",
|
|
623
629
|
* },
|
|
@@ -1464,6 +1470,8 @@ declare const UpdatePresetCommand_base: {
|
|
|
1464
1470
|
* // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
1465
1471
|
* // MaxBitrate: Number("int"),
|
|
1466
1472
|
* // MinIInterval: Number("int"),
|
|
1473
|
+
* // MvOverPictureBoundaries: "ENABLED" || "DISABLED",
|
|
1474
|
+
* // MvTemporalPredictor: "ENABLED" || "DISABLED",
|
|
1467
1475
|
* // NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
1468
1476
|
* // NumberReferenceFrames: Number("int"),
|
|
1469
1477
|
* // ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
@@ -1488,7 +1496,11 @@ declare const UpdatePresetCommand_base: {
|
|
|
1488
1496
|
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
1489
1497
|
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1490
1498
|
* // TemporalIds: "DISABLED" || "ENABLED",
|
|
1499
|
+
* // TileHeight: Number("int"),
|
|
1500
|
+
* // TilePadding: "NONE" || "PADDED",
|
|
1501
|
+
* // TileWidth: Number("int"),
|
|
1491
1502
|
* // Tiles: "DISABLED" || "ENABLED",
|
|
1503
|
+
* // TreeBlockSize: "AUTO" || "TREE_SIZE_32X32",
|
|
1492
1504
|
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
1493
1505
|
* // WriteMp4PackagingType: "HVC1" || "HEV1",
|
|
1494
1506
|
* // },
|
package/dist-types/index.d.ts
CHANGED
|
@@ -13,5 +13,5 @@ export * from "./schemas/schemas_0";
|
|
|
13
13
|
export * from "./pagination";
|
|
14
14
|
export * from "./models/enums";
|
|
15
15
|
export * from "./models/errors";
|
|
16
|
-
export
|
|
16
|
+
export * from "./models/models_0";
|
|
17
17
|
export { MediaConvertServiceException } from "./models/MediaConvertServiceException";
|
|
@@ -1617,6 +1617,7 @@ export declare const CaptionSourceType: {
|
|
|
1617
1617
|
readonly STL: "STL";
|
|
1618
1618
|
readonly TELETEXT: "TELETEXT";
|
|
1619
1619
|
readonly TTML: "TTML";
|
|
1620
|
+
readonly TT_3GPP: "TT_3GPP";
|
|
1620
1621
|
readonly WEBVTT: "WEBVTT";
|
|
1621
1622
|
};
|
|
1622
1623
|
/**
|
|
@@ -4422,6 +4423,30 @@ export declare const H265InterlaceMode: {
|
|
|
4422
4423
|
* @public
|
|
4423
4424
|
*/
|
|
4424
4425
|
export type H265InterlaceMode = (typeof H265InterlaceMode)[keyof typeof H265InterlaceMode];
|
|
4426
|
+
/**
|
|
4427
|
+
* @public
|
|
4428
|
+
* @enum
|
|
4429
|
+
*/
|
|
4430
|
+
export declare const H265MvOverPictureBoundaries: {
|
|
4431
|
+
readonly DISABLED: "DISABLED";
|
|
4432
|
+
readonly ENABLED: "ENABLED";
|
|
4433
|
+
};
|
|
4434
|
+
/**
|
|
4435
|
+
* @public
|
|
4436
|
+
*/
|
|
4437
|
+
export type H265MvOverPictureBoundaries = (typeof H265MvOverPictureBoundaries)[keyof typeof H265MvOverPictureBoundaries];
|
|
4438
|
+
/**
|
|
4439
|
+
* @public
|
|
4440
|
+
* @enum
|
|
4441
|
+
*/
|
|
4442
|
+
export declare const H265MvTemporalPredictor: {
|
|
4443
|
+
readonly DISABLED: "DISABLED";
|
|
4444
|
+
readonly ENABLED: "ENABLED";
|
|
4445
|
+
};
|
|
4446
|
+
/**
|
|
4447
|
+
* @public
|
|
4448
|
+
*/
|
|
4449
|
+
export type H265MvTemporalPredictor = (typeof H265MvTemporalPredictor)[keyof typeof H265MvTemporalPredictor];
|
|
4425
4450
|
/**
|
|
4426
4451
|
* @public
|
|
4427
4452
|
* @enum
|
|
@@ -4559,6 +4584,18 @@ export declare const H265TemporalIds: {
|
|
|
4559
4584
|
* @public
|
|
4560
4585
|
*/
|
|
4561
4586
|
export type H265TemporalIds = (typeof H265TemporalIds)[keyof typeof H265TemporalIds];
|
|
4587
|
+
/**
|
|
4588
|
+
* @public
|
|
4589
|
+
* @enum
|
|
4590
|
+
*/
|
|
4591
|
+
export declare const H265TilePadding: {
|
|
4592
|
+
readonly NONE: "NONE";
|
|
4593
|
+
readonly PADDED: "PADDED";
|
|
4594
|
+
};
|
|
4595
|
+
/**
|
|
4596
|
+
* @public
|
|
4597
|
+
*/
|
|
4598
|
+
export type H265TilePadding = (typeof H265TilePadding)[keyof typeof H265TilePadding];
|
|
4562
4599
|
/**
|
|
4563
4600
|
* @public
|
|
4564
4601
|
* @enum
|
|
@@ -4571,6 +4608,18 @@ export declare const H265Tiles: {
|
|
|
4571
4608
|
* @public
|
|
4572
4609
|
*/
|
|
4573
4610
|
export type H265Tiles = (typeof H265Tiles)[keyof typeof H265Tiles];
|
|
4611
|
+
/**
|
|
4612
|
+
* @public
|
|
4613
|
+
* @enum
|
|
4614
|
+
*/
|
|
4615
|
+
export declare const H265TreeBlockSize: {
|
|
4616
|
+
readonly AUTO: "AUTO";
|
|
4617
|
+
readonly TREE_SIZE_32X32: "TREE_SIZE_32X32";
|
|
4618
|
+
};
|
|
4619
|
+
/**
|
|
4620
|
+
* @public
|
|
4621
|
+
*/
|
|
4622
|
+
export type H265TreeBlockSize = (typeof H265TreeBlockSize)[keyof typeof H265TreeBlockSize];
|
|
4574
4623
|
/**
|
|
4575
4624
|
* @public
|
|
4576
4625
|
* @enum
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AacAudioDescriptionBroadcasterMix, AacCodecProfile, AacCodingMode, AacLoudnessMeasurementMode, AacRateControlMode, AacRawFormat, AacSpecification, AacVbrQuality, Ac3BitstreamMode, Ac3CodingMode, Ac3DynamicRangeCompressionLine, Ac3DynamicRangeCompressionProfile, Ac3DynamicRangeCompressionRf, Ac3LfeFilter, Ac3MetadataControl, AccelerationMode, AccelerationStatus, AdvancedInputFilter, AdvancedInputFilterAddTexture, AdvancedInputFilterSharpen, AfdSignaling, AlphaBehavior, AncillaryConvert608To708, AncillaryTerminateCaptions, AntiAlias, AudioChannelTag, AudioCodec, AudioDefaultSelection, AudioDurationCorrection, AudioLanguageCodeControl, AudioNormalizationAlgorithm, AudioNormalizationAlgorithmControl, AudioNormalizationLoudnessLogging, AudioNormalizationPeakCalculation, AudioSelectorType, AudioTypeControl, Av1AdaptiveQuantization, Av1BitDepth, Av1FilmGrainSynthesis, Av1FramerateControl, Av1FramerateConversionAlgorithm, Av1RateControlMode, Av1SpatialAdaptiveQuantization, AvcIntraClass, AvcIntraFramerateControl, AvcIntraFramerateConversionAlgorithm, AvcIntraInterlaceMode, AvcIntraScanTypeConversionMode, AvcIntraSlowPal, AvcIntraTelecine, AvcIntraUhdQualityTuningLevel, BandwidthReductionFilterSharpening, BandwidthReductionFilterStrength, BillingTagsSource, BurninSubtitleAlignment, BurninSubtitleApplyFontColor, BurninSubtitleBackgroundColor, BurninSubtitleFallbackFont, BurninSubtitleFontColor, BurninSubtitleOutlineColor, BurninSubtitleShadowColor, BurnInSubtitleStylePassthrough, BurninSubtitleTeletextSpacing, CaptionDestinationType, CaptionSourceByteRateLimit, CaptionSourceConvertPaintOnToPopOn, CaptionSourceType, CaptionSourceUpconvertSTLToTeletext, ChromaPositionMode, CmafClientCache, CmafCodecSpecification, CmafEncryptionType, CmafImageBasedTrickPlay, CmafInitializationVectorInManifest, CmafIntervalCadence, CmafKeyProviderType, CmafManifestCompression, CmafManifestDurationFormat, CmafMpdManifestBandwidthType, CmafMpdProfile, CmafPtsOffsetHandlingForBFrames, CmafSegmentControl, CmafSegmentLengthControl, CmafStreamInfResolution, CmafTargetDurationCompatibilityMode, CmafVideoCompositionOffsets, CmafWriteDASHManifest, CmafWriteHLSManifest, CmafWriteSegmentTimelineInRepresentation, CmfcAudioDuration, CmfcAudioTrackType, CmfcC2paManifest, CmfcDescriptiveVideoServiceFlag, CmfcIFrameOnlyManifest, CmfcKlvMetadata, CmfcManifestMetadataSignaling, CmfcScte35Esam, CmfcScte35Source, CmfcTimedMetadata, CmfcTimedMetadataBoxVersion, Codec, ColorMetadata, ColorPrimaries, ColorSpace, ColorSpaceConversion, ColorSpaceUsage, Commitment, ContainerType, CopyProtectionAction, DashIsoGroupAudioChannelConfigSchemeIdUri, DashIsoHbbtvCompliance, DashIsoImageBasedTrickPlay, DashIsoIntervalCadence, DashIsoMpdManifestBandwidthType, DashIsoMpdProfile, DashIsoPlaybackDeviceCompatibility, DashIsoPtsOffsetHandlingForBFrames, DashIsoSegmentControl, DashIsoSegmentLengthControl, DashIsoVideoCompositionOffsets, DashIsoWriteSegmentTimelineInRepresentation, DashManifestStyle, DecryptionMode, DeinterlaceAlgorithm, DeinterlacerControl, DeinterlacerMode, DescribeEndpointsMode, DolbyVisionLevel6Mode, DolbyVisionMapping, DolbyVisionProfile, DropFrameTimecode, DvbddsHandling, DvbSubSubtitleFallbackFont, DvbSubtitleAlignment, DvbSubtitleApplyFontColor, DvbSubtitleBackgroundColor, DvbSubtitleFontColor, DvbSubtitleOutlineColor, DvbSubtitleShadowColor, DvbSubtitleStylePassthrough, DvbSubtitleTeletextSpacing, DvbSubtitlingType, DynamicAudioSelectorType, Eac3AtmosBitstreamMode, Eac3AtmosCodingMode, Eac3AtmosDialogueIntelligence, Eac3AtmosDownmixControl, Eac3AtmosDynamicRangeCompressionLine, Eac3AtmosDynamicRangeCompressionRf, Eac3AtmosDynamicRangeControl, Eac3AtmosMeteringMode, Eac3AtmosStereoDownmix, Eac3AtmosSurroundExMode, Eac3AttenuationControl, Eac3BitstreamMode, Eac3CodingMode, Eac3DcFilter, Eac3DynamicRangeCompressionLine, Eac3DynamicRangeCompressionRf, Eac3LfeControl, Eac3LfeFilter, Eac3MetadataControl, Eac3PassthroughControl, Eac3PhaseControl, Eac3StereoDownmix, Eac3SurroundExMode, Eac3SurroundMode, EmbeddedConvert608To708, EmbeddedTerminateCaptions, EmbeddedTimecodeOverride, F4vMoovPlacement, FileSourceConvert608To708, FileSourceTimeDeltaUnits, FontScript, Format, FrameControl, FrameMetricType, GifFramerateControl, GifFramerateConversionAlgorithm, H264AdaptiveQuantization, H264CodecLevel, H264CodecProfile, H264DynamicSubGop, H264EndOfStreamMarkers, H264EntropyEncoding, H264FieldEncoding, H264FlickerAdaptiveQuantization, H264FramerateControl, H264FramerateConversionAlgorithm, H264GopBReference, H264GopSizeUnits, H264InterlaceMode, H264ParControl, H264QualityTuningLevel, H264RateControlMode, H264RepeatPps, H264SaliencyAwareEncoding, H264ScanTypeConversionMode, H264SceneChangeDetect, H264SlowPal, H264SpatialAdaptiveQuantization, H264Syntax, H264Telecine, H264TemporalAdaptiveQuantization, H264UnregisteredSeiTimecode, H264WriteMp4PackagingType, H265AdaptiveQuantization, H265AlternateTransferFunctionSei, H265CodecLevel, H265CodecProfile, H265Deblocking, H265DynamicSubGop, H265EndOfStreamMarkers, H265FlickerAdaptiveQuantization, H265FramerateControl, H265FramerateConversionAlgorithm, H265GopBReference, H265GopSizeUnits, H265InterlaceMode, H265ParControl, H265QualityTuningLevel, H265RateControlMode, H265SampleAdaptiveOffsetFilterMode, H265ScanTypeConversionMode, H265SceneChangeDetect, H265SlowPal, H265SpatialAdaptiveQuantization, H265Telecine, H265TemporalAdaptiveQuantization, H265TemporalIds, H265Tiles, H265UnregisteredSeiTimecode, H265WriteMp4PackagingType, HDRToSDRToneMapper, HlsAdMarkers, HlsAudioOnlyContainer, HlsAudioOnlyHeader, HlsAudioTrackType, HlsCaptionLanguageSetting, HlsCaptionSegmentLengthControl, HlsClientCache, HlsCodecSpecification, HlsDescriptiveVideoServiceFlag, HlsDirectoryStructure, HlsEncryptionType, HlsIFrameOnlyManifest, HlsImageBasedTrickPlay, HlsInitializationVectorInManifest, HlsIntervalCadence, HlsKeyProviderType, HlsManifestCompression, HlsManifestDurationFormat, HlsOfflineEncrypted, HlsOutputSelection, HlsProgramDateTime, HlsProgressiveWriteHlsManifest, HlsSegmentControl, HlsSegmentLengthControl, HlsStreamInfResolution, HlsTargetDurationCompatibilityMode, HlsTimedMetadataId3Frame, ImscAccessibilitySubs, ImscStylePassthrough, InputDeblockFilter, InputDenoiseFilter, InputFilterEnable, InputPolicy, InputPsiControl, InputRotate, InputSampleRange, InputScanType, InputTimecodeSource, JobPhase, JobsQueryFilterKey, JobsQueryStatus, JobStatus, JobTemplateListBy, LanguageCode, M2tsAudioBufferModel, M2tsAudioDuration, M2tsBufferModel, M2tsDataPtsControl, M2tsEbpAudioInterval, M2tsEbpPlacement, M2tsEsRateInPes, M2tsForceTsVideoEbpOrder, M2tsKlvMetadata, M2tsNielsenId3, M2tsPcrControl, M2tsPreventBufferUnderflow, M2tsRateMode, M2tsScte35Source, M2tsSegmentationMarkers, M2tsSegmentationStyle, M3u8AudioDuration, M3u8DataPtsControl, M3u8NielsenId3, M3u8PcrControl, M3u8Scte35Source, MatrixCoefficients, MotionImageInsertionMode, MotionImagePlayback, MovClapAtom, MovCslgAtom, MovMpeg2FourCCControl, MovPaddingControl, MovReference, Mp2AudioDescriptionMix, Mp3RateControlMode, Mp4C2paManifest, Mp4CslgAtom, Mp4FreeSpaceBox, Mp4MoovPlacement, MpdAccessibilityCaptionHints, MpdAudioDuration, MpdC2paManifest, MpdCaptionContainerType, MpdKlvMetadata, MpdManifestMetadataSignaling, MpdScte35Esam, MpdScte35Source, MpdTimedMetadata, MpdTimedMetadataBoxVersion, Mpeg2AdaptiveQuantization, Mpeg2CodecLevel, Mpeg2CodecProfile, Mpeg2DynamicSubGop, Mpeg2FramerateControl, Mpeg2FramerateConversionAlgorithm, Mpeg2GopSizeUnits, Mpeg2InterlaceMode, Mpeg2IntraDcPrecision, Mpeg2ParControl, Mpeg2QualityTuningLevel, Mpeg2RateControlMode, Mpeg2ScanTypeConversionMode, Mpeg2SceneChangeDetect, Mpeg2SlowPal, Mpeg2SpatialAdaptiveQuantization, Mpeg2Syntax, Mpeg2Telecine, Mpeg2TemporalAdaptiveQuantization, MsSmoothAudioDeduplication, MsSmoothFragmentLengthControl, MsSmoothManifestEncoding, MxfAfdSignaling, MxfProfile, MxfXavcDurationMode, NielsenActiveWatermarkProcessType, NielsenSourceWatermarkStatusType, NielsenUniqueTicPerAudioTrackType, NoiseFilterPostTemporalSharpening, NoiseFilterPostTemporalSharpeningStrength, NoiseReducerFilter, Order, OutputGroupType, OutputSdt, PadVideo, PresetListBy, PresetSpeke20Audio, PresetSpeke20Video, PricingPlan, ProresChromaSampling, ProresCodecProfile, ProresFramerateControl, ProresFramerateConversionAlgorithm, ProresInterlaceMode, ProresParControl, ProresScanTypeConversionMode, ProresSlowPal, ProresTelecine, QueueListBy, QueueStatus, RemoveRubyReserveAttributes, RenewalType, RequiredFlag, ReservationPlanStatus, RespondToAfd, RuleType, S3ObjectCannedAcl, S3ServerSideEncryptionType, S3StorageClass, SampleRangeConversion, ScalingBehavior, SccDestinationFramerate, ShareStatus, SimulateReservedQueue, SlowPalPitchCorrection, SrtStylePassthrough, StatusUpdateInterval, TamsGapHandling, TeletextPageType, TimecodeBurninPosition, TimecodeSource, TimecodeTrack, TimedMetadata, TrackType, TransferCharacteristics, TsPtsOffset, TtmlStylePassthrough, Type, UncompressedFourcc, UncompressedFramerateControl, UncompressedFramerateConversionAlgorithm, UncompressedInterlaceMode, UncompressedScanTypeConversionMode, UncompressedSlowPal, UncompressedTelecine, Vc3Class, Vc3FramerateControl, Vc3FramerateConversionAlgorithm, Vc3InterlaceMode, Vc3ScanTypeConversionMode, Vc3SlowPal, Vc3Telecine, VchipAction, VideoCodec, VideoOverlayPlayBackMode, VideoOverlayUnit, VideoSelectorMode, VideoSelectorType, VideoTimecodeInsertion, Vp8FramerateControl, Vp8FramerateConversionAlgorithm, Vp8ParControl, Vp8QualityTuningLevel, Vp8RateControlMode, Vp9FramerateControl, Vp9FramerateConversionAlgorithm, Vp9ParControl, Vp9QualityTuningLevel, Vp9RateControlMode, WatermarkingStrength, WavFormat, WebvttAccessibilitySubs, WebvttStylePassthrough, Xavc4kIntraCbgProfileClass, Xavc4kIntraVbrProfileClass, Xavc4kProfileBitrateClass, Xavc4kProfileCodecProfile, Xavc4kProfileQualityTuningLevel, XavcAdaptiveQuantization, XavcEntropyEncoding, XavcFlickerAdaptiveQuantization, XavcFramerateControl, XavcFramerateConversionAlgorithm, XavcGopBReference, XavcHdIntraCbgProfileClass, XavcHdProfileBitrateClass, XavcHdProfileQualityTuningLevel, XavcHdProfileTelecine, XavcInterlaceMode, XavcProfile, XavcSlowPal, XavcSpatialAdaptiveQuantization, XavcTemporalAdaptiveQuantization } from "./enums";
|
|
1
|
+
import { AacAudioDescriptionBroadcasterMix, AacCodecProfile, AacCodingMode, AacLoudnessMeasurementMode, AacRateControlMode, AacRawFormat, AacSpecification, AacVbrQuality, Ac3BitstreamMode, Ac3CodingMode, Ac3DynamicRangeCompressionLine, Ac3DynamicRangeCompressionProfile, Ac3DynamicRangeCompressionRf, Ac3LfeFilter, Ac3MetadataControl, AccelerationMode, AccelerationStatus, AdvancedInputFilter, AdvancedInputFilterAddTexture, AdvancedInputFilterSharpen, AfdSignaling, AlphaBehavior, AncillaryConvert608To708, AncillaryTerminateCaptions, AntiAlias, AudioChannelTag, AudioCodec, AudioDefaultSelection, AudioDurationCorrection, AudioLanguageCodeControl, AudioNormalizationAlgorithm, AudioNormalizationAlgorithmControl, AudioNormalizationLoudnessLogging, AudioNormalizationPeakCalculation, AudioSelectorType, AudioTypeControl, Av1AdaptiveQuantization, Av1BitDepth, Av1FilmGrainSynthesis, Av1FramerateControl, Av1FramerateConversionAlgorithm, Av1RateControlMode, Av1SpatialAdaptiveQuantization, AvcIntraClass, AvcIntraFramerateControl, AvcIntraFramerateConversionAlgorithm, AvcIntraInterlaceMode, AvcIntraScanTypeConversionMode, AvcIntraSlowPal, AvcIntraTelecine, AvcIntraUhdQualityTuningLevel, BandwidthReductionFilterSharpening, BandwidthReductionFilterStrength, BillingTagsSource, BurninSubtitleAlignment, BurninSubtitleApplyFontColor, BurninSubtitleBackgroundColor, BurninSubtitleFallbackFont, BurninSubtitleFontColor, BurninSubtitleOutlineColor, BurninSubtitleShadowColor, BurnInSubtitleStylePassthrough, BurninSubtitleTeletextSpacing, CaptionDestinationType, CaptionSourceByteRateLimit, CaptionSourceConvertPaintOnToPopOn, CaptionSourceType, CaptionSourceUpconvertSTLToTeletext, ChromaPositionMode, CmafClientCache, CmafCodecSpecification, CmafEncryptionType, CmafImageBasedTrickPlay, CmafInitializationVectorInManifest, CmafIntervalCadence, CmafKeyProviderType, CmafManifestCompression, CmafManifestDurationFormat, CmafMpdManifestBandwidthType, CmafMpdProfile, CmafPtsOffsetHandlingForBFrames, CmafSegmentControl, CmafSegmentLengthControl, CmafStreamInfResolution, CmafTargetDurationCompatibilityMode, CmafVideoCompositionOffsets, CmafWriteDASHManifest, CmafWriteHLSManifest, CmafWriteSegmentTimelineInRepresentation, CmfcAudioDuration, CmfcAudioTrackType, CmfcC2paManifest, CmfcDescriptiveVideoServiceFlag, CmfcIFrameOnlyManifest, CmfcKlvMetadata, CmfcManifestMetadataSignaling, CmfcScte35Esam, CmfcScte35Source, CmfcTimedMetadata, CmfcTimedMetadataBoxVersion, Codec, ColorMetadata, ColorPrimaries, ColorSpace, ColorSpaceConversion, ColorSpaceUsage, Commitment, ContainerType, CopyProtectionAction, DashIsoGroupAudioChannelConfigSchemeIdUri, DashIsoHbbtvCompliance, DashIsoImageBasedTrickPlay, DashIsoIntervalCadence, DashIsoMpdManifestBandwidthType, DashIsoMpdProfile, DashIsoPlaybackDeviceCompatibility, DashIsoPtsOffsetHandlingForBFrames, DashIsoSegmentControl, DashIsoSegmentLengthControl, DashIsoVideoCompositionOffsets, DashIsoWriteSegmentTimelineInRepresentation, DashManifestStyle, DecryptionMode, DeinterlaceAlgorithm, DeinterlacerControl, DeinterlacerMode, DescribeEndpointsMode, DolbyVisionLevel6Mode, DolbyVisionMapping, DolbyVisionProfile, DropFrameTimecode, DvbddsHandling, DvbSubSubtitleFallbackFont, DvbSubtitleAlignment, DvbSubtitleApplyFontColor, DvbSubtitleBackgroundColor, DvbSubtitleFontColor, DvbSubtitleOutlineColor, DvbSubtitleShadowColor, DvbSubtitleStylePassthrough, DvbSubtitleTeletextSpacing, DvbSubtitlingType, DynamicAudioSelectorType, Eac3AtmosBitstreamMode, Eac3AtmosCodingMode, Eac3AtmosDialogueIntelligence, Eac3AtmosDownmixControl, Eac3AtmosDynamicRangeCompressionLine, Eac3AtmosDynamicRangeCompressionRf, Eac3AtmosDynamicRangeControl, Eac3AtmosMeteringMode, Eac3AtmosStereoDownmix, Eac3AtmosSurroundExMode, Eac3AttenuationControl, Eac3BitstreamMode, Eac3CodingMode, Eac3DcFilter, Eac3DynamicRangeCompressionLine, Eac3DynamicRangeCompressionRf, Eac3LfeControl, Eac3LfeFilter, Eac3MetadataControl, Eac3PassthroughControl, Eac3PhaseControl, Eac3StereoDownmix, Eac3SurroundExMode, Eac3SurroundMode, EmbeddedConvert608To708, EmbeddedTerminateCaptions, EmbeddedTimecodeOverride, F4vMoovPlacement, FileSourceConvert608To708, FileSourceTimeDeltaUnits, FontScript, Format, FrameControl, FrameMetricType, GifFramerateControl, GifFramerateConversionAlgorithm, H264AdaptiveQuantization, H264CodecLevel, H264CodecProfile, H264DynamicSubGop, H264EndOfStreamMarkers, H264EntropyEncoding, H264FieldEncoding, H264FlickerAdaptiveQuantization, H264FramerateControl, H264FramerateConversionAlgorithm, H264GopBReference, H264GopSizeUnits, H264InterlaceMode, H264ParControl, H264QualityTuningLevel, H264RateControlMode, H264RepeatPps, H264SaliencyAwareEncoding, H264ScanTypeConversionMode, H264SceneChangeDetect, H264SlowPal, H264SpatialAdaptiveQuantization, H264Syntax, H264Telecine, H264TemporalAdaptiveQuantization, H264UnregisteredSeiTimecode, H264WriteMp4PackagingType, H265AdaptiveQuantization, H265AlternateTransferFunctionSei, H265CodecLevel, H265CodecProfile, H265Deblocking, H265DynamicSubGop, H265EndOfStreamMarkers, H265FlickerAdaptiveQuantization, H265FramerateControl, H265FramerateConversionAlgorithm, H265GopBReference, H265GopSizeUnits, H265InterlaceMode, H265MvOverPictureBoundaries, H265MvTemporalPredictor, H265ParControl, H265QualityTuningLevel, H265RateControlMode, H265SampleAdaptiveOffsetFilterMode, H265ScanTypeConversionMode, H265SceneChangeDetect, H265SlowPal, H265SpatialAdaptiveQuantization, H265Telecine, H265TemporalAdaptiveQuantization, H265TemporalIds, H265TilePadding, H265Tiles, H265TreeBlockSize, H265UnregisteredSeiTimecode, H265WriteMp4PackagingType, HDRToSDRToneMapper, HlsAdMarkers, HlsAudioOnlyContainer, HlsAudioOnlyHeader, HlsAudioTrackType, HlsCaptionLanguageSetting, HlsCaptionSegmentLengthControl, HlsClientCache, HlsCodecSpecification, HlsDescriptiveVideoServiceFlag, HlsDirectoryStructure, HlsEncryptionType, HlsIFrameOnlyManifest, HlsImageBasedTrickPlay, HlsInitializationVectorInManifest, HlsIntervalCadence, HlsKeyProviderType, HlsManifestCompression, HlsManifestDurationFormat, HlsOfflineEncrypted, HlsOutputSelection, HlsProgramDateTime, HlsProgressiveWriteHlsManifest, HlsSegmentControl, HlsSegmentLengthControl, HlsStreamInfResolution, HlsTargetDurationCompatibilityMode, HlsTimedMetadataId3Frame, ImscAccessibilitySubs, ImscStylePassthrough, InputDeblockFilter, InputDenoiseFilter, InputFilterEnable, InputPolicy, InputPsiControl, InputRotate, InputSampleRange, InputScanType, InputTimecodeSource, JobPhase, JobsQueryFilterKey, JobsQueryStatus, JobStatus, JobTemplateListBy, LanguageCode, M2tsAudioBufferModel, M2tsAudioDuration, M2tsBufferModel, M2tsDataPtsControl, M2tsEbpAudioInterval, M2tsEbpPlacement, M2tsEsRateInPes, M2tsForceTsVideoEbpOrder, M2tsKlvMetadata, M2tsNielsenId3, M2tsPcrControl, M2tsPreventBufferUnderflow, M2tsRateMode, M2tsScte35Source, M2tsSegmentationMarkers, M2tsSegmentationStyle, M3u8AudioDuration, M3u8DataPtsControl, M3u8NielsenId3, M3u8PcrControl, M3u8Scte35Source, MatrixCoefficients, MotionImageInsertionMode, MotionImagePlayback, MovClapAtom, MovCslgAtom, MovMpeg2FourCCControl, MovPaddingControl, MovReference, Mp2AudioDescriptionMix, Mp3RateControlMode, Mp4C2paManifest, Mp4CslgAtom, Mp4FreeSpaceBox, Mp4MoovPlacement, MpdAccessibilityCaptionHints, MpdAudioDuration, MpdC2paManifest, MpdCaptionContainerType, MpdKlvMetadata, MpdManifestMetadataSignaling, MpdScte35Esam, MpdScte35Source, MpdTimedMetadata, MpdTimedMetadataBoxVersion, Mpeg2AdaptiveQuantization, Mpeg2CodecLevel, Mpeg2CodecProfile, Mpeg2DynamicSubGop, Mpeg2FramerateControl, Mpeg2FramerateConversionAlgorithm, Mpeg2GopSizeUnits, Mpeg2InterlaceMode, Mpeg2IntraDcPrecision, Mpeg2ParControl, Mpeg2QualityTuningLevel, Mpeg2RateControlMode, Mpeg2ScanTypeConversionMode, Mpeg2SceneChangeDetect, Mpeg2SlowPal, Mpeg2SpatialAdaptiveQuantization, Mpeg2Syntax, Mpeg2Telecine, Mpeg2TemporalAdaptiveQuantization, MsSmoothAudioDeduplication, MsSmoothFragmentLengthControl, MsSmoothManifestEncoding, MxfAfdSignaling, MxfProfile, MxfXavcDurationMode, NielsenActiveWatermarkProcessType, NielsenSourceWatermarkStatusType, NielsenUniqueTicPerAudioTrackType, NoiseFilterPostTemporalSharpening, NoiseFilterPostTemporalSharpeningStrength, NoiseReducerFilter, Order, OutputGroupType, OutputSdt, PadVideo, PresetListBy, PresetSpeke20Audio, PresetSpeke20Video, PricingPlan, ProresChromaSampling, ProresCodecProfile, ProresFramerateControl, ProresFramerateConversionAlgorithm, ProresInterlaceMode, ProresParControl, ProresScanTypeConversionMode, ProresSlowPal, ProresTelecine, QueueListBy, QueueStatus, RemoveRubyReserveAttributes, RenewalType, RequiredFlag, ReservationPlanStatus, RespondToAfd, RuleType, S3ObjectCannedAcl, S3ServerSideEncryptionType, S3StorageClass, SampleRangeConversion, ScalingBehavior, SccDestinationFramerate, ShareStatus, SimulateReservedQueue, SlowPalPitchCorrection, SrtStylePassthrough, StatusUpdateInterval, TamsGapHandling, TeletextPageType, TimecodeBurninPosition, TimecodeSource, TimecodeTrack, TimedMetadata, TrackType, TransferCharacteristics, TsPtsOffset, TtmlStylePassthrough, Type, UncompressedFourcc, UncompressedFramerateControl, UncompressedFramerateConversionAlgorithm, UncompressedInterlaceMode, UncompressedScanTypeConversionMode, UncompressedSlowPal, UncompressedTelecine, Vc3Class, Vc3FramerateControl, Vc3FramerateConversionAlgorithm, Vc3InterlaceMode, Vc3ScanTypeConversionMode, Vc3SlowPal, Vc3Telecine, VchipAction, VideoCodec, VideoOverlayPlayBackMode, VideoOverlayUnit, VideoSelectorMode, VideoSelectorType, VideoTimecodeInsertion, Vp8FramerateControl, Vp8FramerateConversionAlgorithm, Vp8ParControl, Vp8QualityTuningLevel, Vp8RateControlMode, Vp9FramerateControl, Vp9FramerateConversionAlgorithm, Vp9ParControl, Vp9QualityTuningLevel, Vp9RateControlMode, WatermarkingStrength, WavFormat, WebvttAccessibilitySubs, WebvttStylePassthrough, Xavc4kIntraCbgProfileClass, Xavc4kIntraVbrProfileClass, Xavc4kProfileBitrateClass, Xavc4kProfileCodecProfile, Xavc4kProfileQualityTuningLevel, XavcAdaptiveQuantization, XavcEntropyEncoding, XavcFlickerAdaptiveQuantization, XavcFramerateControl, XavcFramerateConversionAlgorithm, XavcGopBReference, XavcHdIntraCbgProfileClass, XavcHdProfileBitrateClass, XavcHdProfileQualityTuningLevel, XavcHdProfileTelecine, XavcInterlaceMode, XavcProfile, XavcSlowPal, XavcSpatialAdaptiveQuantization, XavcTemporalAdaptiveQuantization } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* Use Allowed renditions to specify a list of possible resolutions in your ABR stack. * MediaConvert will create an ABR stack exclusively from the list of resolutions that you specify. * Some resolutions in the Allowed renditions list may not be included, however you can force a resolution to be included by setting Required to ENABLED. * You must specify at least one resolution that is greater than or equal to any resolutions that you specify in Min top rendition size or Min bottom rendition size. * If you specify Allowed renditions, you must not specify a separate rule for Force include renditions.
|
|
4
4
|
* @public
|
|
@@ -1578,7 +1578,7 @@ export interface AudioSelector {
|
|
|
1578
1578
|
*/
|
|
1579
1579
|
CustomLanguageCode?: string | undefined;
|
|
1580
1580
|
/**
|
|
1581
|
-
*
|
|
1581
|
+
* Specify a fallback audio selector for this input. Use to ensure outputs have audio even when the audio selector you specify in your output is missing from the source. DEFAULT (Checked in the MediaConvert console): If your output settings specify an audio selector that does not exist in this input, MediaConvert uses this audio selector instead. This is useful when you have multiple inputs with a different number of audio tracks. NOT_DEFAULT (Unchecked in the MediaConvert console): MediaConvert will not fallback from any missing audio selector. Any output specifying a missing audio selector will be silent.
|
|
1582
1582
|
* @public
|
|
1583
1583
|
*/
|
|
1584
1584
|
DefaultSelection?: AudioDefaultSelection | undefined;
|
|
@@ -2105,6 +2105,11 @@ export interface InputVideoGenerator {
|
|
|
2105
2105
|
* @public
|
|
2106
2106
|
*/
|
|
2107
2107
|
Height?: number | undefined;
|
|
2108
|
+
/**
|
|
2109
|
+
* Specify the HTTP, HTTPS, or Amazon S3 location of the image that you want to overlay on the video. Use a PNG or TGA file.
|
|
2110
|
+
* @public
|
|
2111
|
+
*/
|
|
2112
|
+
ImageInput?: string | undefined;
|
|
2108
2113
|
/**
|
|
2109
2114
|
* Specify the audio sample rate, in Hz, for the silent audio in your video generator input.
|
|
2110
2115
|
* Enter an integer from 32000 to 48000.
|
|
@@ -2205,6 +2210,11 @@ export interface VideoOverlayInputClipping {
|
|
|
2205
2210
|
* @public
|
|
2206
2211
|
*/
|
|
2207
2212
|
export interface VideoOverlayInput {
|
|
2213
|
+
/**
|
|
2214
|
+
* Use Audio selectors to specify audio to use during your Video overlay. You can use multiple Audio selectors per Video overlay. When you include an Audio selector within a Video overlay, MediaConvert mutes any Audio selectors with the same name from the underlying input. For example, if your underlying input has Audio selector 1 and Audio selector 2, and your Video overlay only has Audio selector 1, then MediaConvert replaces all audio for Audio selector 1 during the Video overlay. To replace all audio for all Audio selectors from the underlying input by using a single Audio selector in your overlay, set DefaultSelection to DEFAULT (Check \"Use as default\" in the MediaConvert console).
|
|
2215
|
+
* @public
|
|
2216
|
+
*/
|
|
2217
|
+
AudioSelectors?: Record<string, AudioSelector> | undefined;
|
|
2208
2218
|
/**
|
|
2209
2219
|
* Specify the input file S3, HTTP, or HTTPS URL for your video overlay.
|
|
2210
2220
|
* To specify one or more Transitions for your base input video instead: Leave blank.
|
|
@@ -5495,6 +5505,16 @@ export interface H265Settings {
|
|
|
5495
5505
|
* @public
|
|
5496
5506
|
*/
|
|
5497
5507
|
MinIInterval?: number | undefined;
|
|
5508
|
+
/**
|
|
5509
|
+
* If you are setting up the picture as a tile, you must set this to "disabled". In all other configurations, you typically enter "enabled".
|
|
5510
|
+
* @public
|
|
5511
|
+
*/
|
|
5512
|
+
MvOverPictureBoundaries?: H265MvOverPictureBoundaries | undefined;
|
|
5513
|
+
/**
|
|
5514
|
+
* If you are setting up the picture as a tile, you must set this to "disabled". In other configurations, you typically enter "enabled".
|
|
5515
|
+
* @public
|
|
5516
|
+
*/
|
|
5517
|
+
MvTemporalPredictor?: H265MvTemporalPredictor | undefined;
|
|
5498
5518
|
/**
|
|
5499
5519
|
* Specify the number of B-frames between reference frames in this output. For the best video quality: Leave blank. MediaConvert automatically determines the number of B-frames to use based on the characteristics of your input video. To manually specify the number of B-frames between reference frames: Enter an integer from 0 to 7.
|
|
5500
5520
|
* @public
|
|
@@ -5585,11 +5605,31 @@ export interface H265Settings {
|
|
|
5585
5605
|
* @public
|
|
5586
5606
|
*/
|
|
5587
5607
|
TemporalIds?: H265TemporalIds | undefined;
|
|
5608
|
+
/**
|
|
5609
|
+
* Set this field to set up the picture as a tile. You must also set TileWidth. The tile height must result in 22 or fewer rows in the frame. The tile width must result in 20 or fewer columns in the frame. And finally, the product of the column count and row count must be 64 or less. If the tile width and height are specified, MediaConvert will override the video codec slices field with a value that MediaConvert calculates.
|
|
5610
|
+
* @public
|
|
5611
|
+
*/
|
|
5612
|
+
TileHeight?: number | undefined;
|
|
5613
|
+
/**
|
|
5614
|
+
* Set to "padded" to force MediaConvert to add padding to the frame, to obtain a frame that is a whole multiple of the tile size. If you are setting up the picture as a tile, you must enter "padded". In all other configurations, you typically enter "none".
|
|
5615
|
+
* @public
|
|
5616
|
+
*/
|
|
5617
|
+
TilePadding?: H265TilePadding | undefined;
|
|
5618
|
+
/**
|
|
5619
|
+
* Set this field to set up the picture as a tile. See TileHeight for more information.
|
|
5620
|
+
* @public
|
|
5621
|
+
*/
|
|
5622
|
+
TileWidth?: number | undefined;
|
|
5588
5623
|
/**
|
|
5589
5624
|
* Enable use of tiles, allowing horizontal as well as vertical subdivision of the encoded pictures.
|
|
5590
5625
|
* @public
|
|
5591
5626
|
*/
|
|
5592
5627
|
Tiles?: H265Tiles | undefined;
|
|
5628
|
+
/**
|
|
5629
|
+
* Select the tree block size used for encoding. If you enter "auto", the encoder will pick the best size. If you are setting up the picture as a tile, you must set this to 32x32. In all other configurations, you typically enter "auto".
|
|
5630
|
+
* @public
|
|
5631
|
+
*/
|
|
5632
|
+
TreeBlockSize?: H265TreeBlockSize | undefined;
|
|
5593
5633
|
/**
|
|
5594
5634
|
* Inserts timecode for each frame as 4 bytes of an unregistered SEI message.
|
|
5595
5635
|
* @public
|
|
@@ -980,6 +980,7 @@ export declare const CaptionSourceType: {
|
|
|
980
980
|
readonly STL: "STL";
|
|
981
981
|
readonly TELETEXT: "TELETEXT";
|
|
982
982
|
readonly TTML: "TTML";
|
|
983
|
+
readonly TT_3GPP: "TT_3GPP";
|
|
983
984
|
readonly WEBVTT: "WEBVTT";
|
|
984
985
|
};
|
|
985
986
|
export type CaptionSourceType =
|
|
@@ -2443,6 +2444,18 @@ export declare const H265InterlaceMode: {
|
|
|
2443
2444
|
};
|
|
2444
2445
|
export type H265InterlaceMode =
|
|
2445
2446
|
(typeof H265InterlaceMode)[keyof typeof H265InterlaceMode];
|
|
2447
|
+
export declare const H265MvOverPictureBoundaries: {
|
|
2448
|
+
readonly DISABLED: "DISABLED";
|
|
2449
|
+
readonly ENABLED: "ENABLED";
|
|
2450
|
+
};
|
|
2451
|
+
export type H265MvOverPictureBoundaries =
|
|
2452
|
+
(typeof H265MvOverPictureBoundaries)[keyof typeof H265MvOverPictureBoundaries];
|
|
2453
|
+
export declare const H265MvTemporalPredictor: {
|
|
2454
|
+
readonly DISABLED: "DISABLED";
|
|
2455
|
+
readonly ENABLED: "ENABLED";
|
|
2456
|
+
};
|
|
2457
|
+
export type H265MvTemporalPredictor =
|
|
2458
|
+
(typeof H265MvTemporalPredictor)[keyof typeof H265MvTemporalPredictor];
|
|
2446
2459
|
export declare const H265ParControl: {
|
|
2447
2460
|
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
2448
2461
|
readonly SPECIFIED: "SPECIFIED";
|
|
@@ -2512,11 +2525,23 @@ export declare const H265TemporalIds: {
|
|
|
2512
2525
|
};
|
|
2513
2526
|
export type H265TemporalIds =
|
|
2514
2527
|
(typeof H265TemporalIds)[keyof typeof H265TemporalIds];
|
|
2528
|
+
export declare const H265TilePadding: {
|
|
2529
|
+
readonly NONE: "NONE";
|
|
2530
|
+
readonly PADDED: "PADDED";
|
|
2531
|
+
};
|
|
2532
|
+
export type H265TilePadding =
|
|
2533
|
+
(typeof H265TilePadding)[keyof typeof H265TilePadding];
|
|
2515
2534
|
export declare const H265Tiles: {
|
|
2516
2535
|
readonly DISABLED: "DISABLED";
|
|
2517
2536
|
readonly ENABLED: "ENABLED";
|
|
2518
2537
|
};
|
|
2519
2538
|
export type H265Tiles = (typeof H265Tiles)[keyof typeof H265Tiles];
|
|
2539
|
+
export declare const H265TreeBlockSize: {
|
|
2540
|
+
readonly AUTO: "AUTO";
|
|
2541
|
+
readonly TREE_SIZE_32X32: "TREE_SIZE_32X32";
|
|
2542
|
+
};
|
|
2543
|
+
export type H265TreeBlockSize =
|
|
2544
|
+
(typeof H265TreeBlockSize)[keyof typeof H265TreeBlockSize];
|
|
2520
2545
|
export declare const H265UnregisteredSeiTimecode: {
|
|
2521
2546
|
readonly DISABLED: "DISABLED";
|
|
2522
2547
|
readonly ENABLED: "ENABLED";
|
|
@@ -218,6 +218,8 @@ import {
|
|
|
218
218
|
H265GopBReference,
|
|
219
219
|
H265GopSizeUnits,
|
|
220
220
|
H265InterlaceMode,
|
|
221
|
+
H265MvOverPictureBoundaries,
|
|
222
|
+
H265MvTemporalPredictor,
|
|
221
223
|
H265ParControl,
|
|
222
224
|
H265QualityTuningLevel,
|
|
223
225
|
H265RateControlMode,
|
|
@@ -229,7 +231,9 @@ import {
|
|
|
229
231
|
H265Telecine,
|
|
230
232
|
H265TemporalAdaptiveQuantization,
|
|
231
233
|
H265TemporalIds,
|
|
234
|
+
H265TilePadding,
|
|
232
235
|
H265Tiles,
|
|
236
|
+
H265TreeBlockSize,
|
|
233
237
|
H265UnregisteredSeiTimecode,
|
|
234
238
|
H265WriteMp4PackagingType,
|
|
235
239
|
HDRToSDRToneMapper,
|
|
@@ -933,6 +937,7 @@ export interface InputVideoGenerator {
|
|
|
933
937
|
FramerateDenominator?: number | undefined;
|
|
934
938
|
FramerateNumerator?: number | undefined;
|
|
935
939
|
Height?: number | undefined;
|
|
940
|
+
ImageInput?: string | undefined;
|
|
936
941
|
SampleRate?: number | undefined;
|
|
937
942
|
Width?: number | undefined;
|
|
938
943
|
}
|
|
@@ -956,6 +961,7 @@ export interface VideoOverlayInputClipping {
|
|
|
956
961
|
StartTimecode?: string | undefined;
|
|
957
962
|
}
|
|
958
963
|
export interface VideoOverlayInput {
|
|
964
|
+
AudioSelectors?: Record<string, AudioSelector> | undefined;
|
|
959
965
|
FileInput?: string | undefined;
|
|
960
966
|
InputClippings?: VideoOverlayInputClipping[] | undefined;
|
|
961
967
|
TimecodeSource?: InputTimecodeSource | undefined;
|
|
@@ -1688,6 +1694,8 @@ export interface H265Settings {
|
|
|
1688
1694
|
InterlaceMode?: H265InterlaceMode | undefined;
|
|
1689
1695
|
MaxBitrate?: number | undefined;
|
|
1690
1696
|
MinIInterval?: number | undefined;
|
|
1697
|
+
MvOverPictureBoundaries?: H265MvOverPictureBoundaries | undefined;
|
|
1698
|
+
MvTemporalPredictor?: H265MvTemporalPredictor | undefined;
|
|
1691
1699
|
NumberBFramesBetweenReferenceFrames?: number | undefined;
|
|
1692
1700
|
NumberReferenceFrames?: number | undefined;
|
|
1693
1701
|
ParControl?: H265ParControl | undefined;
|
|
@@ -1708,7 +1716,11 @@ export interface H265Settings {
|
|
|
1708
1716
|
Telecine?: H265Telecine | undefined;
|
|
1709
1717
|
TemporalAdaptiveQuantization?: H265TemporalAdaptiveQuantization | undefined;
|
|
1710
1718
|
TemporalIds?: H265TemporalIds | undefined;
|
|
1719
|
+
TileHeight?: number | undefined;
|
|
1720
|
+
TilePadding?: H265TilePadding | undefined;
|
|
1721
|
+
TileWidth?: number | undefined;
|
|
1711
1722
|
Tiles?: H265Tiles | undefined;
|
|
1723
|
+
TreeBlockSize?: H265TreeBlockSize | undefined;
|
|
1712
1724
|
UnregisteredSeiTimecode?: H265UnregisteredSeiTimecode | undefined;
|
|
1713
1725
|
WriteMp4PackagingType?: H265WriteMp4PackagingType | undefined;
|
|
1714
1726
|
}
|
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.955.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-mediaconvert",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/core": "3.954.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.955.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.953.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.953.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.953.0",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.954.0",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "3.953.0",
|
|
31
31
|
"@aws-sdk/types": "3.953.0",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.953.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.953.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.954.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.4",
|
|
36
36
|
"@smithy/core": "^3.19.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.7",
|
|
38
38
|
"@smithy/hash-node": "^4.2.6",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.6",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.6",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.0",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.16",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.7",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.6",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.6",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.6",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.6",
|
|
48
|
-
"@smithy/smithy-client": "^4.10.
|
|
48
|
+
"@smithy/smithy-client": "^4.10.1",
|
|
49
49
|
"@smithy/types": "^4.10.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.6",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.18",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.6",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.6",
|
|
58
58
|
"@smithy/util-retry": "^4.2.6",
|