@aws-sdk/client-mediaconvert 3.421.0 → 3.424.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.
Files changed (30) hide show
  1. package/dist-cjs/models/models_0.js +1 -9
  2. package/dist-cjs/models/models_1.js +21 -5
  3. package/dist-cjs/protocols/Aws_restJson1.js +80 -4
  4. package/dist-es/models/models_0.js +0 -8
  5. package/dist-es/models/models_1.js +16 -0
  6. package/dist-es/protocols/Aws_restJson1.js +80 -4
  7. package/dist-types/commands/CreateJobCommand.d.ts +38 -2
  8. package/dist-types/commands/CreateJobTemplateCommand.d.ts +38 -2
  9. package/dist-types/commands/CreatePresetCommand.d.ts +4 -0
  10. package/dist-types/commands/CreateQueueCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteJobTemplateCommand.d.ts +1 -1
  12. package/dist-types/commands/DeletePolicyCommand.d.ts +1 -2
  13. package/dist-types/commands/GetJobCommand.d.ts +19 -1
  14. package/dist-types/commands/GetJobTemplateCommand.d.ts +19 -1
  15. package/dist-types/commands/GetPresetCommand.d.ts +2 -0
  16. package/dist-types/commands/ListJobTemplatesCommand.d.ts +19 -1
  17. package/dist-types/commands/ListJobsCommand.d.ts +19 -1
  18. package/dist-types/commands/ListPresetsCommand.d.ts +2 -0
  19. package/dist-types/commands/UpdateJobTemplateCommand.d.ts +38 -2
  20. package/dist-types/commands/UpdatePresetCommand.d.ts +4 -0
  21. package/dist-types/models/models_0.d.ts +73 -103
  22. package/dist-types/models/models_1.d.ts +138 -76
  23. package/dist-types/models/models_2.d.ts +66 -1
  24. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +1 -2
  27. package/dist-types/ts3.4/models/models_0.d.ts +17 -28
  28. package/dist-types/ts3.4/models/models_1.d.ts +49 -19
  29. package/dist-types/ts3.4/models/models_2.d.ts +17 -0
  30. package/package.json +3 -3
@@ -3470,6 +3470,69 @@ export interface InputVideoGenerator {
3470
3470
  */
3471
3471
  Duration?: number;
3472
3472
  }
3473
+ /**
3474
+ * @public
3475
+ * To transcode only portions of your video overlay, include one input clip for each part of your video overlay that you want in your output.
3476
+ */
3477
+ export interface VideoOverlayInputClipping {
3478
+ /**
3479
+ * @public
3480
+ * Specify the timecode of the last frame to include in your video overlay's clip. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for Timecode source.
3481
+ */
3482
+ EndTimecode?: string;
3483
+ /**
3484
+ * @public
3485
+ * Specify the timecode of the first frame to include in your video overlay's clip. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for Timecode source.
3486
+ */
3487
+ StartTimecode?: string;
3488
+ }
3489
+ /**
3490
+ * @public
3491
+ * Input settings for Video overlay. You can include one or more video overlays in sequence at different times that you specify.
3492
+ */
3493
+ export interface VideoOverlayInput {
3494
+ /**
3495
+ * @public
3496
+ * Specify the input file S3, HTTP, or HTTPS URI for your video overlay. For consistency in color and formatting in your output video image, we recommend that you specify a video with similar characteristics as the underlying input video.
3497
+ */
3498
+ FileInput?: string;
3499
+ /**
3500
+ * @public
3501
+ * Specify one or more clips to use from your video overlay. When you include an input clip, you must also specify its start timecode, end timecode, or both start and end timecode.
3502
+ */
3503
+ InputClippings?: VideoOverlayInputClipping[];
3504
+ /**
3505
+ * @public
3506
+ * Specify the starting timecode for your video overlay. To use the timecode present in your video overlay: Choose Embedded. To use a zerobased timecode: Choose Start at 0. To choose a timecode: Choose Specified start. When you do, enter the starting timecode in Start timecode. If you don't specify a value for Timecode source, MediaConvert uses Embedded by default.
3507
+ */
3508
+ TimecodeSource?: InputTimecodeSource | string;
3509
+ /**
3510
+ * @public
3511
+ * Specify the starting timecode for this video overlay. To use this setting, you must set Timecode source to Specified start.
3512
+ */
3513
+ TimecodeStart?: string;
3514
+ }
3515
+ /**
3516
+ * @public
3517
+ * Overlay one or more videos on top of your input video.
3518
+ */
3519
+ export interface VideoOverlay {
3520
+ /**
3521
+ * @public
3522
+ * Enter the end timecode in the underlying input video for this overlay. Your overlay will be active through this frame. To display your video overlay for the duration of the underlying video: Leave blank. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for the underlying Input timecode source. For example, if you have embedded timecodes that start at 01:00:00:00 and you want your overlay to end ten minutes into the video, enter 01:10:00:00.
3523
+ */
3524
+ EndTimecode?: string;
3525
+ /**
3526
+ * @public
3527
+ * Input settings for Video overlay. You can include one or more video overlays in sequence at different times that you specify.
3528
+ */
3529
+ Input?: VideoOverlayInput;
3530
+ /**
3531
+ * @public
3532
+ * Enter the start timecode in the underlying input video for this overlay. Your overlay will be active starting with this frame. To display your video overlay starting at the beginning of the underlying video: Leave blank. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for the underlying Input timecode source. For example, if you have embedded timecodes that start at 01:00:00:00 and you want your overlay to begin five minutes into the video, enter 01:05:00:00.
3533
+ */
3534
+ StartTimecode?: string;
3535
+ }
3473
3536
  /**
3474
3537
  * @public
3475
3538
  * @enum
@@ -3813,6 +3876,11 @@ export interface Input {
3813
3876
  * When you include Video generator, MediaConvert creates a video input with black frames. Use this setting if you do not have a video input or if you want to add black video frames before, or after, other inputs. You can specify Video generator, or you can specify an Input file, but you cannot specify both. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/video-generator.html
3814
3877
  */
3815
3878
  VideoGenerator?: InputVideoGenerator;
3879
+ /**
3880
+ * @public
3881
+ * Contains an array of video overlays.
3882
+ */
3883
+ VideoOverlays?: VideoOverlay[];
3816
3884
  /**
3817
3885
  * @public
3818
3886
  * Input video selectors contain the video settings for the input. Each of your inputs can have up to one video selector.
@@ -3921,6 +3989,11 @@ export interface InputTemplate {
3921
3989
  * Specify the timecode that you want the service to use for this input's initial frame. To use this setting, you must set the Timecode source setting, located under the input settings, to Specified start. For more information about timecodes, see https://docs.aws.amazon.com/console/mediaconvert/timecode.
3922
3990
  */
3923
3991
  TimecodeStart?: string;
3992
+ /**
3993
+ * @public
3994
+ * Contains an array of video overlays.
3995
+ */
3996
+ VideoOverlays?: VideoOverlay[];
3924
3997
  /**
3925
3998
  * @public
3926
3999
  * Input video selectors contain the video settings for the input. Each of your inputs can have up to one video selector.
@@ -6233,106 +6306,3 @@ export declare const CmfcScte35Source: {
6233
6306
  * @public
6234
6307
  */
6235
6308
  export type CmfcScte35Source = (typeof CmfcScte35Source)[keyof typeof CmfcScte35Source];
