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
|
||||
// sent).
|
||||
startAudioOnly: false,
|
||||
startAudioOnly: true,
|
||||
|
||||
// Every participant after the Nth will start audio muted.
|
||||
startAudioMuted: 5,
|
||||
|
@ -158,11 +158,11 @@ var config = {
|
|||
// enableLayerSuspension: false,
|
||||
|
||||
// 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
|
||||
// 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).
|
||||
// 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
|
||||
// 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
|
||||
// and microsoftApiApplicationClientID
|
||||
// enableCalendarIntegration: false,
|
||||
|
||||
// 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
|
||||
// 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.
|
||||
// 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
|
||||
//
|
||||
|
||||
|
|
Loading…
Reference in a new issue