瀏覽代碼

fix(config): Document LJM props.

disableAEC
disableAGC
disableAP
disableNS
displayJids
forceTurnRelay
ignoreStartMuted
enableTalkWhileMuted
factor2
Hristo Terezov 5 月之前
父節點
當前提交
ee8b62cf73
共有 2 個檔案被更改,包括 33 行新增7 行删除
  1. 20
    7
      config.js
  2. 13
    0
      react/features/base/config/configType.ts

+ 20
- 7
config.js 查看文件

1628
     //         video: true
1628
     //         video: true
1629
     //     },
1629
     //     },
1630
     // },
1630
     // },
1631
+    // Disables the echo cancelation for local audio tracks.
1632
+    // disableAEC: true,
1633
+
1634
+    // Disables the auto gain control for local audio tracks.
1635
+    // disableAGC: true,
1636
+
1637
+    // Disables the audio processing (echo cancelation, auto gain control and noise suppression) for local audio tracks.
1638
+    // disableAP: true,
1639
+
1640
+    // Disables the anoise suppression for local audio tracks.
1641
+    // disableNS: true,
1642
+
1643
+    // Replaces the display name with the JID of the participants.
1644
+    // displayJids: true,
1645
+
1646
+    // Enables disables talk while muted detection.
1647
+    // enableTalkWhileMuted: true,
1648
+
1649
+    // Sets the peer connection ICE transport policy to "relay".
1650
+    // forceTurnRelay: true,
1631
 
1651
 
1632
     // List of undocumented settings used in jitsi-meet
1652
     // List of undocumented settings used in jitsi-meet
