1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- module.exports = {
- allowCache: true,
- discontinuityStarts: [],
- mediaGroups: {
- // TYPE
- 'AUDIO': {
- // GROUP-ID
- audio: {
- // NAME
- English: {
- language: 'eng',
- autoselect: true,
- default: true,
- uri: 'eng/prog_index.m3u8'
- },
- // NAME
- Français: {
- language: 'fre',
- autoselect: true,
- default: false,
- uri: 'fre/prog_index.m3u8'
- },
- // NAME
- Espanol: {
- language: 'sp',
- autoselect: true,
- default: false,
- uri: 'sp/prog_index.m3u8'
- }
- }
- },
- 'VIDEO': {},
- 'CLOSED-CAPTIONS': {},
- 'SUBTITLES': {}
- },
- playlists: [{
- attributes: {
- 'PROGRAM-ID': 1,
- 'BANDWIDTH': 195023,
- 'CODECS': 'avc1.42e00a,mp4a.40.2',
- 'AUDIO': 'audio'
- },
- timeline: 0,
- uri: 'lo/prog_index.m3u8'
- }, {
- attributes: {
- 'PROGRAM-ID': 1,
- 'BANDWIDTH': 591680,
- 'CODECS': 'avc1.42e01e,mp4a.40.2',
- 'AUDIO': 'audio'
- },
- timeline: 0,
- uri: 'hi/prog_index.m3u8'
- }],
- segments: []
- };
|