mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-13 20:32:30 +00:00
* feat: Change the screenshare capture fps from UI. Add the ability to change the capture frame rate for screenshare from the UI. The fps becomes effective only on screen shares that are started after the setting is changed. * squash: add missing JSDOCs and translations for frames-per-second.
22 lines
471 B
JavaScript
22 lines
471 B
JavaScript
export const SETTINGS_TABS = {
|
|
CALENDAR: 'calendar_tab',
|
|
DEVICES: 'devices_tab',
|
|
MORE: 'more_tab',
|
|
PROFILE: 'profile_tab'
|
|
};
|
|
|
|
/**
|
|
* View ID for the Settings modal.
|
|
*/
|
|
export const SETTINGS_VIEW_ID = 'SETTINGS_VIEW_ID';
|
|
|
|
/**
|
|
* Default frame rate to be used for capturing screenshare.
|
|
*/
|
|
export const SS_DEFAULT_FRAME_RATE = 5;
|
|
|
|
/**
|
|
* Supported framerates to be used for capturing screenshare.
|
|
*/
|
|
export const SS_SUPPORTED_FRAMERATES = [ 5, 15, 30 ];
|