This repository has been archived by the owner on Jan 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 793
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added test for whitespace in playlist
- Loading branch information
jforbes
committed
May 27, 2015
1 parent
76778e7
commit d8c7331
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"allowCache": true, | ||
"mediaSequence": 0, | ||
"playlistType": "VOD", | ||
"segments": [ | ||
{ | ||
"duration": 10, | ||
"uri": "http://example.com/00001.ts" | ||
}, | ||
{ | ||
"duration": 10, | ||
"uri": "https://example.com/00002.ts" | ||
}, | ||
{ | ||
"duration": 10, | ||
"uri": "//example.com/00003.ts" | ||
}, | ||
{ | ||
"duration": 10, | ||
"uri": "http://example.com/00004.ts" | ||
} | ||
], | ||
"targetDuration": 10, | ||
"endList": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#EXTM3U | ||
#EXT-X-PLAYLIST-TYPE:VOD | ||
#EXT-X-TARGETDURATION:10 | ||
|
||
#EXTINF:10, | ||
http://example.com/00001.ts | ||
#EXTINF:10, | ||
https://example.com/00002.ts | ||
#EXTINF:10, | ||
//example.com/00003.ts | ||
#EXTINF:10, | ||
http://example.com/00004.ts | ||
#ZEN-TOTAL-DURATION:57.9911 | ||
#EXT-X-ENDLIST |