mirror of
https://github.com/videojs/m3u8-parser.git
synced 2026-06-06 08:22:33 +00:00
17 lines
309 B
JavaScript
17 lines
309 B
JavaScript
module.exports = {
|
|
allowCache: true,
|
|
mediaSequence: 0,
|
|
dateRanges: [],
|
|
playlistType: 'VOD',
|
|
segments: [
|
|
{
|
|
duration: 0.01,
|
|
timeline: 0,
|
|
uri: 'http://example.com/00001.ts'
|
|
}
|
|
],
|
|
targetDuration: 10,
|
|
endList: true,
|
|
discontinuitySequence: 0,
|
|
discontinuityStarts: []
|
|
};
|