23f8e047 by David LaPalomento

Add in absolute URI test fixtures

Forgot these in an earlier commit. Add in a couple examples of absolute URIs in a media playlist.
1 parent be85352e
1 {
2 "allowCache": true,
3 "targetDuration": 10,
4 "mediaSequence": 0,
5 "playlistType": "VOD",
6 "segments": [{
7 "duration": 10,
8 "uri": "http://example.com/00001.ts"
9 }, {
10 "duration": 10,
11 "uri": "https://example.com/00002.ts"
12 }, {
13 "duration": 10,
14 "uri": "//example.com/00003.ts"
15 }, {
16 "duration": 10,
17 "uri": "http://example.com/00004.ts"
18 }]
19 }
1 #EXTM3U
2 #EXT-X-PLAYLIST-TYPE:VOD
3 #EXT-X-TARGETDURATION:10
4 #EXTINF:10,
5 http://example.com/00001.ts
6 #EXTINF:10,
7 https://example.com/00002.ts
8 #EXTINF:10,
9 //example.com/00003.ts
10 #EXTINF:10,
11 http://example.com/00004.ts
12 #ZEN-TOTAL-DURATION:57.9911
13 #EXT-X-ENDLIST