Skip to content

Commit

Permalink
AWS Elemental MediaLive Update: This release adds support for selecti…
Browse files Browse the repository at this point in the history
…ng the Program Date Time (PDT) Clock source algorithm for HLS outputs.
  • Loading branch information
AWS committed Jan 7, 2022
1 parent 291b949 commit 48f6241
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "feature",
"category": "AWS Elemental MediaLive",
"contributor": "",
"description": "This release adds support for selecting the Program Date Time (PDT) Clock source algorithm for HLS outputs."
}
Original file line number Diff line number Diff line change
Expand Up @@ -8488,7 +8488,12 @@
"ProgramDateTime": {
"shape": "HlsProgramDateTime",
"locationName": "programDateTime",
"documentation": "Includes or excludes EXT-X-PROGRAM-DATE-TIME tag in .m3u8 manifest files. The value is calculated as follows: either the program date and time are initialized using the input timecode source, or the time is initialized using the input timecode source and the date is initialized using the timestampOffset."
"documentation": "Includes or excludes EXT-X-PROGRAM-DATE-TIME tag in .m3u8 manifest files. The value is calculated using the program date time clock."
},
"ProgramDateTimeClock": {
"shape": "HlsProgramDateTimeClock",
"locationName": "programDateTimeClock",
"documentation": "Specifies the algorithm used to drive the HLS EXT-X-PROGRAM-DATE-TIME clock. Options include:\n\nINITIALIZE_FROM_OUTPUT_TIMECODE: The PDT clock is initialized as a function of the first output timecode, then incremented by the EXTINF duration of each encoded segment.\n\nSYSTEM_CLOCK: The PDT clock is initialized as a function of the UTC wall clock, then incremented by the EXTINF duration of each encoded segment. If the PDT clock diverges from the wall clock by more than 500ms, it is resynchronized to the wall clock."
},
"ProgramDateTimePeriod": {
"shape": "__integerMin0Max3600",
Expand Down Expand Up @@ -8739,6 +8744,14 @@
"INCLUDE"
]
},
"HlsProgramDateTimeClock": {
"type": "string",
"documentation": "Hls Program Date Time Clock",
"enum": [
"INITIALIZE_FROM_OUTPUT_TIMECODE",
"SYSTEM_CLOCK"
]
},
"HlsRedundantManifest": {
"type": "string",
"documentation": "Hls Redundant Manifest",
Expand Down

0 comments on commit 48f6241

Please sign in to comment.