1633
     /**
1653
     /**
1637
      dialOutCodesUrl
1657
      dialOutCodesUrl
1638
      dialOutRegionUrl
1658
      dialOutRegionUrl
1639
      disableRemoteControl
1659
      disableRemoteControl
1640
-     displayJids
1641
      googleApiApplicationClientID
1660
      googleApiApplicationClientID
1642
      iAmRecorder
1661
      iAmRecorder
1643
      iAmSipGateway
1662
      iAmSipGateway
1657
      _peerConnStatusRtcMuteTimeout
1676
      _peerConnStatusRtcMuteTimeout
1658
      avgRtpStatsN
1677
      avgRtpStatsN
1659
      desktopSharingSources
1678
      desktopSharingSources
1660
-     disableAEC
1661
-     disableAGC
1662
-     disableAP
1663
      disableLocalStats
1679
      disableLocalStats
1664
-     disableNS
1665
-     enableTalkWhileMuted
1666
-     forceTurnRelay
1667
      hiddenDomain
1680
      hiddenDomain
1668
      hiddenFromRecorderFeatureEnabled
1681
      hiddenFromRecorderFeatureEnabled
1669
      ignoreStartMuted
1682
      ignoreStartMuted

+ 13
- 0
react/features/base/config/configType.ts 查看文件

215
         hideAutoAssignButton?: boolean;
215
         hideAutoAssignButton?: boolean;
216
         hideJoinRoomButton?: boolean;
216
         hideJoinRoomButton?: boolean;
217
     };
217
     };
218
+    bridgeChannel?: {
219
+        ignoreDomain?: string;
220
+        preferSctp?: boolean;
221
+    };
218
     buttonsWithNotifyClick?: Array<ButtonsWithNotifyClick | {
222
     buttonsWithNotifyClick?: Array<ButtonsWithNotifyClick | {
219
         key: ButtonsWithNotifyClick;
223
         key: ButtonsWithNotifyClick;
220
         preventExecution: boolean;
224
         preventExecution: boolean;
280
     dialOutAuthUrl?: string;
284
     dialOutAuthUrl?: string;
281
     dialOutRegionUrl?: string;
285
     dialOutRegionUrl?: string;
282
     disable1On1Mode?: boolean | null;
286
     disable1On1Mode?: boolean | null;
287
+    disableAEC?: boolean;
288
+    disableAGC?: boolean;
289
+    disableAP?: boolean;
283
     disableAddingBackgroundImages?: boolean;
290
     disableAddingBackgroundImages?: boolean;
284
     disableAudioLevels?: boolean;
291
     disableAudioLevels?: boolean;
285
     disableBeforeUnloadHandlers?: boolean;
292
     disableBeforeUnloadHandlers?: boolean;
294
     disableJoinLeaveSounds?: boolean;
301
     disableJoinLeaveSounds?: boolean;
295
     disableLocalVideoFlip?: boolean;
302
     disableLocalVideoFlip?: boolean;
296
     disableModeratorIndicator?: boolean;
303
     disableModeratorIndicator?: boolean;
304
+    disableNS?: boolean;
297
     disablePolls?: boolean;
305
     disablePolls?: boolean;
298
     disableProfile?: boolean;
306
     disableProfile?: boolean;
299
     disableReactions?: boolean;
307
     disableReactions?: boolean;
317
     disableVirtualBackground?: boolean;
325
     disableVirtualBackground?: boolean;
318
     disabledNotifications?: Array<string>;
326
     disabledNotifications?: Array<string>;
319
     disabledSounds?: Array<Sounds>;
327
     disabledSounds?: Array<Sounds>;
328
+    displayJids?: boolean;
320
     doNotFlipLocalVideo?: boolean;
329
     doNotFlipLocalVideo?: boolean;
321
     doNotStoreRoom?: boolean;
330
     doNotStoreRoom?: boolean;
322
     dropbox?: {
331
     dropbox?: {
359
     enableOpusRed?: boolean;
368
     enableOpusRed?: boolean;
360
     enableRemb?: boolean;
369
     enableRemb?: boolean;
361
     enableSaveLogs?: boolean;
370
     enableSaveLogs?: boolean;
371
+    enableTalkWhileMuted?: boolean;
362
     enableTcc?: boolean;
372
     enableTcc?: boolean;
363
     enableWebHIDFeature?: boolean;
373
     enableWebHIDFeature?: boolean;
364
     enableWelcomePage?: boolean;
374
     enableWelcomePage?: boolean;
385
         ssrcRewritingEnabled: boolean;
395
         ssrcRewritingEnabled: boolean;
386
     };
396
     };
387
     focusUserJid?: string;
397
     focusUserJid?: string;
398
+    forceTurnRelay?: boolean;
388
     gatherStats?: boolean;
399
     gatherStats?: boolean;
389
     giphy?: {
400
     giphy?: {
390
         displayMode?: 'all' | 'tile' | 'chat';
401
         displayMode?: 'all' | 'tile' | 'chat';
424
     };
435
     };
425
     iAmRecorder?: boolean;
436
     iAmRecorder?: boolean;
426
     iAmSipGateway?: boolean;
437
     iAmSipGateway?: boolean;
438
+    ignoreStartMuted?: boolean;
427
     inviteAppName?: string | null;
439
     inviteAppName?: string | null;
428
     inviteServiceCallFlowsUrl?: string;
440
     inviteServiceCallFlowsUrl?: string;
429
     inviteServiceUrl?: string;
441
     inviteServiceUrl?: string;
477
         enabled?: boolean;
489
         enabled?: boolean;
478
         iceTransportPolicy?: string;
490
         iceTransportPolicy?: string;
479
         mobileCodecPreferenceOrder?: Array<string>;
491
         mobileCodecPreferenceOrder?: Array<string>;
492
+        mobileScreenshareCodec?: string;
480
         stunServers?: Array<{ urls: string; }>;
493
         stunServers?: Array<{ urls: string; }>;
481
     };
494
     };
482
     participantMenuButtonsWithNotifyClick?: Array<string | ParticipantMenuButtonsWithNotifyClick | {
495
     participantMenuButtonsWithNotifyClick?: Array<string | ParticipantMenuButtonsWithNotifyClick | {

Loading…
取消
儲存