forked from Deuxfleurs/nixcfg
Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
93917120e8 |
1 changed files with 41 additions and 5 deletions
|
@ -104,7 +104,7 @@ var config = {
|
||||||
|
|
||||||
// Start the conference in audio only mode (no video is being received nor
|
// Start the conference in audio only mode (no video is being received nor
|
||||||
// sent).
|
// sent).
|
||||||
startAudioOnly: false,
|
startAudioOnly: true,
|
||||||
|
|
||||||
// Every participant after the Nth will start audio muted.
|
// Every participant after the Nth will start audio muted.
|
||||||
startAudioMuted: 5,
|
startAudioMuted: 5,
|
||||||
|
@ -158,11 +158,11 @@ var config = {
|
||||||
// enableLayerSuspension: false,
|
// enableLayerSuspension: false,
|
||||||
|
|
||||||
// Every participant after the Nth will start video muted.
|
// Every participant after the Nth will start video muted.
|
||||||
startVideoMuted: 5,
|
startVideoMuted: 0,
|
||||||
|
|
||||||
// Start calls with video muted. Unlike the option above, this one is only
|
// Start calls with video muted. Unlike the option above, this one is only
|
||||||
// applied locally. FIXME: having these 2 options is confusing.
|
// applied locally. FIXME: having these 2 options is confusing.
|
||||||
// startWithVideoMuted: false,
|
startWithVideoMuted: true,
|
||||||
|
|
||||||
// If set to true, prefer to use the H.264 video codec (if supported).
|
// If set to true, prefer to use the H.264 video codec (if supported).
|
||||||
// Note that it's not recommended to do this because simulcast is not
|
// Note that it's not recommended to do this because simulcast is not
|
||||||
|
@ -368,14 +368,14 @@ var config = {
|
||||||
|
|
||||||
// Message to show the users. Example: 'The service will be down for
|
// Message to show the users. Example: 'The service will be down for
|
||||||
// maintenance at 01:00 AM GMT,
|
// maintenance at 01:00 AM GMT,
|
||||||
// noticeMessage: '',
|
noticeMessage: "La vidéo et le partage d'écran ont été temporairement désactivés pour cause d'abus graves. Pour en savoir plus et prendre part à la discussion, rendez-vous sur notre blog.",
|
||||||
|
|
||||||
// Enables calendar integration, depends on googleApiApplicationClientID
|
// Enables calendar integration, depends on googleApiApplicationClientID
|
||||||
// and microsoftApiApplicationClientID
|
// and microsoftApiApplicationClientID
|
||||||
// enableCalendarIntegration: false,
|
// enableCalendarIntegration: false,
|
||||||
|
|
||||||
// When 'true', it shows an intermediate page before joining, where the user can configure their devices.
|
// When 'true', it shows an intermediate page before joining, where the user can configure their devices.
|
||||||
prejoinPageEnabled: true,
|
prejoinPageEnabled: false,
|
||||||
|
|
||||||
// If etherpad integration is enabled, setting this to true will
|
// If etherpad integration is enabled, setting this to true will
|
||||||
// automatically open the etherpad when a participant joins. This
|
// automatically open the etherpad when a participant joins. This
|
||||||
|
@ -396,6 +396,42 @@ var config = {
|
||||||
// Base URL for a Gravatar-compatible service. Defaults to libravatar.
|
// Base URL for a Gravatar-compatible service. Defaults to libravatar.
|
||||||
// gravatarBaseURL: 'https://seccdn.libravatar.org/avatar/';
|
// gravatarBaseURL: 'https://seccdn.libravatar.org/avatar/';
|
||||||
|
|
||||||
|
toolbarButtons: [
|
||||||
|
// 'camera',
|
||||||
|
'chat',
|
||||||
|
// 'closedcaptions',
|
||||||
|
// 'desktop',
|
||||||
|
// 'download',
|
||||||
|
// 'embedmeeting',
|
||||||
|
// 'etherpad',
|
||||||
|
'feedback',
|
||||||
|
// 'filmstrip',
|
||||||
|
'fullscreen',
|
||||||
|
'hangup',
|
||||||
|
'help',
|
||||||
|
// 'highlight',
|
||||||
|
'invite',
|
||||||
|
// 'linktosalesforce',
|
||||||
|
// 'livestreaming',
|
||||||
|
'microphone',
|
||||||
|
'noisesuppression',
|
||||||
|
'participants-pane',
|
||||||
|
'profile',
|
||||||
|
'raisehand',
|
||||||
|
// 'recording',
|
||||||
|
'security',
|
||||||
|
'select-background',
|
||||||
|
'settings',
|
||||||
|
// 'shareaudio',
|
||||||
|
// 'sharedvideo',
|
||||||
|
// 'shortcuts',
|
||||||
|
'stats',
|
||||||
|
'tileview',
|
||||||
|
// 'toggle-camera',
|
||||||
|
// 'videoquality',
|
||||||
|
// 'whiteboard',
|
||||||
|
// ],
|
||||||
|
|
||||||
// Stats
|
// Stats
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue