Skip to content

Commit

Permalink
feat: add program-date-time tag info to parsed segments (videojs#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjneil committed Feb 23, 2018
1 parent 16f7c08 commit 873bd35
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
13 changes: 11 additions & 2 deletions src/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,17 @@ 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 occurence of the PROGRAM-DATE-TIME tag
// to the manifest object
// TODO: Consider removing this in future major version
this.manifest.dateTimeString = entry.dateTimeString;
this.manifest.dateTimeObject = entry.dateTimeObject;
}

currentUri.dateTimeString = entry.dateTimeString;
currentUri.dateTimeObject = entry.dateTimeObject;
},
targetduration() {
if (!isFinite(entry.duration) || entry.duration < 0) {
Expand Down
9 changes: 9 additions & 0 deletions test/fixtures/m3u8/dateTime.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
"playlistType": "VOD",
"segments": [
{
"dateTimeString": "2016-06-22T09:20:16.166-04:00",
"dateTimeObject": new Date("2016-06-22T09:20:16.166-04:00"),
"duration": 10,
"timeline": 0,
"uri": "hls_450k_video.ts"
},
{
"dateTimeString": "2016-06-22T09:20:26.166-04:00",
"dateTimeObject": new Date("2016-06-22T09:20:26.166-04:00"),
"duration": 10,
"timeline": 0,
"uri": "hls_450k_video.ts"
Expand Down
5 changes: 4 additions & 1 deletion test/fixtures/m3u8/dateTime.m3u8
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

0 comments on commit 873bd35

Please sign in to comment.