6236
- /**
6237
- * @public
6238
- * @enum
6239
- */
6240
- export declare const CmfcTimedMetadata: {
6241
- readonly NONE: "NONE";
6242
- readonly PASSTHROUGH: "PASSTHROUGH";
6243
- };
6244
- /**
6245
- * @public
6246
- */
6247
- export type CmfcTimedMetadata = (typeof CmfcTimedMetadata)[keyof typeof CmfcTimedMetadata];
6248
- /**
6249
- * @public
6250
- * @enum
6251
- */
6252
- export declare const CmfcTimedMetadataBoxVersion: {
6253
- readonly VERSION_0: "VERSION_0";
6254
- readonly VERSION_1: "VERSION_1";
6255
- };
6256
- /**
6257
- * @public
6258
- */
6259
- export type CmfcTimedMetadataBoxVersion = (typeof CmfcTimedMetadataBoxVersion)[keyof typeof CmfcTimedMetadataBoxVersion];
6260
- /**
6261
- * @public
6262
- * These settings relate to the fragmented MP4 container for the segments in your CMAF outputs.
6263
- */
6264
- export interface CmfcSettings {
6265
- /**
6266
- * @public
6267
- * Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration. In all other cases, keep the default value, Default codec duration. When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec.
6268
- */
6269
- AudioDuration?: CmfcAudioDuration | string;
6270
- /**
6271
- * @public
6272
- * Specify the audio rendition group for this audio rendition. Specify up to one value for each audio output in your output group. This value appears in your HLS parent manifest in the EXT-X-MEDIA tag of TYPE=AUDIO, as the value for the GROUP-ID attribute. For example, if you specify "audio_aac_1" for Audio group ID, it appears in your manifest like this: #EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio_aac_1". Related setting: To associate the rendition group that this audio track belongs to with a video rendition, include the same value that you provide here for that video output's setting Audio rendition sets.
6273
- */
6274
- AudioGroupId?: string;
6275
- /**
6276
- * @public
6277
- * List the audio rendition groups that you want included with this video rendition. Use a comma-separated list. For example, say you want to include the audio rendition groups that have the audio group IDs "audio_aac_1" and "audio_dolby". Then you would specify this value: "audio_aac_1,audio_dolby". Related setting: The rendition groups that you include in your comma-separated list should all match values that you specify in the setting Audio group ID for audio renditions in the same output group as this video rendition. Default behavior: If you don't specify anything here and for Audio group ID, MediaConvert puts each audio variant in its own audio rendition group and associates it with every video variant. Each value in your list appears in your HLS parent manifest in the EXT-X-STREAM-INF tag as the value for the AUDIO attribute. To continue the previous example, say that the file name for the child manifest for your video rendition is "amazing_video_1.m3u8". Then, in your parent manifest, each value will appear on separate lines, like this: #EXT-X-STREAM-INF:AUDIO="audio_aac_1"... amazing_video_1.m3u8 #EXT-X-STREAM-INF:AUDIO="audio_dolby"... amazing_video_1.m3u8
6278
- */
6279
- AudioRenditionSets?: string;
6280
- /**
6281
- * @public
6282
- * Use this setting to control the values that MediaConvert puts in your HLS parent playlist to control how the client player selects which audio track to play. Choose Audio-only variant stream (AUDIO_ONLY_VARIANT_STREAM) for any variant that you want to prohibit the client from playing with video. This causes MediaConvert to represent the variant as an EXT-X-STREAM-INF in the HLS manifest. The other options for this setting determine the values that MediaConvert writes for the DEFAULT and AUTOSELECT attributes of the EXT-X-MEDIA entry for the audio variant. For more information about these attributes, see the Apple documentation article https://developer.apple.com/documentation/http_live_streaming/example_playlists_for_http_live_streaming/adding_alternate_media_to_a_playlist. Choose Alternate audio, auto select, default to set DEFAULT=YES and AUTOSELECT=YES. Choose this value for only one variant in your output group. Choose Alternate audio, auto select, not default to set DEFAULT=NO and AUTOSELECT=YES. Choose Alternate Audio, Not Auto Select to set DEFAULT=NO and AUTOSELECT=NO. When you don't specify a value for this setting, MediaConvert defaults to Alternate audio, auto select, default. When there is more than one variant in your output group, you must explicitly choose a value for this setting.
6283
- */
6284
- AudioTrackType?: CmfcAudioTrackType | string;
6285
- /**
6286
- * @public
6287
- * Specify whether to flag this audio track as descriptive video service (DVS) in your HLS parent manifest. When you choose Flag, MediaConvert includes the parameter CHARACTERISTICS="public.accessibility.describes-video" in the EXT-X-MEDIA entry for this track. When you keep the default choice, Don't flag, MediaConvert leaves this parameter out. The DVS flag can help with accessibility on Apple devices. For more information, see the Apple documentation.
6288
- */
6289
- DescriptiveVideoServiceFlag?: CmfcDescriptiveVideoServiceFlag | string;
6290
- /**
6291
- * @public
6292
- * Choose Include to have MediaConvert generate an HLS child manifest that lists only the I-frames for this rendition, in addition to your regular manifest for this rendition. You might use this manifest as part of a workflow that creates preview functions for your video. MediaConvert adds both the I-frame only child manifest and the regular child manifest to the parent manifest. When you don't need the I-frame only child manifest, keep the default value Exclude.
6293
- */
6294
- IFrameOnlyManifest?: CmfcIFrameOnlyManifest | string;
6295
- /**
6296
- * @public
6297
- * To include key-length-value metadata in this output: Set KLV metadata insertion to Passthrough. MediaConvert reads KLV metadata present in your input and writes each instance to a separate event message box in the output, according to MISB ST1910.1. To exclude this KLV metadata: Set KLV metadata insertion to None or leave blank.
6298
- */
6299
- KlvMetadata?: CmfcKlvMetadata | string;
6300
- /**
6301
- * @public
6302
- * To add an InbandEventStream element in your output MPD manifest for each type of event message, set Manifest metadata signaling to Enabled. For ID3 event messages, the InbandEventStream element schemeIdUri will be same value that you specify for ID3 metadata scheme ID URI. For SCTE35 event messages, the InbandEventStream element schemeIdUri will be "urn:scte:scte35:2013:bin". To leave these elements out of your output MPD manifest, set Manifest metadata signaling to Disabled. To enable Manifest metadata signaling, you must also set SCTE-35 source to Passthrough, ESAM SCTE-35 to insert, or ID3 metadata to Passthrough.
6303
- */
6304
- ManifestMetadataSignaling?: CmfcManifestMetadataSignaling | string;
6305
- /**
6306
- * @public
6307
- * Use this setting only when you specify SCTE-35 markers from ESAM. Choose INSERT to put SCTE-35 markers in this output at the insertion points that you specify in an ESAM XML document. Provide the document in the setting SCC XML.
6308
- */
6309
- Scte35Esam?: CmfcScte35Esam | string;
6310
- /**
6311
- * @public
6312
- * Ignore this setting unless you have SCTE-35 markers in your input video file. Choose Passthrough if you want SCTE-35 markers that appear in your input to also appear in this output. Choose None if you don't want those SCTE-35 markers in this output.
6313
- */
6314
- Scte35Source?: CmfcScte35Source | string;
6315
- /**
6316
- * @public
6317
- * To include ID3 metadata in this output: Set ID3 metadata to Passthrough. Specify this ID3 metadata in Custom ID3 metadata inserter. MediaConvert writes each instance of ID3 metadata in a separate Event Message (eMSG) box. To exclude this ID3 metadata: Set ID3 metadata to None or leave blank.
6318
- */
6319
- TimedMetadata?: CmfcTimedMetadata | string;
6320
- /**
6321
- * @public
6322
- * Specify the event message box (eMSG) version for ID3 timed metadata in your output.
6323
- * For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.3 Syntax.
6324
- * Leave blank to use the default value Version 0.
6325
- * When you specify Version 1, you must also set ID3 metadata to Passthrough.
6326
- */
6327
- TimedMetadataBoxVersion?: CmfcTimedMetadataBoxVersion | string;
6328
- /**
6329
- * @public
6330
- * Specify the event message box (eMSG) scheme ID URI for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. Leave blank to use the default value: https://aomedia.org/emsg/ID3 When you specify a value for ID3 metadata scheme ID URI, you must also set ID3 metadata to Passthrough.
6331
- */
6332
- TimedMetadataSchemeIdUri?: string;
6333
- /**
6334
- * @public
6335
- * Specify the event message box (eMSG) value for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. When you specify a value for ID3 Metadata Value, you must also set ID3 metadata to Passthrough.
6336
- */
6337
- TimedMetadataValue?: string;
6338
- }
@@ -1,6 +1,109 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
3
- import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, EsamSettings, ExtendedDataServices, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, OutputGroupSettings, QueueTransition, Rectangle } from "./models_0";
3
+ import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcAudioTrackType, CmfcDescriptiveVideoServiceFlag, CmfcIFrameOnlyManifest, CmfcKlvMetadata, CmfcManifestMetadataSignaling, CmfcScte35Esam, CmfcScte35Source, EsamSettings, ExtendedDataServices, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, OutputGroupSettings, QueueTransition, Rectangle } from "./models_0";
4
+ /**
5
+ * @public
6
+ * @enum
7
+ */
8
+ export declare const CmfcTimedMetadata: {
9
+ readonly NONE: "NONE";
10
+ readonly PASSTHROUGH: "PASSTHROUGH";
11
+ };
12
+ /**
13
+ * @public
14
+ */
15
+ export type CmfcTimedMetadata = (typeof CmfcTimedMetadata)[keyof typeof CmfcTimedMetadata];
16
+ /**
17
+ * @public
18
+ * @enum
19
+ */
20
+ export declare const CmfcTimedMetadataBoxVersion: {
21
+ readonly VERSION_0: "VERSION_0";
22
+ readonly VERSION_1: "VERSION_1";
23
+ };
24
+ /**
25
+ * @public
26
+ */
27
+ export type CmfcTimedMetadataBoxVersion = (typeof CmfcTimedMetadataBoxVersion)[keyof typeof CmfcTimedMetadataBoxVersion];
28
+ /**
29
+ * @public
30
+ * These settings relate to the fragmented MP4 container for the segments in your CMAF outputs.
31
+ */
32
+ export interface CmfcSettings {
33
+ /**
34
+ * @public
35
+ * Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration. In all other cases, keep the default value, Default codec duration. When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec.
36
+ */
37
+ AudioDuration?: CmfcAudioDuration | string;
38
+ /**
39
+ * @public
40
+ * Specify the audio rendition group for this audio rendition. Specify up to one value for each audio output in your output group. This value appears in your HLS parent manifest in the EXT-X-MEDIA tag of TYPE=AUDIO, as the value for the GROUP-ID attribute. For example, if you specify "audio_aac_1" for Audio group ID, it appears in your manifest like this: #EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio_aac_1". Related setting: To associate the rendition group that this audio track belongs to with a video rendition, include the same value that you provide here for that video output's setting Audio rendition sets.
41
+ */
42
+ AudioGroupId?: string;
43
+ /**
44
+ * @public
45
+ * List the audio rendition groups that you want included with this video rendition. Use a comma-separated list. For example, say you want to include the audio rendition groups that have the audio group IDs "audio_aac_1" and "audio_dolby". Then you would specify this value: "audio_aac_1,audio_dolby". Related setting: The rendition groups that you include in your comma-separated list should all match values that you specify in the setting Audio group ID for audio renditions in the same output group as this video rendition. Default behavior: If you don't specify anything here and for Audio group ID, MediaConvert puts each audio variant in its own audio rendition group and associates it with every video variant. Each value in your list appears in your HLS parent manifest in the EXT-X-STREAM-INF tag as the value for the AUDIO attribute. To continue the previous example, say that the file name for the child manifest for your video rendition is "amazing_video_1.m3u8". Then, in your parent manifest, each value will appear on separate lines, like this: #EXT-X-STREAM-INF:AUDIO="audio_aac_1"... amazing_video_1.m3u8 #EXT-X-STREAM-INF:AUDIO="audio_dolby"... amazing_video_1.m3u8
46
+ */
47
+ AudioRenditionSets?: string;
48
+ /**
49
+ * @public
50
+ * Use this setting to control the values that MediaConvert puts in your HLS parent playlist to control how the client player selects which audio track to play. Choose Audio-only variant stream (AUDIO_ONLY_VARIANT_STREAM) for any variant that you want to prohibit the client from playing with video. This causes MediaConvert to represent the variant as an EXT-X-STREAM-INF in the HLS manifest. The other options for this setting determine the values that MediaConvert writes for the DEFAULT and AUTOSELECT attributes of the EXT-X-MEDIA entry for the audio variant. For more information about these attributes, see the Apple documentation article https://developer.apple.com/documentation/http_live_streaming/example_playlists_for_http_live_streaming/adding_alternate_media_to_a_playlist. Choose Alternate audio, auto select, default to set DEFAULT=YES and AUTOSELECT=YES. Choose this value for only one variant in your output group. Choose Alternate audio, auto select, not default to set DEFAULT=NO and AUTOSELECT=YES. Choose Alternate Audio, Not Auto Select to set DEFAULT=NO and AUTOSELECT=NO. When you don't specify a value for this setting, MediaConvert defaults to Alternate audio, auto select, default. When there is more than one variant in your output group, you must explicitly choose a value for this setting.
51
+ */
52
+ AudioTrackType?: CmfcAudioTrackType | string;
53
+ /**
54
+ * @public
55
+ * Specify whether to flag this audio track as descriptive video service (DVS) in your HLS parent manifest. When you choose Flag, MediaConvert includes the parameter CHARACTERISTICS="public.accessibility.describes-video" in the EXT-X-MEDIA entry for this track. When you keep the default choice, Don't flag, MediaConvert leaves this parameter out. The DVS flag can help with accessibility on Apple devices. For more information, see the Apple documentation.
56
+ */
57
+ DescriptiveVideoServiceFlag?: CmfcDescriptiveVideoServiceFlag | string;
58
+ /**
59
+ * @public
60
+ * Choose Include to have MediaConvert generate an HLS child manifest that lists only the I-frames for this rendition, in addition to your regular manifest for this rendition. You might use this manifest as part of a workflow that creates preview functions for your video. MediaConvert adds both the I-frame only child manifest and the regular child manifest to the parent manifest. When you don't need the I-frame only child manifest, keep the default value Exclude.
61
+ */
62
+ IFrameOnlyManifest?: CmfcIFrameOnlyManifest | string;
63
+ /**
64
+ * @public
65
+ * To include key-length-value metadata in this output: Set KLV metadata insertion to Passthrough. MediaConvert reads KLV metadata present in your input and writes each instance to a separate event message box in the output, according to MISB ST1910.1. To exclude this KLV metadata: Set KLV metadata insertion to None or leave blank.
66
+ */
67
+ KlvMetadata?: CmfcKlvMetadata | string;
68
+ /**
69
+ * @public
70
+ * To add an InbandEventStream element in your output MPD manifest for each type of event message, set Manifest metadata signaling to Enabled. For ID3 event messages, the InbandEventStream element schemeIdUri will be same value that you specify for ID3 metadata scheme ID URI. For SCTE35 event messages, the InbandEventStream element schemeIdUri will be "urn:scte:scte35:2013:bin". To leave these elements out of your output MPD manifest, set Manifest metadata signaling to Disabled. To enable Manifest metadata signaling, you must also set SCTE-35 source to Passthrough, ESAM SCTE-35 to insert, or ID3 metadata to Passthrough.
71
+ */
72
+ ManifestMetadataSignaling?: CmfcManifestMetadataSignaling | string;
73
+ /**
74
+ * @public
75
+ * Use this setting only when you specify SCTE-35 markers from ESAM. Choose INSERT to put SCTE-35 markers in this output at the insertion points that you specify in an ESAM XML document. Provide the document in the setting SCC XML.
76
+ */
77
+ Scte35Esam?: CmfcScte35Esam | string;
78
+ /**
79
+ * @public
80
+ * Ignore this setting unless you have SCTE-35 markers in your input video file. Choose Passthrough if you want SCTE-35 markers that appear in your input to also appear in this output. Choose None if you don't want those SCTE-35 markers in this output.
81
+ */
82
+ Scte35Source?: CmfcScte35Source | string;
83
+ /**
84
+ * @public
85
+ * To include ID3 metadata in this output: Set ID3 metadata to Passthrough. Specify this ID3 metadata in Custom ID3 metadata inserter. MediaConvert writes each instance of ID3 metadata in a separate Event Message (eMSG) box. To exclude this ID3 metadata: Set ID3 metadata to None or leave blank.
86
+ */
87
+ TimedMetadata?: CmfcTimedMetadata | string;
88
+ /**
89
+ * @public
90
+ * Specify the event message box (eMSG) version for ID3 timed metadata in your output.
91
+ * For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.3 Syntax.
92
+ * Leave blank to use the default value Version 0.
93
+ * When you specify Version 1, you must also set ID3 metadata to Passthrough.
94
+ */
95
+ TimedMetadataBoxVersion?: CmfcTimedMetadataBoxVersion | string;
96
+ /**
97
+ * @public
98
+ * Specify the event message box (eMSG) scheme ID URI for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. Leave blank to use the default value: https://aomedia.org/emsg/ID3 When you specify a value for ID3 metadata scheme ID URI, you must also set ID3 metadata to Passthrough.
99
+ */
100
+ TimedMetadataSchemeIdUri?: string;
101
+ /**
102
+ * @public
103
+ * Specify the event message box (eMSG) value for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. When you specify a value for ID3 Metadata Value, you must also set ID3 metadata to Passthrough.
104
+ */
105
+ TimedMetadataValue?: string;
106
+ }
4
107
  /**
5
108
  * @public
6
109
  * @enum
@@ -1821,6 +1924,18 @@ export declare const H264DynamicSubGop: {
1821
1924
  * @public
1822
1925
  */
1823
1926
  export type H264DynamicSubGop = (typeof H264DynamicSubGop)[keyof typeof H264DynamicSubGop];
1927
+ /**
1928
+ * @public
1929
+ * @enum
1930
+ */
1931
+ export declare const H264EndOfStreamMarkers: {
1932
+ readonly INCLUDE: "INCLUDE";
1933
+ readonly SUPPRESS: "SUPPRESS";
1934
+ };
1935
+ /**
1936
+ * @public
1937
+ */
1938
+ export type H264EndOfStreamMarkers = (typeof H264EndOfStreamMarkers)[keyof typeof H264EndOfStreamMarkers];
1824
1939
  /**
1825
1940
  * @public
1826
1941
  * @enum
@@ -2127,6 +2242,11 @@ export interface H264Settings {
2127
2242
  * Specify whether to allow the number of B-frames in your output GOP structure to vary or not depending on your input video content. To improve the subjective video quality of your output that has high-motion content: Leave blank or keep the default value Adaptive. MediaConvert will use fewer B-frames for high-motion video content than low-motion content. The maximum number of B- frames is limited by the value that you choose for B-frames between reference frames. To use the same number B-frames for all types of content: Choose Static.
2128
2243
  */
2129
2244
  DynamicSubGop?: H264DynamicSubGop | string;
