@aws-sdk/client-medialive 3.983.0 → 3.985.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 +7 -2
- package/dist-es/models/enums.js +4 -0
- package/dist-es/schemas/schemas_0.js +2 -2
- package/dist-types/commands/CreateChannelCommand.d.ts +2 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +1 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +1 -0
- package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +1 -0
- package/dist-types/commands/StartChannelCommand.d.ts +1 -0
- package/dist-types/commands/StopChannelCommand.d.ts +1 -0
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +1 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +2 -0
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +6 -1
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -2853,8 +2853,8 @@ var Av1ColorSpaceSettings$ = [3, n0, _ACSS,
|
|
|
2853
2853
|
];
|
|
2854
2854
|
var Av1Settings$ = [3, n0, _ASv,
|
|
2855
2855
|
0,
|
|
2856
|
-
[_FD, _FN, _ASf, _BS, _CSS, _FA, _GS, _GSU, _L, _LARC, _MB, _MII, _PD, _PN, _QQL, _SCD, _TBS, _B, _RCM, _MBi, _SA, _TA, _TI],
|
|
2857
|
-
[[1, { [_jN]: _fD }], [1, { [_jN]: _fN }], [0, { [_jN]: _aSf }], [1, { [_jN]: _bS }], [() => Av1ColorSpaceSettings$, { [_jN]: _cSS }], [0, { [_jN]: _fA }], [1, { [_jN]: _gS }], [0, { [_jN]: _gSU }], [0, { [_jN]: _l }], [0, { [_jN]: _lARC }], [1, { [_jN]: _mB }], [1, { [_jN]: _mII }], [1, { [_jN]: _pD }], [1, { [_jN]: _pN }], [1, { [_jN]: _qQL }], [0, { [_jN]: _sCD }], [() => TimecodeBurninSettings$, { [_jN]: _tBS }], [1, { [_jN]: _b }], [0, { [_jN]: _rCM }], [1, { [_jN]: _mBi }], [0, { [_jN]: _sA }], [0, { [_jN]: _tA }], [0, { [_jN]: _tI }]], 2
|
|
2856
|
+
[_FD, _FN, _ASf, _BS, _CSS, _FA, _GS, _GSU, _L, _LARC, _MB, _MII, _PD, _PN, _QQL, _SCD, _TBS, _B, _RCM, _MBi, _SA, _TA, _TI, _BD],
|
|
2857
|
+
[[1, { [_jN]: _fD }], [1, { [_jN]: _fN }], [0, { [_jN]: _aSf }], [1, { [_jN]: _bS }], [() => Av1ColorSpaceSettings$, { [_jN]: _cSS }], [0, { [_jN]: _fA }], [1, { [_jN]: _gS }], [0, { [_jN]: _gSU }], [0, { [_jN]: _l }], [0, { [_jN]: _lARC }], [1, { [_jN]: _mB }], [1, { [_jN]: _mII }], [1, { [_jN]: _pD }], [1, { [_jN]: _pN }], [1, { [_jN]: _qQL }], [0, { [_jN]: _sCD }], [() => TimecodeBurninSettings$, { [_jN]: _tBS }], [1, { [_jN]: _b }], [0, { [_jN]: _rCM }], [1, { [_jN]: _mBi }], [0, { [_jN]: _sA }], [0, { [_jN]: _tA }], [0, { [_jN]: _tI }], [0, { [_jN]: _bD }]], 2
|
|
2858
2858
|
];
|
|
2859
2859
|
var AvailBlanking$ = [3, n0, _AB,
|
|
2860
2860
|
0,
|
|
@@ -10428,6 +10428,10 @@ const AfdSignaling = {
|
|
|
10428
10428
|
FIXED: "FIXED",
|
|
10429
10429
|
NONE: "NONE",
|
|
10430
10430
|
};
|
|
10431
|
+
const Av1BitDepth = {
|
|
10432
|
+
DEPTH_10: "DEPTH_10",
|
|
10433
|
+
DEPTH_8: "DEPTH_8",
|
|
10434
|
+
};
|
|
10431
10435
|
const FixedAfd = {
|
|
10432
10436
|
AFD_0000: "AFD_0000",
|
|
10433
10437
|
AFD_0010: "AFD_0010",
|
|
@@ -10968,6 +10972,7 @@ exports.AudioType = AudioType;
|
|
|
10968
10972
|
exports.AudioWatermarkSettings$ = AudioWatermarkSettings$;
|
|
10969
10973
|
exports.AuthenticationScheme = AuthenticationScheme;
|
|
10970
10974
|
exports.AutomaticInputFailoverSettings$ = AutomaticInputFailoverSettings$;
|
|
10975
|
+
exports.Av1BitDepth = Av1BitDepth;
|
|
10971
10976
|
exports.Av1ColorSpaceSettings$ = Av1ColorSpaceSettings$;
|
|
10972
10977
|
exports.Av1GopSizeUnits = Av1GopSizeUnits;
|
|
10973
10978
|
exports.Av1Level = Av1Level;
|
package/dist-es/models/enums.js
CHANGED
|
@@ -1268,6 +1268,10 @@ export const AfdSignaling = {
|
|
|
1268
1268
|
FIXED: "FIXED",
|
|
1269
1269
|
NONE: "NONE",
|
|
1270
1270
|
};
|
|
1271
|
+
export const Av1BitDepth = {
|
|
1272
|
+
DEPTH_10: "DEPTH_10",
|
|
1273
|
+
DEPTH_8: "DEPTH_8",
|
|
1274
|
+
};
|
|
1271
1275
|
export const FixedAfd = {
|
|
1272
1276
|
AFD_0000: "AFD_0000",
|
|
1273
1277
|
AFD_0010: "AFD_0010",
|
|
@@ -2607,8 +2607,8 @@ export var Av1ColorSpaceSettings$ = [3, n0, _ACSS,
|
|
|
2607
2607
|
];
|
|
2608
2608
|
export var Av1Settings$ = [3, n0, _ASv,
|
|
2609
2609
|
0,
|
|
2610
|
-
[_FD, _FN, _ASf, _BS, _CSS, _FA, _GS, _GSU, _L, _LARC, _MB, _MII, _PD, _PN, _QQL, _SCD, _TBS, _B, _RCM, _MBi, _SA, _TA, _TI],
|
|
2611
|
-
[[1, { [_jN]: _fD }], [1, { [_jN]: _fN }], [0, { [_jN]: _aSf }], [1, { [_jN]: _bS }], [() => Av1ColorSpaceSettings$, { [_jN]: _cSS }], [0, { [_jN]: _fA }], [1, { [_jN]: _gS }], [0, { [_jN]: _gSU }], [0, { [_jN]: _l }], [0, { [_jN]: _lARC }], [1, { [_jN]: _mB }], [1, { [_jN]: _mII }], [1, { [_jN]: _pD }], [1, { [_jN]: _pN }], [1, { [_jN]: _qQL }], [0, { [_jN]: _sCD }], [() => TimecodeBurninSettings$, { [_jN]: _tBS }], [1, { [_jN]: _b }], [0, { [_jN]: _rCM }], [1, { [_jN]: _mBi }], [0, { [_jN]: _sA }], [0, { [_jN]: _tA }], [0, { [_jN]: _tI }]], 2
|
|
2610
|
+
[_FD, _FN, _ASf, _BS, _CSS, _FA, _GS, _GSU, _L, _LARC, _MB, _MII, _PD, _PN, _QQL, _SCD, _TBS, _B, _RCM, _MBi, _SA, _TA, _TI, _BD],
|
|
2611
|
+
[[1, { [_jN]: _fD }], [1, { [_jN]: _fN }], [0, { [_jN]: _aSf }], [1, { [_jN]: _bS }], [() => Av1ColorSpaceSettings$, { [_jN]: _cSS }], [0, { [_jN]: _fA }], [1, { [_jN]: _gS }], [0, { [_jN]: _gSU }], [0, { [_jN]: _l }], [0, { [_jN]: _lARC }], [1, { [_jN]: _mB }], [1, { [_jN]: _mII }], [1, { [_jN]: _pD }], [1, { [_jN]: _pN }], [1, { [_jN]: _qQL }], [0, { [_jN]: _sCD }], [() => TimecodeBurninSettings$, { [_jN]: _tBS }], [1, { [_jN]: _b }], [0, { [_jN]: _rCM }], [1, { [_jN]: _mBi }], [0, { [_jN]: _sA }], [0, { [_jN]: _tA }], [0, { [_jN]: _tI }], [0, { [_jN]: _bD }]], 2
|
|
2612
2612
|
];
|
|
2613
2613
|
export var AvailBlanking$ = [3, n0, _AB,
|
|
2614
2614
|
0,
|
|
@@ -1109,6 +1109,7 @@ declare const CreateChannelCommand_base: {
|
|
|
1109
1109
|
* SpatialAq: "DISABLED" || "ENABLED",
|
|
1110
1110
|
* TemporalAq: "DISABLED" || "ENABLED",
|
|
1111
1111
|
* TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1112
|
+
* BitDepth: "DEPTH_10" || "DEPTH_8",
|
|
1112
1113
|
* },
|
|
1113
1114
|
* },
|
|
1114
1115
|
* Height: Number("int"),
|
|
@@ -2393,6 +2394,7 @@ declare const CreateChannelCommand_base: {
|
|
|
2393
2394
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
2394
2395
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
2395
2396
|
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
2397
|
+
* // BitDepth: "DEPTH_10" || "DEPTH_8",
|
|
2396
2398
|
* // },
|
|
2397
2399
|
* // },
|
|
2398
2400
|
* // Height: Number("int"),
|
|
@@ -1120,6 +1120,7 @@ declare const DeleteChannelCommand_base: {
|
|
|
1120
1120
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
1121
1121
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
1122
1122
|
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1123
|
+
* // BitDepth: "DEPTH_10" || "DEPTH_8",
|
|
1123
1124
|
* // },
|
|
1124
1125
|
* // },
|
|
1125
1126
|
* // Height: Number("int"),
|
|
@@ -1120,6 +1120,7 @@ declare const DescribeChannelCommand_base: {
|
|
|
1120
1120
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
1121
1121
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
1122
1122
|
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1123
|
+
* // BitDepth: "DEPTH_10" || "DEPTH_8",
|
|
1123
1124
|
* // },
|
|
1124
1125
|
* // },
|
|
1125
1126
|
* // Height: Number("int"),
|
|
@@ -1123,6 +1123,7 @@ declare const RestartChannelPipelinesCommand_base: {
|
|
|
1123
1123
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
1124
1124
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
1125
1125
|
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1126
|
+
* // BitDepth: "DEPTH_10" || "DEPTH_8",
|
|
1126
1127
|
* // },
|
|
1127
1128
|
* // },
|
|
1128
1129
|
* // Height: Number("int"),
|
|
@@ -1120,6 +1120,7 @@ declare const StartChannelCommand_base: {
|
|
|
1120
1120
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
1121
1121
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
1122
1122
|
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1123
|
+
* // BitDepth: "DEPTH_10" || "DEPTH_8",
|
|
1123
1124
|
* // },
|
|
1124
1125
|
* // },
|
|
1125
1126
|
* // Height: Number("int"),
|
|
@@ -1120,6 +1120,7 @@ declare const StopChannelCommand_base: {
|
|
|
1120
1120
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
1121
1121
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
1122
1122
|
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1123
|
+
* // BitDepth: "DEPTH_10" || "DEPTH_8",
|
|
1123
1124
|
* // },
|
|
1124
1125
|
* // },
|
|
1125
1126
|
* // Height: Number("int"),
|
|
@@ -1160,6 +1160,7 @@ declare const UpdateChannelClassCommand_base: {
|
|
|
1160
1160
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
1161
1161
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
1162
1162
|
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1163
|
+
* // BitDepth: "DEPTH_10" || "DEPTH_8",
|
|
1163
1164
|
* // },
|
|
1164
1165
|
* // },
|
|
1165
1166
|
* // Height: Number("int"),
|
|
@@ -1109,6 +1109,7 @@ declare const UpdateChannelCommand_base: {
|
|
|
1109
1109
|
* SpatialAq: "DISABLED" || "ENABLED",
|
|
1110
1110
|
* TemporalAq: "DISABLED" || "ENABLED",
|
|
1111
1111
|
* TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1112
|
+
* BitDepth: "DEPTH_10" || "DEPTH_8",
|
|
1112
1113
|
* },
|
|
1113
1114
|
* },
|
|
1114
1115
|
* Height: Number("int"),
|
|
@@ -2384,6 +2385,7 @@ declare const UpdateChannelCommand_base: {
|
|
|
2384
2385
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
2385
2386
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
2386
2387
|
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
2388
|
+
* // BitDepth: "DEPTH_10" || "DEPTH_8",
|
|
2387
2389
|
* // },
|
|
2388
2390
|
* // },
|
|
2389
2391
|
* // Height: Number("int"),
|
|
@@ -3236,6 +3236,18 @@ export declare const AfdSignaling: {
|
|
|
3236
3236
|
* @public
|
|
3237
3237
|
*/
|
|
3238
3238
|
export type AfdSignaling = (typeof AfdSignaling)[keyof typeof AfdSignaling];
|
|
3239
|
+
/**
|
|
3240
|
+
* @public
|
|
3241
|
+
* @enum
|
|
3242
|
+
*/
|
|
3243
|
+
export declare const Av1BitDepth: {
|
|
3244
|
+
readonly DEPTH_10: "DEPTH_10";
|
|
3245
|
+
readonly DEPTH_8: "DEPTH_8";
|
|
3246
|
+
};
|
|
3247
|
+
/**
|
|
3248
|
+
* @public
|
|
3249
|
+
*/
|
|
3250
|
+
export type Av1BitDepth = (typeof Av1BitDepth)[keyof typeof Av1BitDepth];
|
|
3239
3251
|
/**
|
|
3240
3252
|
* @public
|
|
3241
3253
|
* @enum
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AacCodingMode, AacInputType, AacProfile, AacRateControlMode, AacRawFormat, AacSpec, AacVbrQuality, Ac3AttenuationControl, Ac3BitstreamMode, Ac3CodingMode, Ac3DrcProfile, Ac3LfeFilter, Ac3MetadataControl, AccessibilityType, AfdSignaling, Algorithm, AudioDescriptionAudioTypeControl, AudioDescriptionLanguageCodeControl, AudioLanguageSelectionPolicy, AudioNormalizationAlgorithm, AudioNormalizationAlgorithmControl, AudioOnlyHlsSegmentType, AudioOnlyHlsTrackType, AudioType, AuthenticationScheme, Av1GopSizeUnits, Av1Level, Av1LookAheadRateControl, Av1RateControlMode, Av1SceneChangeDetect, Av1SpatialAq, Av1TemporalAq, Av1TimecodeInsertionBehavior, AvailBlankingState, BandwidthReductionFilterStrength, BandwidthReductionPostFilterSharpening, BurnInAlignment, BurnInBackgroundColor, BurnInDestinationSubtitleRows, BurnInFontColor, BurnInOutlineColor, BurnInShadowColor, BurnInTeletextGridControl, CdiInputResolution, ChannelAlertState, ChannelClass, ChannelPlacementGroupState, ChannelState, CloudWatchAlarmTemplateComparisonOperator, CloudWatchAlarmTemplateStatistic, CloudWatchAlarmTemplateTargetResourceType, CloudWatchAlarmTemplateTreatMissingData, ClusterAlertState, ClusterState, ClusterType, CmafId3Behavior, CmafIngestSegmentLengthUnits, CmafKLVBehavior, CmafNielsenId3Behavior, CmafTimedMetadataId3Frame, CmafTimedMetadataPassthrough, ColorSpace, ConnectionMode, DashRoleAudio, DashRoleCaption, DeviceSettingsSyncState, DeviceUpdateStatus, DolbyEProgramSelection, DvbDashAccessibility, DvbSdtOutputSdt, DvbSubDestinationAlignment, DvbSubDestinationBackgroundColor, DvbSubDestinationFontColor, DvbSubDestinationOutlineColor, DvbSubDestinationShadowColor, DvbSubDestinationSubtitleRows, DvbSubDestinationTeletextGridControl, DvbSubOcrLanguage, Eac3AtmosCodingMode, Eac3AtmosDrcLine, Eac3AtmosDrcRf, Eac3AttenuationControl, Eac3BitstreamMode, Eac3CodingMode, Eac3DcFilter, Eac3DrcLine, Eac3DrcRf, Eac3LfeControl, Eac3LfeFilter, Eac3MetadataControl, Eac3PassthroughControl, Eac3PhaseControl, Eac3StereoDownmix, Eac3SurroundExMode, Eac3SurroundMode, EbuTtDDestinationStyleControl, EbuTtDFillLineGapControl, EmbeddedConvert608To708, EmbeddedScte20Detection, EventBridgeRuleTemplateEventType, FecOutputIncludeFec, FixedAfd, Fmp4NielsenId3Behavior, Fmp4TimedMetadataBehavior, FollowPoint, FrameCaptureIntervalUnit, H264AdaptiveQuantization, H264ColorMetadata, H264EntropyEncoding, H264FlickerAq, H264ForceFieldPictures, H264FramerateControl, H264GopBReference, H264GopSizeUnits, H264Level, H264LookAheadRateControl, H264ParControl, H264Profile, H264QualityLevel, H264RateControlMode, H264ScanType, H264SceneChangeDetect, H264SpatialAq, H264SubGopLength, H264Syntax, H264TemporalAq, H264TimecodeInsertionBehavior, H265AdaptiveQuantization, H265AlternativeTransferFunction, H265ColorMetadata, H265Deblocking, H265FlickerAq, H265GopBReference, H265GopSizeUnits, H265Level, H265LookAheadRateControl, H265MvOverPictureBoundaries, H265MvTemporalPredictor, H265Profile, H265RateControlMode, H265ScanType, H265SceneChangeDetect, H265SubGopLength, H265Tier, H265TilePadding, H265TimecodeInsertionBehavior, H265TreeblockSize, HlsAdMarkers, HlsAkamaiHttpTransferMode, HlsAutoSelect, HlsCaptionLanguageSetting, HlsClientCache, HlsCodecSpecification, HlsDefault, HlsDirectoryStructure, HlsDiscontinuityTags, HlsEncryptionType, HlsH265PackagingType, HlsId3SegmentTaggingState, HlsIncompleteSegmentBehavior, HlsIvInManifest, HlsIvSource, HlsManifestCompression, HlsManifestDurationFormat, HlsMediaStoreStorageClass, HlsMode, HlsOutputSelection, HlsProgramDateTime, HlsProgramDateTimeClock, HlsRedundantManifest, HlsScte35SourceType, HlsSegmentationMode, HlsStreamInfResolution, HlsTimedMetadataId3Frame, HlsTsFileMode, HlsWebdavHttpTransferMode, IFrameOnlyPlaylistType, IncludeFillerNalUnits, InputClass, InputCodec, InputDeblockFilter, InputDenoiseFilter, InputDeviceActiveInput, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairProfile, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceIpScheme, InputDeviceOutputType, InputDeviceScanType, InputDeviceState, InputDeviceTransferType, InputDeviceType, InputDeviceUhdAudioChannelPairProfile, InputFilter, InputLossActionForHlsOut, InputLossActionForMsSmoothOut, InputLossActionForRtmpOut, InputLossActionForUdpOut, InputMaximumBitrate, InputNetworkLocation, InputPreference, InputResolution, InputSecurityGroupState, InputSourceEndBehavior, InputSourceType, InputState, InputTimecodeSource, InputType, LastFrameClippingBehavior, LinkedChannelType, LogLevel, M2tsAbsentInputAudioBehavior, M2tsArib, M2tsAribCaptionsPidControl, M2tsAudioBufferModel, M2tsAudioInterval, M2tsAudioStreamType, M2tsBufferModel, M2tsCcDescriptor, M2tsEbifControl, M2tsEbpPlacement, M2tsEsRateInPes, M2tsKlv, M2tsNielsenId3Behavior, M2tsPcrControl, M2tsRateMode, M2tsScte35Control, M2tsSegmentationMarkers, M2tsSegmentationStyle, M2tsTimedMetadataBehavior, M3u8KlvBehavior, M3u8NielsenId3Behavior, M3u8PcrControl, M3u8Scte35Behavior, M3u8TimedMetadataBehavior, MaintenanceDay, Mp2CodingMode, Mpeg2AdaptiveQuantization, Mpeg2ColorMetadata, Mpeg2ColorSpace, Mpeg2DisplayRatio, Mpeg2GopSizeUnits, Mpeg2ScanType, Mpeg2SubGopLength, Mpeg2TimecodeInsertionBehavior, MsSmoothH265PackagingType, MultiplexAlertState, MultiplexState, NetworkInputServerValidation, NetworkInterfaceMode, NetworkState, NielsenWatermarksCbetStepaside, NielsenWatermarksDistributionTypes, NielsenWatermarkTimezones, NodeConnectionState, NodeRole, NodeState, OfferingDurationUnits, OfferingType, PipelineId, ReservationAutomaticRenewal, ReservationCodec, ReservationMaximumBitrate, ReservationMaximumFramerate, ReservationResolution, ReservationResourceType, ReservationSpecialFeature, ReservationState, ReservationVideoQuality, RouterEncryptionType, RtmpAdMarkers, RtmpCacheFullBehavior, RtmpCaptionData, RtmpOutputCertificateMode, S3CannedAcl, Scte20Convert608To708, Scte27OcrLanguage, Scte35AposNoRegionalBlackoutBehavior, Scte35AposWebDeliveryAllowedBehavior, Scte35ArchiveAllowedFlag, Scte35DeviceRestrictions, Scte35InputMode, Scte35NoRegionalBlackoutFlag, Scte35SegmentationCancelIndicator, Scte35SegmentationScope, Scte35SpliceInsertNoRegionalBlackoutBehavior, Scte35SpliceInsertWebDeliveryAllowedBehavior, Scte35Type, Scte35WebDeliveryAllowedFlag, SdiSourceMode, SdiSourceState, SdiSourceType, SignalMapMonitorDeploymentStatus, SignalMapStatus, SmoothGroupAudioOnlyTimecodeControl, SmoothGroupCertificateMode, SmoothGroupEventIdMode, SmoothGroupEventStopBehavior, SmoothGroupSegmentationMode, SmoothGroupSparseTrackType, SmoothGroupStreamManifestBehavior, SmoothGroupTimestampOffsetMode, Smpte2038DataPreference, SrtEncryptionType, TemporalFilterPostFilterSharpening, TemporalFilterStrength, ThumbnailType, TimecodeBurninFontSize, TimecodeBurninPosition, TtmlDestinationStyleControl, UdpTimedMetadataId3Frame, VideoDescriptionRespondToAfd, VideoDescriptionScalingBehavior, VideoSelectorColorSpace, VideoSelectorColorSpaceUsage, WavCodingMode, WebvttDestinationStyleControl } from "./enums";
|
|
1
|
+
import { AacCodingMode, AacInputType, AacProfile, AacRateControlMode, AacRawFormat, AacSpec, AacVbrQuality, Ac3AttenuationControl, Ac3BitstreamMode, Ac3CodingMode, Ac3DrcProfile, Ac3LfeFilter, Ac3MetadataControl, AccessibilityType, AfdSignaling, Algorithm, AudioDescriptionAudioTypeControl, AudioDescriptionLanguageCodeControl, AudioLanguageSelectionPolicy, AudioNormalizationAlgorithm, AudioNormalizationAlgorithmControl, AudioOnlyHlsSegmentType, AudioOnlyHlsTrackType, AudioType, AuthenticationScheme, Av1BitDepth, Av1GopSizeUnits, Av1Level, Av1LookAheadRateControl, Av1RateControlMode, Av1SceneChangeDetect, Av1SpatialAq, Av1TemporalAq, Av1TimecodeInsertionBehavior, AvailBlankingState, BandwidthReductionFilterStrength, BandwidthReductionPostFilterSharpening, BurnInAlignment, BurnInBackgroundColor, BurnInDestinationSubtitleRows, BurnInFontColor, BurnInOutlineColor, BurnInShadowColor, BurnInTeletextGridControl, CdiInputResolution, ChannelAlertState, ChannelClass, ChannelPlacementGroupState, ChannelState, CloudWatchAlarmTemplateComparisonOperator, CloudWatchAlarmTemplateStatistic, CloudWatchAlarmTemplateTargetResourceType, CloudWatchAlarmTemplateTreatMissingData, ClusterAlertState, ClusterState, ClusterType, CmafId3Behavior, CmafIngestSegmentLengthUnits, CmafKLVBehavior, CmafNielsenId3Behavior, CmafTimedMetadataId3Frame, CmafTimedMetadataPassthrough, ColorSpace, ConnectionMode, DashRoleAudio, DashRoleCaption, DeviceSettingsSyncState, DeviceUpdateStatus, DolbyEProgramSelection, DvbDashAccessibility, DvbSdtOutputSdt, DvbSubDestinationAlignment, DvbSubDestinationBackgroundColor, DvbSubDestinationFontColor, DvbSubDestinationOutlineColor, DvbSubDestinationShadowColor, DvbSubDestinationSubtitleRows, DvbSubDestinationTeletextGridControl, DvbSubOcrLanguage, Eac3AtmosCodingMode, Eac3AtmosDrcLine, Eac3AtmosDrcRf, Eac3AttenuationControl, Eac3BitstreamMode, Eac3CodingMode, Eac3DcFilter, Eac3DrcLine, Eac3DrcRf, Eac3LfeControl, Eac3LfeFilter, Eac3MetadataControl, Eac3PassthroughControl, Eac3PhaseControl, Eac3StereoDownmix, Eac3SurroundExMode, Eac3SurroundMode, EbuTtDDestinationStyleControl, EbuTtDFillLineGapControl, EmbeddedConvert608To708, EmbeddedScte20Detection, EventBridgeRuleTemplateEventType, FecOutputIncludeFec, FixedAfd, Fmp4NielsenId3Behavior, Fmp4TimedMetadataBehavior, FollowPoint, FrameCaptureIntervalUnit, H264AdaptiveQuantization, H264ColorMetadata, H264EntropyEncoding, H264FlickerAq, H264ForceFieldPictures, H264FramerateControl, H264GopBReference, H264GopSizeUnits, H264Level, H264LookAheadRateControl, H264ParControl, H264Profile, H264QualityLevel, H264RateControlMode, H264ScanType, H264SceneChangeDetect, H264SpatialAq, H264SubGopLength, H264Syntax, H264TemporalAq, H264TimecodeInsertionBehavior, H265AdaptiveQuantization, H265AlternativeTransferFunction, H265ColorMetadata, H265Deblocking, H265FlickerAq, H265GopBReference, H265GopSizeUnits, H265Level, H265LookAheadRateControl, H265MvOverPictureBoundaries, H265MvTemporalPredictor, H265Profile, H265RateControlMode, H265ScanType, H265SceneChangeDetect, H265SubGopLength, H265Tier, H265TilePadding, H265TimecodeInsertionBehavior, H265TreeblockSize, HlsAdMarkers, HlsAkamaiHttpTransferMode, HlsAutoSelect, HlsCaptionLanguageSetting, HlsClientCache, HlsCodecSpecification, HlsDefault, HlsDirectoryStructure, HlsDiscontinuityTags, HlsEncryptionType, HlsH265PackagingType, HlsId3SegmentTaggingState, HlsIncompleteSegmentBehavior, HlsIvInManifest, HlsIvSource, HlsManifestCompression, HlsManifestDurationFormat, HlsMediaStoreStorageClass, HlsMode, HlsOutputSelection, HlsProgramDateTime, HlsProgramDateTimeClock, HlsRedundantManifest, HlsScte35SourceType, HlsSegmentationMode, HlsStreamInfResolution, HlsTimedMetadataId3Frame, HlsTsFileMode, HlsWebdavHttpTransferMode, IFrameOnlyPlaylistType, IncludeFillerNalUnits, InputClass, InputCodec, InputDeblockFilter, InputDenoiseFilter, InputDeviceActiveInput, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairProfile, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceIpScheme, InputDeviceOutputType, InputDeviceScanType, InputDeviceState, InputDeviceTransferType, InputDeviceType, InputDeviceUhdAudioChannelPairProfile, InputFilter, InputLossActionForHlsOut, InputLossActionForMsSmoothOut, InputLossActionForRtmpOut, InputLossActionForUdpOut, InputMaximumBitrate, InputNetworkLocation, InputPreference, InputResolution, InputSecurityGroupState, InputSourceEndBehavior, InputSourceType, InputState, InputTimecodeSource, InputType, LastFrameClippingBehavior, LinkedChannelType, LogLevel, M2tsAbsentInputAudioBehavior, M2tsArib, M2tsAribCaptionsPidControl, M2tsAudioBufferModel, M2tsAudioInterval, M2tsAudioStreamType, M2tsBufferModel, M2tsCcDescriptor, M2tsEbifControl, M2tsEbpPlacement, M2tsEsRateInPes, M2tsKlv, M2tsNielsenId3Behavior, M2tsPcrControl, M2tsRateMode, M2tsScte35Control, M2tsSegmentationMarkers, M2tsSegmentationStyle, M2tsTimedMetadataBehavior, M3u8KlvBehavior, M3u8NielsenId3Behavior, M3u8PcrControl, M3u8Scte35Behavior, M3u8TimedMetadataBehavior, MaintenanceDay, Mp2CodingMode, Mpeg2AdaptiveQuantization, Mpeg2ColorMetadata, Mpeg2ColorSpace, Mpeg2DisplayRatio, Mpeg2GopSizeUnits, Mpeg2ScanType, Mpeg2SubGopLength, Mpeg2TimecodeInsertionBehavior, MsSmoothH265PackagingType, MultiplexAlertState, MultiplexState, NetworkInputServerValidation, NetworkInterfaceMode, NetworkState, NielsenWatermarksCbetStepaside, NielsenWatermarksDistributionTypes, NielsenWatermarkTimezones, NodeConnectionState, NodeRole, NodeState, OfferingDurationUnits, OfferingType, PipelineId, ReservationAutomaticRenewal, ReservationCodec, ReservationMaximumBitrate, ReservationMaximumFramerate, ReservationResolution, ReservationResourceType, ReservationSpecialFeature, ReservationState, ReservationVideoQuality, RouterEncryptionType, RtmpAdMarkers, RtmpCacheFullBehavior, RtmpCaptionData, RtmpOutputCertificateMode, S3CannedAcl, Scte20Convert608To708, Scte27OcrLanguage, Scte35AposNoRegionalBlackoutBehavior, Scte35AposWebDeliveryAllowedBehavior, Scte35ArchiveAllowedFlag, Scte35DeviceRestrictions, Scte35InputMode, Scte35NoRegionalBlackoutFlag, Scte35SegmentationCancelIndicator, Scte35SegmentationScope, Scte35SpliceInsertNoRegionalBlackoutBehavior, Scte35SpliceInsertWebDeliveryAllowedBehavior, Scte35Type, Scte35WebDeliveryAllowedFlag, SdiSourceMode, SdiSourceState, SdiSourceType, SignalMapMonitorDeploymentStatus, SignalMapStatus, SmoothGroupAudioOnlyTimecodeControl, SmoothGroupCertificateMode, SmoothGroupEventIdMode, SmoothGroupEventStopBehavior, SmoothGroupSegmentationMode, SmoothGroupSparseTrackType, SmoothGroupStreamManifestBehavior, SmoothGroupTimestampOffsetMode, Smpte2038DataPreference, SrtEncryptionType, TemporalFilterPostFilterSharpening, TemporalFilterStrength, ThumbnailType, TimecodeBurninFontSize, TimecodeBurninPosition, TtmlDestinationStyleControl, UdpTimedMetadataId3Frame, VideoDescriptionRespondToAfd, VideoDescriptionScalingBehavior, VideoSelectorColorSpace, VideoSelectorColorSpaceUsage, WavCodingMode, WebvttDestinationStyleControl } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* Reference to an OutputDestination ID defined in the channel
|
|
4
4
|
* @public
|
|
@@ -7448,6 +7448,11 @@ export interface Av1Settings {
|
|
|
7448
7448
|
* @public
|
|
7449
7449
|
*/
|
|
7450
7450
|
TimecodeInsertion?: Av1TimecodeInsertionBehavior | undefined;
|
|
7451
|
+
/**
|
|
7452
|
+
* Specifies the bit depth for the output encode. Choose a value. Or leave the field empty to use the default, which is 8 bit.
|
|
7453
|
+
* @public
|
|
7454
|
+
*/
|
|
7455
|
+
BitDepth?: Av1BitDepth | undefined;
|
|
7451
7456
|
}
|
|
7452
7457
|
/**
|
|
7453
7458
|
* Frame Capture Settings
|
|
@@ -1709,6 +1709,11 @@ export declare const AfdSignaling: {
|
|
|
1709
1709
|
readonly NONE: "NONE";
|
|
1710
1710
|
};
|
|
1711
1711
|
export type AfdSignaling = (typeof AfdSignaling)[keyof typeof AfdSignaling];
|
|
1712
|
+
export declare const Av1BitDepth: {
|
|
1713
|
+
readonly DEPTH_10: "DEPTH_10";
|
|
1714
|
+
readonly DEPTH_8: "DEPTH_8";
|
|
1715
|
+
};
|
|
1716
|
+
export type Av1BitDepth = (typeof Av1BitDepth)[keyof typeof Av1BitDepth];
|
|
1712
1717
|
export declare const FixedAfd: {
|
|
1713
1718
|
readonly AFD_0000: "AFD_0000";
|
|
1714
1719
|
readonly AFD_0010: "AFD_0010";
|
|
@@ -24,6 +24,7 @@ import {
|
|
|
24
24
|
AudioOnlyHlsTrackType,
|
|
25
25
|
AudioType,
|
|
26
26
|
AuthenticationScheme,
|
|
27
|
+
Av1BitDepth,
|
|
27
28
|
Av1GopSizeUnits,
|
|
28
29
|
Av1Level,
|
|
29
30
|
Av1LookAheadRateControl,
|
|
@@ -2010,6 +2011,7 @@ export interface Av1Settings {
|
|
|
2010
2011
|
SpatialAq?: Av1SpatialAq | undefined;
|
|
2011
2012
|
TemporalAq?: Av1TemporalAq | undefined;
|
|
2012
2013
|
TimecodeInsertion?: Av1TimecodeInsertionBehavior | undefined;
|
|
2014
|
+
BitDepth?: Av1BitDepth | undefined;
|
|
2013
2015
|
}
|
|
2014
2016
|
export interface FrameCaptureSettings {
|
|
2015
2017
|
CaptureInterval?: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-medialive",
|
|
3
3
|
"description": "AWS SDK for JavaScript Medialive Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.985.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-medialive",
|
|
@@ -21,42 +21,42 @@
|
|
|
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.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.7",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.6",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.7",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.985.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.5",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.22.
|
|
36
|
+
"@smithy/core": "^3.22.1",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.13",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.30",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.9",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.2",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
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.29",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.32",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|
|
59
|
-
"@smithy/util-stream": "^4.5.
|
|
59
|
+
"@smithy/util-stream": "^4.5.11",
|
|
60
60
|
"@smithy/util-utf8": "^4.2.0",
|
|
61
61
|
"@smithy/util-waiter": "^4.2.8",
|
|
62
62
|
"tslib": "^2.6.2"
|