Skip to content

Commit 9d8cda9

Browse files
author
AWS
committed
AWS Elemental MediaPackage v2 Update: Added support for ClipStartTime on the FilterConfiguration object on OriginEndpoint manifest settings objects. Added support for EXT-X-START tags on produced HLS child playlists.
1 parent cbf5b62 commit 9d8cda9

File tree

2 files changed

+38
-3
lines changed

2 files changed

+38
-3
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Elemental MediaPackage v2",
4+
"contributor": "",
5+
"description": "Added support for ClipStartTime on the FilterConfiguration object on OriginEndpoint manifest settings objects. Added support for EXT-X-START tags on produced HLS child playlists."
6+
}

services/mediapackagev2/src/main/resources/codegen-resources/service-2.json

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -850,6 +850,7 @@
850850
"documentation":"<p>A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index, with an added suffix to distinguish it from the manifest name. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.</p>"
851851
},
852852
"ScteHls":{"shape":"ScteHls"},
853+
"StartTag":{"shape":"StartTag"},
853854
"ManifestWindowSeconds":{
854855
"shape":"CreateHlsManifestConfigurationManifestWindowSecondsInteger",
855856
"documentation":"<p>The total duration (in seconds) of the manifest's content.</p>"
@@ -890,6 +891,7 @@
890891
"documentation":"<p>A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index, with an added suffix to distinguish it from the manifest name. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.</p>"
891892
},
892893
"ScteHls":{"shape":"ScteHls"},
894+
"StartTag":{"shape":"StartTag"},
893895
"ManifestWindowSeconds":{
894896
"shape":"CreateLowLatencyHlsManifestConfigurationManifestWindowSecondsInteger",
895897
"documentation":"<p>The total duration (in seconds) of the manifest's content.</p>"
@@ -1379,6 +1381,10 @@
13791381
"TimeDelaySeconds":{
13801382
"shape":"FilterConfigurationTimeDelaySecondsInteger",
13811383
"documentation":"<p>Optionally specify the time delay for all of your manifest egress requests. Enter a value that is smaller than your endpoint's startover window. When you include time delay, note that you cannot use time delay query parameters for this manifest's endpoint URL.</p>"
1384+
},
1385+
"ClipStartTime":{
1386+
"shape":"Timestamp",
1387+
"documentation":"<p>Optionally specify the clip start time for all of your manifest egress requests. When you include clip start time, note that you cannot use clip start time query parameters for this manifest's endpoint URL.</p>"
13821388
}
13831389
},
13841390
"documentation":"<p>Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest. </p>"
@@ -1394,6 +1400,10 @@
13941400
"max":1209600,
13951401
"min":0
13961402
},
1403+
"Float":{
1404+
"type":"float",
1405+
"box":true
1406+
},
13971407
"ForceEndpointErrorConfiguration":{
13981408
"type":"structure",
13991409
"members":{
@@ -1661,7 +1671,8 @@
16611671
"documentation":"<p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval, EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest. The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player. ID3Timed metadata messages generate every 5 seconds whenever the content is ingested.</p> <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>"
16621672
},
16631673
"ScteHls":{"shape":"ScteHls"},
1664-
"FilterConfiguration":{"shape":"FilterConfiguration"}
1674+
"FilterConfiguration":{"shape":"FilterConfiguration"},
1675+
"StartTag":{"shape":"StartTag"}
16651676
},
16661677
"documentation":"<p>Retrieve the HTTP live streaming (HLS) manifest configuration.</p>"
16671678
},
@@ -1697,7 +1708,8 @@
16971708
"documentation":"<p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval, EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest. The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player. ID3Timed metadata messages generate every 5 seconds whenever the content is ingested.</p> <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>"
16981709
},
16991710
"ScteHls":{"shape":"ScteHls"},
1700-
"FilterConfiguration":{"shape":"FilterConfiguration"}
1711+
"FilterConfiguration":{"shape":"FilterConfiguration"},
1712+
"StartTag":{"shape":"StartTag"}
17011713
},
17021714
"documentation":"<p>Retrieve the low-latency HTTP live streaming (HLS) manifest configuration.</p>"
17031715
},
@@ -2481,6 +2493,21 @@
24812493
"max":1024,
24822494
"min":1
24832495
},
2496+
"StartTag":{
2497+
"type":"structure",
2498+
"required":["TimeOffset"],
2499+
"members":{
2500+
"TimeOffset":{
2501+
"shape":"Float",
2502+
"documentation":"<p>Specify the value for TIME-OFFSET within your EXT-X-START tag. Enter a signed floating point value which, if positive, must be less than the configured manifest duration minus three times the configured segment target duration. If negative, the absolute value must be larger than three times the configured segment target duration, and the absolute value must be smaller than the configured manifest duration.</p>"
2503+
},
2504+
"Precise":{
2505+
"shape":"Boolean",
2506+
"documentation":"<p>Specify the value for PRECISE within your EXT-X-START tag. Leave blank, or choose false, to use the default value NO. Choose yes to use the value YES.</p>"
2507+
}
2508+
},
2509+
"documentation":"<p>To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.</p>"
2510+
},
24842511
"String":{"type":"string"},
24852512
"TagArn":{"type":"string"},
24862513
"TagKey":{"type":"string"},
@@ -2917,7 +2944,9 @@
29172944
"PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES",
29182945
"DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS",
29192946
"ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION",
2920-
"SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY"
2947+
"SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY",
2948+
"CLIP_START_TIME_WITH_START_OR_END",
2949+
"START_TAG_TIME_OFFSET_INVALID"
29212950
]
29222951
}
29232952
},

0 commit comments

Comments
 (0)