config.js 544 B

123456789101112131415161718
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports["default"] = {
  6. GOAL_BUFFER_LENGTH: 30,
  7. MAX_GOAL_BUFFER_LENGTH: 60,
  8. GOAL_BUFFER_LENGTH_RATE: 1,
  9. // A fudge factor to apply to advertised playlist bitrates to account for
  10. // temporary flucations in client bandwidth
  11. BANDWIDTH_VARIANCE: 1.2,
  12. // How much of the buffer must be filled before we consider upswitching
  13. BUFFER_LOW_WATER_LINE: 0,
  14. MAX_BUFFER_LOW_WATER_LINE: 30,
  15. BUFFER_LOW_WATER_LINE_RATE: 1
  16. };
  17. module.exports = exports["default"];