您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

sounds.js 749B

123456789101112131415161718192021222324252627
  1. /**
  2. * The name of the bundled audio file which will be played for when live streaming is stopped.
  3. *
  4. * @type {string}
  5. */
  6. export const LIVE_STREAMING_OFF_SOUND_FILE = 'liveStreamingOff.mp3';
  7. /**
  8. * The name of the bundled audio file which will be played for when a live streaming is started.
  9. *
  10. * @type {string}
  11. */
  12. export const LIVE_STREAMING_ON_SOUND_FILE = 'liveStreamingOn.mp3';
  13. /**
  14. * The name of the bundled audio file which will be played for when a recording is stopped.
  15. *
  16. * @type {string}
  17. */
  18. export const RECORDING_OFF_SOUND_FILE = 'recordingOff.mp3';
  19. /**
  20. * The name of the bundled audio file which will be played for when a recording is started.
  21. *
  22. * @type {string}
  23. */
  24. export const RECORDING_ON_SOUND_FILE = 'recordingOn.mp3';