From 3306edc514a996a7c61986d4851c9e6cfa323fca Mon Sep 17 00:00:00 2001 From: ouwou <26526779+ouwou@users.noreply.github.com> Date: Mon, 25 Mar 2024 00:38:31 -0400 Subject: add jitter buffer for voice --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index cbbe341..a36d5c6 100644 --- a/README.md +++ b/README.md @@ -330,9 +330,11 @@ For example, memory_db would be set by adding `memory_db = true` under the line #### voice -| Setting | Type | Default | Description | -|---------|--------|------------------------------------|------------------------------------------------------------| -| `vad` | string | rnnoise if enabled, gate otherwise | Method used for voice activity detection. Changeable in UI | +| Setting | Type | Default | Description | +|--------------------------|--------|------------------------------------|---------------------------------------------------------------------------------| +| `vad` | string | rnnoise if enabled, gate otherwise | Method used for voice activity detection. Changeable in UI | +| `jitter_latency_desired` | int | 50 | Desired/Minimum latency for jitter buffer (in milliseconds) | +| `jitter_latency_maximum` | int | 200 | Maximum latency for jitter buffer before frames are discarded (in milliseconds) | #### windows -- cgit v1.2.3 From 99b1a804dfeee70c12556f3527ae6756cf94046d Mon Sep 17 00:00:00 2001 From: ouwou <26526779+ouwou@users.noreply.github.com> Date: Tue, 26 Mar 2024 21:29:46 -0400 Subject: add voice backends to readme --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index a36d5c6..349ab15 100644 --- a/README.md +++ b/README.md @@ -330,11 +330,12 @@ For example, memory_db would be set by adding `memory_db = true` under the line #### voice -| Setting | Type | Default | Description | -|--------------------------|--------|------------------------------------|---------------------------------------------------------------------------------| -| `vad` | string | rnnoise if enabled, gate otherwise | Method used for voice activity detection. Changeable in UI | -| `jitter_latency_desired` | int | 50 | Desired/Minimum latency for jitter buffer (in milliseconds) | -| `jitter_latency_maximum` | int | 200 | Maximum latency for jitter buffer before frames are discarded (in milliseconds) | +| Setting | Type | Default | Description | +|--------------------------|--------|------------------------------------|----------------------------------------------------------------------------------------------------------------------------| +| `vad` | string | rnnoise if enabled, gate otherwise | Method used for voice activity detection. Changeable in UI | +| `backends` | string | empty | Change backend priority when initializing miniaudio: `wasapi;dsound;winmm;coreaudio;sndio;audio4;oss;pulseaudio;alsa;jack` | +| `jitter_latency_desired` | int | 50 | Desired/Minimum latency for jitter buffer (in milliseconds) | +| `jitter_latency_maximum` | int | 200 | Maximum latency for jitter buffer before frames are discarded (in milliseconds) | #### windows -- cgit v1.2.3