alternateAudio.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. module.exports = {
  2. allowCache: true,
  3. discontinuityStarts: [],
  4. mediaGroups: {
  5. // TYPE
  6. 'AUDIO': {
  7. // GROUP-ID
  8. audio: {
  9. // NAME
  10. English: {
  11. language: 'eng',
  12. autoselect: true,
  13. default: true,
  14. uri: 'eng/prog_index.m3u8'
  15. },
  16. // NAME
  17. Français: {
  18. language: 'fre',
  19. autoselect: true,
  20. default: false,
  21. uri: 'fre/prog_index.m3u8'
  22. },
  23. // NAME
  24. Espanol: {
  25. language: 'sp',
  26. autoselect: true,
  27. default: false,
  28. uri: 'sp/prog_index.m3u8'
  29. }
  30. }
  31. },
  32. 'VIDEO': {},
  33. 'CLOSED-CAPTIONS': {},
  34. 'SUBTITLES': {}
  35. },
  36. playlists: [{
  37. attributes: {
  38. 'PROGRAM-ID': 1,
  39. 'BANDWIDTH': 195023,
  40. 'CODECS': 'avc1.42e00a,mp4a.40.2',
  41. 'AUDIO': 'audio'
  42. },
  43. timeline: 0,
  44. uri: 'lo/prog_index.m3u8'
  45. }, {
  46. attributes: {
  47. 'PROGRAM-ID': 1,
  48. 'BANDWIDTH': 591680,
  49. 'CODECS': 'avc1.42e01e,mp4a.40.2',
  50. 'AUDIO': 'audio'
  51. },
  52. timeline: 0,
  53. uri: 'hi/prog_index.m3u8'
  54. }],
  55. segments: []
  56. };