19 lines
332 B
JavaScript
19 lines
332 B
JavaScript
|
module.exports = {
|
||
|
allowCache: true,
|
||
|
mediaSequence: 0,
|
||
|
dateRanges: [],
|
||
|
iFramePlaylists: [],
|
||
|
playlistType: 'VOD',
|
||
|
segments: [
|
||
|
{
|
||
|
duration: 0.01,
|
||
|
timeline: 0,
|
||
|
uri: 'http://example.com/00001.ts'
|
||
|
}
|
||
|
],
|
||
|
targetDuration: 10,
|
||
|
endList: true,
|
||
|
discontinuitySequence: 0,
|
||
|
discontinuityStarts: []
|
||
|
};
|