-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add program-date-time tag info to parsed segments #27
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -267,8 +267,16 @@ export default class Parser extends Stream { | |
this.manifest.discontinuityStarts.push(uris.length); | ||
}, | ||
'program-date-time'() { | ||
this.manifest.dateTimeString = entry.dateTimeString; | ||
this.manifest.dateTimeObject = entry.dateTimeObject; | ||
if (typeof this.manifest.dateTimeString === 'undefined') { | ||
// PROGRAM-DATE-TIME is a media-segment tag, but for backwards | ||
// compatibility, we add the first occurance of the PROGRAM-DATE-TIME tag | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. occurence |
||
// to the manifest object | ||
this.manifest.dateTimeString = entry.dateTimeString; | ||
this.manifest.dateTimeObject = entry.dateTimeObject; | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is needed for calculating stream time from currentTime, so is more important than "for backwards compatibility" implies. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You could still calculate stream time from currentTime by looking at the |
||
|
||
currentUri.dateTimeString = entry.dateTimeString; | ||
currentUri.dateTimeObject = entry.dateTimeObject; | ||
}, | ||
targetduration() { | ||
if (!isFinite(entry.duration) || entry.duration < 0) { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
#EXTM3U | ||
#EXT-X-PLAYLIST-TYPE:VOD | ||
#EXT-X-MEDIA-SEQUENCE:0 | ||
#EXT-X-PROGRAM-DATE-TIME:2016-06-22T09:20:16.166-04:00 | ||
#EXT-X-ALLOW-CACHE:NO | ||
#EXT-X-TARGETDURATION:10 | ||
#EXT-X-PROGRAM-DATE-TIME:2016-06-22T09:20:16.166-04:00 | ||
#EXTINF:10 | ||
hls_450k_video.ts | ||
#EXT-X-PROGRAM-DATE-TIME:2016-06-22T09:20:26.166-04:00 | ||
#EXTINF:10 | ||
hls_450k_video.ts | ||
#EXT-X-ENDLIST |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should add a TODO notice for the next major version to remove this