2245
+ /**
2246
+ * @public
2247
+ * Optionally include or suppress markers at the end of your output that signal the end of the video stream. To include end of stream markers: Leave blank or keep the default value, Include. To not include end of stream markers: Choose Suppress. This is useful when your output will be inserted into another stream.
2248
+ */
2249
+ EndOfStreamMarkers?: H264EndOfStreamMarkers | string;
2130
2250
  /**
2131
2251
  * @public
2132
2252
  * Entropy encoding mode. Use CABAC (must be in Main or High profile) or CAVLC.
@@ -2391,6 +2511,18 @@ export declare const H265DynamicSubGop: {
2391
2511
  * @public
2392
2512
  */
2393
2513
  export type H265DynamicSubGop = (typeof H265DynamicSubGop)[keyof typeof H265DynamicSubGop];
2514
+ /**
2515
+ * @public
2516
+ * @enum
2517
+ */
2518
+ export declare const H265EndOfStreamMarkers: {
2519
+ readonly INCLUDE: "INCLUDE";
2520
+ readonly SUPPRESS: "SUPPRESS";
2521
+ };
2522
+ /**
2523
+ * @public
2524
+ */
2525
+ export type H265EndOfStreamMarkers = (typeof H265EndOfStreamMarkers)[keyof typeof H265EndOfStreamMarkers];
2394
2526
  /**
2395
2527
  * @public
2396
2528
  * @enum
@@ -2702,6 +2834,11 @@ export interface H265Settings {
2702
2834
  * Specify whether to allow the number of B-frames in your output GOP structure to vary or not depending on your input video content. To improve the subjective video quality of your output that has high-motion content: Leave blank or keep the default value Adaptive. MediaConvert will use fewer B-frames for high-motion video content than low-motion content. The maximum number of B- frames is limited by the value that you choose for B-frames between reference frames. To use the same number B-frames for all types of content: Choose Static.
2703
2835
  */
