1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- export const parsedManifest = {
- allowCache: true,
- discontinuityStarts: [],
- duration: 6,
- endList: true,
- mediaGroups: {
- 'AUDIO': {},
- 'CLOSED-CAPTIONS': {
- cc: {
- // eng: {
- // autoselect: false,
- // default: false,
- // instreamId: '1',
- // language: 'eng',
- // aspectRatio: 1,
- // easyReader: 0,
- // '3D': 0
- // },
- // TODO only this one ends up being represented and not both
- eng: {
- 'autoselect': false,
- 'default': false,
- 'instreamId': 'SERVICE2',
- 'language': 'eng',
- 'aspectRatio': 1,
- 'easyReader': 1,
- '3D': 0
- }
- }
- },
- 'SUBTITLES': {},
- 'VIDEO': {}
- },
- playlists: [
- {
- attributes: {
- 'AUDIO': 'audio',
- 'BANDWIDTH': 449000,
- 'CODECS': 'avc1.420015',
- 'FRAME-RATE': 23.976,
- 'NAME': '482',
- 'PROGRAM-ID': 1,
- 'RESOLUTION': {
- height: 270,
- width: 482
- },
- 'SUBTITLES': 'subs'
- },
- endList: true,
- resolvedUri: '',
- targetDuration: 6,
- mediaSequence: 0,
- timelineStarts: [{ start: 0, timeline: 0 }],
- discontinuitySequence: 0,
- discontinuityStarts: [],
- segments: [
- {
- duration: 6,
- timeline: 0,
- number: 0,
- presentationTime: 0,
- map: {
- uri: '',
- resolvedUri: 'https://www.example.com/1080p.ts'
- },
- resolvedUri: 'https://www.example.com/1080p.ts',
- uri: 'https://www.example.com/1080p.ts'
- }
- ],
- timeline: 0,
- uri: ''
- }
- ],
- segments: [],
- timelineStarts: [{ start: 0, timeline: 0 }],
- uri: ''
- };
|