mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-19 11:37:47 +00:00
* Reencode mp3 sounds at lower bitrate, mono. * Encode wav sounds as mp3. * Remove unused sound file. * Add opus encoded sounds. * Add a script to encode sounds.
12 lines
330 B
TypeScript
12 lines
330 B
TypeScript
/**
|
|
* The name of the bundled sound file which will be played when new participant
|
|
* joins the conference.
|
|
*/
|
|
export const PARTICIPANT_JOINED_FILE = 'joined.mp3';
|
|
|
|
/**
|
|
* The name of the bundled sound file which will be played when any participant
|
|
* leaves the conference.
|
|
*/
|
|
export const PARTICIPANT_LEFT_FILE = 'left.mp3';
|