2704
2836
  DynamicSubGop?: H265DynamicSubGop | string;
2837
+ /**
2838
+ * @public
2839
+ * Optionally include or suppress markers at the end of your output that signal the end of the video stream. To include end of stream markers: Leave blank or keep the default value, Include. To not include end of stream markers: Choose Suppress. This is useful when your output will be inserted into another stream.
2840
+ */
2841
+ EndOfStreamMarkers?: H265EndOfStreamMarkers | string;
2705
2842
  /**
2706
2843
  * @public
2707
2844
  * Enable this setting to have the encoder reduce I-frame pop. I-frame pop appears as a visual flicker that can arise when the encoder saves bits by copying some macroblocks many times from frame to frame, and then refreshes them at the I-frame. When you enable this setting, the encoder updates these macroblocks slightly more often to smooth out the flicker. This setting is disabled by default. Related setting: In addition to enabling this setting, you must also set adaptiveQuantization to a value other than Off.
@@ -5272,11 +5409,6 @@ export interface JobSettings {
5272
5409
  * If your source content has EIA-608 Line 21 Data Services, enable this feature to specify what MediaConvert does with the Extended Data Services (XDS) packets. You can choose to pass through XDS packets, or remove them from the output. For more information about XDS, see EIA-608 Line Data Services, section 9.5.1.5 05h Content Advisory.
5273
5410
  */
5274
5411
  ExtendedDataServices?: ExtendedDataServices;
5275
- /**
5276
- * @public
5277
- * Specifies which input metadata to use for the default "Follow input" option for the following settings: resolution, frame rate, and pixel aspect ratio. In the simplest case, specify which input is used based on its index in the job. For example if you specify 3, then the fourth input will be used from each input. If the job does not have a fourth input, then the first input will be used. If no followInputIndex is specified, then 0 will be chosen automatically.
5278
- */
5279
- FollowInputIndex?: number;
5280
5412
  /**
5281
5413
  * @public
5282
5414
  * Use Inputs to define source file used in the transcode job. There can be multiple inputs add in a job. These inputs will be concantenated together to create the output.
@@ -5573,11 +5705,6 @@ export interface JobTemplateSettings {
5573
5705
  * If your source content has EIA-608 Line 21 Data Services, enable this feature to specify what MediaConvert does with the Extended Data Services (XDS) packets. You can choose to pass through XDS packets, or remove them from the output. For more information about XDS, see EIA-608 Line Data Services, section 9.5.1.5 05h Content Advisory.
5574
5706
  */
5575
5707
  ExtendedDataServices?: ExtendedDataServices;
