2018-06-05 18:20:43 +00:00
|
|
|
/**
|
2019-08-12 15:34:38 +00:00
|
|
|
* The name of the bundled audio file which will be played for when live streaming is stopped.
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
export const LIVE_STREAMING_OFF_SOUND_FILE = 'liveStreamingOff.mp3';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the bundled audio file which will be played for when a live streaming is started.
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
export const LIVE_STREAMING_ON_SOUND_FILE = 'liveStreamingOn.mp3';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the bundled audio file which will be played for when a recording is stopped.
|
2018-06-05 18:20:43 +00:00
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
export const RECORDING_OFF_SOUND_FILE = 'recordingOff.mp3';
|
|
|
|
|
|
|
|
/**
|
2019-08-12 15:34:38 +00:00
|
|
|
* The name of the bundled audio file which will be played for when a recording is started.
|
2018-06-05 18:20:43 +00:00
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
export const RECORDING_ON_SOUND_FILE = 'recordingOn.mp3';
|