CONSTANT.js 605 B

1234567891011121314151617181920212223242526
  1. const CONSTANT = {
  2. websocketPorts: {
  3. realmonitor: {
  4. ws: 9100,
  5. wss: 9102
  6. },
  7. playback: {
  8. ws: 9320,
  9. wss: 9322
  10. }
  11. },
  12. errorInfo: {
  13. 101: "播放延时大于8s",
  14. 201: "当前音频无法播放",
  15. 202: "websocket连接错误",
  16. 203: "文件播放完成",
  17. 404: "RTSP文件未找到",
  18. 457: "时间设置错误",
  19. 503: "SETUP服务不可用",
  20. 504: "对讲服务不可用",
  21. defaultErrorMsg: "播放失败,请检查配置"
  22. }
  23. }
  24. export default CONSTANT