5576
- /**
5577
- * @public
5578
- * Specifies which input metadata to use for the default "Follow input" option for the following settings: resolution, frame rate, and pixel aspect ratio. In the simplest case, specify which input is used based on its index in the job. For example if you specify 3, then the fourth input will be used from each input. If the job does not have a fourth input, then the first input will be used. If no followInputIndex is specified, then 0 will be chosen automatically.
5579
- */
5580
- FollowInputIndex?: number;
5581
5708
  /**
5582
5709
  * @public
5583
5710
  * Use Inputs to define the source file used in the transcode job. There can only be one input in a job template. Using the API, you can include multiple inputs when referencing a job template.
@@ -6244,68 +6371,3 @@ export interface ReservationPlanSettings {
6244
6371
  */
6245
6372
  ReservedSlots: number | undefined;
6246
6373
  }
6247
- /**
6248
- * @public
6249
- */
6250
- export interface CreateQueueRequest {
6251
- /**
6252
- * @public
6253
- * Optional. A description of the queue that you are creating.
6254
- */
6255
- Description?: string;
6256
- /**
6257
- * @public
6258
- * The name of the queue that you are creating.
6259
- */
6260
- Name: string | undefined;
6261
- /**
6262
- * @public
6263
- * Specifies whether the pricing plan for the queue is on-demand or reserved. For on-demand, you pay per minute, billed in increments of .01 minute. For reserved, you pay for the transcoding capacity of the entire queue, regardless of how much or how little you use it. Reserved pricing requires a 12-month commitment. When you use the API to create a queue, the default is on-demand.
6264
- */
6265
- PricingPlan?: PricingPlan | string;
6266
- /**
6267
- * @public
6268
- * Details about the pricing plan for your reserved queue. Required for reserved queues and not applicable to on-demand queues.
6269
- */
6270
- ReservationPlanSettings?: ReservationPlanSettings;
6271
- /**
6272
- * @public
6273
- * Initial state of the queue. If you create a paused queue, then jobs in that queue won't begin.
6274
- */
6275
- Status?: QueueStatus | string;
6276
- /**
6277
- * @public
6278
- * The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.
6279
- */
6280
- Tags?: Record<string, string>;
6281
- }
6282
- /**
6283
- * @public
6284
- */
6285
- export interface CreateQueueResponse {
6286
- /**
6287
- * @public
6288
- * You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html.
6289
- */
6290
- Queue?: Queue;
6291
- }
6292
- /**
6293
- * @public
6294
- */
6295
- export interface DeleteJobTemplateRequest {
6296
- /**
6297
- * @public
6298
- * The name of the job template to be deleted.
6299
- */
6300
- Name: string | undefined;
6301
- }
6302
- /**
6303
- * @public
6304
- */
6305
- export interface DeleteJobTemplateResponse {
6306
- }
6307
- /**
6308
- * @public
6309
- */
6310
- export interface DeletePolicyRequest {
6311
- }
@@ -1,5 +1,70 @@
1
1
  import { AccelerationSettings, Endpoint, HopDestination } from "./models_0";
