diff options
author | metamuffin <metamuffin@disroot.org> | 2022-12-25 14:31:03 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-12-25 14:31:03 +0100 |
commit | 028c382c9f5408422832b29a8fa466a6386c86f7 (patch) | |
tree | a77792e9b7d8a14f971c8a75d4f938c2cb3334f8 /client-web/source/preferences | |
parent | ac68f06d230fd589edb9b1d13af50836d554f23e (diff) | |
download | keks-meet-028c382c9f5408422832b29a8fa466a6386c86f7.tar keks-meet-028c382c9f5408422832b29a8fa466a6386c86f7.tar.bz2 keks-meet-028c382c9f5408422832b29a8fa466a6386c86f7.tar.zst |
show voice activity
Diffstat (limited to 'client-web/source/preferences')
-rw-r--r-- | client-web/source/preferences/decl.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client-web/source/preferences/decl.ts b/client-web/source/preferences/decl.ts index effd885..f3f8e84 100644 --- a/client-web/source/preferences/decl.ts +++ b/client-web/source/preferences/decl.ts @@ -32,6 +32,8 @@ export const PREF_DECLS = { camera_facing_mode: { type: optional(string), possible_values: ["environment", "user"], description: "Prefer user-facing or env-facing camera" }, auto_gain_control: { type: bool, description: "Automatically adjust mic gain" }, echo_cancellation: { type: bool, description: "Cancel echo" }, + audio_activity_threshold: { type: number, optional: true, default: 0.003, description: "Audio activity threshold" }, + // TODO differenciate between mic, cam and screen optional_audio_default_enable: { type: bool, default: true, description: "Enable audio tracks by default" }, optional_video_default_enable: { type: bool, default: false, description: "Enable video tracks by default" }, |