2
- import { Job, JobStatus, JobTemplate, JobTemplateSettings, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
2
+ import { Job, JobStatus, JobTemplate, JobTemplateSettings, Preset, PresetSettings, PricingPlan, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface CreateQueueRequest {
7
+ /**
8
+ * @public
9
+ * Optional. A description of the queue that you are creating.
10
+ */
11
+ Description?: string;
12
+ /**
13
+ * @public
14
+ * The name of the queue that you are creating.
15
+ */
16
+ Name: string | undefined;
17
+ /**
18
+ * @public
19
+ * Specifies whether the pricing plan for the queue is on-demand or reserved. For on-demand, you pay per minute, billed in increments of .01 minute. For reserved, you pay for the transcoding capacity of the entire queue, regardless of how much or how little you use it. Reserved pricing requires a 12-month commitment. When you use the API to create a queue, the default is on-demand.
20
+ */
21
+ PricingPlan?: PricingPlan | string;
22
+ /**
23
+ * @public
24
+ * Details about the pricing plan for your reserved queue. Required for reserved queues and not applicable to on-demand queues.
25
+ */
26
+ ReservationPlanSettings?: ReservationPlanSettings;
27
+ /**
28
+ * @public
29
+ * Initial state of the queue. If you create a paused queue, then jobs in that queue won't begin.
30
+ */
31
+ Status?: QueueStatus | string;
32
+ /**
33
+ * @public
34
+ * The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.
35
+ */
36
+ Tags?: Record<string, string>;
37
+ }
38
+ /**
39
+ * @public
40
+ */
41
+ export interface CreateQueueResponse {
42
+ /**
43
+ * @public
44
+ * You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html.
45
+ */
46
+ Queue?: Queue;
47
+ }
48
+ /**
49
+ * @public
50
+ */
51
+ export interface DeleteJobTemplateRequest {
52
+ /**
53
+ * @public
54
+ * The name of the job template to be deleted.
55
+ */
56
+ Name: string | undefined;
57
+ }
58
+ /**
59
+ * @public
60
+ */
61
+ export interface DeleteJobTemplateResponse {
62
+ }
63
+ /**
64
+ * @public
65
+ */
66
+ export interface DeletePolicyRequest {
67
+ }
3
68
  /**
4
69
  * @public
5
70
  */
@@ -11,7 +11,7 @@ import {
11
11
  ServiceInputTypes,
12
12
  ServiceOutputTypes,
13
13
  } from "../MediaConvertClient";
14
- import { CreateQueueRequest, CreateQueueResponse } from "../models/models_1";
14
+ import { CreateQueueRequest, CreateQueueResponse } from "../models/models_2";
15
15
  export { __MetadataBearer, $Command };
16
16
  export interface CreateQueueCommandInput extends CreateQueueRequest {}
17
17
  export interface CreateQueueCommandOutput
@@ -14,7 +14,7 @@ import {
14
14
  import {
15
15
  DeleteJobTemplateRequest,
16
16
  DeleteJobTemplateResponse,
17
- } from "../models/models_1";
17
+ } from "../models/models_2";
18
18
  export { __MetadataBearer, $Command };
19
19
  export interface DeleteJobTemplateCommandInput
20
20
  extends DeleteJobTemplateRequest {}
@@ -11,8 +11,7 @@ import {
11
11
  ServiceInputTypes,
12
12
  ServiceOutputTypes,
13
13
  } from "../MediaConvertClient";
14
- import { DeletePolicyRequest } from "../models/models_1";
15
- import { DeletePolicyResponse } from "../models/models_2";
14
+ import { DeletePolicyRequest, DeletePolicyResponse } from "../models/models_2";
16
15
  export { __MetadataBearer, $Command };
17
16
  export interface DeletePolicyCommandInput extends DeletePolicyRequest {}
18
17
  export interface DeletePolicyCommandOutput
@@ -1387,6 +1387,21 @@ export type InputTimecodeSource =
1387
1387
  export interface InputVideoGenerator {
1388
1388
  Duration?: number;
1389
1389
  }
1390
+ export interface VideoOverlayInputClipping {
1391
+ EndTimecode?: string;
1392
+ StartTimecode?: string;
1393
+ }
1394
+ export interface VideoOverlayInput {
1395
+ FileInput?: string;
1396
+ InputClippings?: VideoOverlayInputClipping[];
1397
+ TimecodeSource?: InputTimecodeSource | string;
1398
+ TimecodeStart?: string;
1399
+ }
1400
+ export interface VideoOverlay {
1401
+ EndTimecode?: string;
1402
+ Input?: VideoOverlayInput;
1403
+ StartTimecode?: string;
1404
+ }
1390
1405
  export declare const AlphaBehavior: {
1391
1406
  readonly DISCARD: "DISCARD";
1392
1407
  readonly REMAP_TO_LUMA: "REMAP_TO_LUMA";
@@ -1485,6 +1500,7 @@ export interface Input {
1485
1500
  TimecodeSource?: InputTimecodeSource | string;
1486
1501
  TimecodeStart?: string;
1487
1502
  VideoGenerator?: InputVideoGenerator;
1503
+ VideoOverlays?: VideoOverlay[];
1488
1504
  VideoSelector?: VideoSelector;
1489
1505
  }
1490
1506
  export interface InputTemplate {
@@ -1507,6 +1523,7 @@ export interface InputTemplate {
1507
1523
  PsiControl?: InputPsiControl | string;
1508
1524
  TimecodeSource?: InputTimecodeSource | string;
1509
1525
  TimecodeStart?: string;
1526
+ VideoOverlays?: VideoOverlay[];
1510
1527
  VideoSelector?: VideoSelector;
1511
1528
  }
1512
1529
  export declare const AccelerationMode: {
@@ -2322,31 +2339,3 @@ export declare const CmfcScte35Source: {
2322
2339
  };
2323
2340
  export type CmfcScte35Source =
2324
2341
  (typeof CmfcScte35Source)[keyof typeof CmfcScte35Source];
2325
- export declare const CmfcTimedMetadata: {
2326
- readonly NONE: "NONE";
2327
- readonly PASSTHROUGH: "PASSTHROUGH";
2328
- };
2329
- export type CmfcTimedMetadata =
2330
- (typeof CmfcTimedMetadata)[keyof typeof CmfcTimedMetadata];
2331
- export declare const CmfcTimedMetadataBoxVersion: {
2332
- readonly VERSION_0: "VERSION_0";
2333
- readonly VERSION_1: "VERSION_1";
2334
- };
2335
- export type CmfcTimedMetadataBoxVersion =
2336
- (typeof CmfcTimedMetadataBoxVersion)[keyof typeof CmfcTimedMetadataBoxVersion];
2337
- export interface CmfcSettings {
2338
- AudioDuration?: CmfcAudioDuration | string;
2339
- AudioGroupId?: string;
2340
- AudioRenditionSets?: string;
2341
- AudioTrackType?: CmfcAudioTrackType | string;
2342
- DescriptiveVideoServiceFlag?: CmfcDescriptiveVideoServiceFlag | string;
2343
- IFrameOnlyManifest?: CmfcIFrameOnlyManifest | string;
2344
- KlvMetadata?: CmfcKlvMetadata | string;
2345
- ManifestMetadataSignaling?: CmfcManifestMetadataSignaling | string;
2346
- Scte35Esam?: CmfcScte35Esam | string;
2347
- Scte35Source?: CmfcScte35Source | string;
2348
- TimedMetadata?: CmfcTimedMetadata | string;
2349
- TimedMetadataBoxVersion?: CmfcTimedMetadataBoxVersion | string;
2350
- TimedMetadataSchemeIdUri?: string;
2351
- TimedMetadataValue?: string;
2352
- }