livekit-plugins-hush 0.3.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- livekit_plugins_hush-0.3.3/LICENSE +201 -0
- livekit_plugins_hush-0.3.3/PKG-INFO +196 -0
- livekit_plugins_hush-0.3.3/README.md +169 -0
- livekit_plugins_hush-0.3.3/pyproject.toml +45 -0
- livekit_plugins_hush-0.3.3/setup.cfg +4 -0
- livekit_plugins_hush-0.3.3/src/livekit/plugins/hush/__init__.py +59 -0
- livekit_plugins_hush-0.3.3/src/livekit/plugins/hush/_hush_model.py +407 -0
- livekit_plugins_hush-0.3.3/src/livekit/plugins/hush/_libdf/__init__.py +361 -0
- livekit_plugins_hush-0.3.3/src/livekit/plugins/hush/models/config.ini +18 -0
- livekit_plugins_hush-0.3.3/src/livekit/plugins/hush/models/df_dec.onnx +0 -0
- livekit_plugins_hush-0.3.3/src/livekit/plugins/hush/models/enc.onnx +0 -0
- livekit_plugins_hush-0.3.3/src/livekit/plugins/hush/models/erb_dec.onnx +0 -0
- livekit_plugins_hush-0.3.3/src/livekit/plugins/hush/noise_suppressor.py +314 -0
- livekit_plugins_hush-0.3.3/src/livekit_plugins_hush.egg-info/PKG-INFO +196 -0
- livekit_plugins_hush-0.3.3/src/livekit_plugins_hush.egg-info/SOURCES.txt +17 -0
- livekit_plugins_hush-0.3.3/src/livekit_plugins_hush.egg-info/dependency_links.txt +1 -0
- livekit_plugins_hush-0.3.3/src/livekit_plugins_hush.egg-info/requires.txt +4 -0
- livekit_plugins_hush-0.3.3/src/livekit_plugins_hush.egg-info/top_level.txt +1 -0
- livekit_plugins_hush-0.3.3/tests/test_noise_suppression.py +748 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: livekit-plugins-hush
|
|
3
|
+
Version: 0.3.3
|
|
4
|
+
Summary: Hush noise suppression plugin for LiveKit Agents
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://github.com/arpesenti/livekit-plugins-hush
|
|
7
|
+
Project-URL: Repository, https://github.com/arpesenti/livekit-plugins-hush
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/arpesenti/livekit-plugins-hush/issues
|
|
9
|
+
Keywords: livekit,noise-suppression,noise-cancellation,hush,speech,audio,voip
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
19
|
+
Requires-Python: >=3.10
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Requires-Dist: livekit>=1.0.25
|
|
23
|
+
Requires-Dist: livekit-agents>=1.4.4
|
|
24
|
+
Requires-Dist: numpy>=1.26.0
|
|
25
|
+
Requires-Dist: onnxruntime>=1.17.0
|
|
26
|
+
Dynamic: license-file
|
|
27
|
+
|
|
28
|
+
# livekit-plugins-hush
|
|
29
|
+
|
|
30
|
+
[LiveKit](https://livekit.io) noise suppression plugin using the [Hush](https://github.com/pulp-vision/Hush) speech enhancement model. Self-hosted, in-process, no cloud API.
|
|
31
|
+
|
|
32
|
+
Hush is built on [DeepFilterNet3](https://github.com/Rikorose/DeepFilterNet) with an auxiliary separation head for background speaker suppression. Inference uses a pure-numpy DSP frontend for STFT/ERB feature extraction and [ONNX Runtime](https://onnxruntime.ai) for the neural network. No PyTorch, no Rust toolchain, no prebuilt mystery binaries.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Installation
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
pip install livekit-plugins-hush
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Dependencies: `livekit >= 1.0.25`, `livekit-agents >= 1.4.4`, `numpy >= 1.26.0`, `onnxruntime >= 1.17.0`.
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Usage
|
|
47
|
+
|
|
48
|
+
```python
|
|
49
|
+
from livekit.agents import room_io
|
|
50
|
+
from livekit.plugins import hush
|
|
51
|
+
|
|
52
|
+
await session.start(
|
|
53
|
+
room_options=room_io.RoomOptions(
|
|
54
|
+
audio_input=room_io.AudioInputOptions(
|
|
55
|
+
noise_cancellation=hush.noise_suppression(),
|
|
56
|
+
),
|
|
57
|
+
),
|
|
58
|
+
)
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
One instance per session. The ONNX model is loaded once per worker process and shared across instances.
|
|
62
|
+
|
|
63
|
+
### Parameters
|
|
64
|
+
|
|
65
|
+
```python
|
|
66
|
+
hush.noise_suppression(
|
|
67
|
+
strength=0.5, # wet/dry blend: 0.0 = bypass, 1.0 = full (default 0.5)
|
|
68
|
+
atten_lim_db=100.0, # max attenuation in dB (100.0 = unlimited)
|
|
69
|
+
debug_logging=False, # log per-frame RMS every 100 frames
|
|
70
|
+
)
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## Architecture
|
|
76
|
+
|
|
77
|
+
The model operates at 16 kHz with 10 ms frames (160 samples, 320-sample FFT). Processing is **per-frame streaming**: one 160-sample frame in, one 160-sample frame out, matching the API shape of the upstream `weya_nc` C library.
|
|
78
|
+
|
|
79
|
+
The three ONNX sub-models (`enc`, `erb_dec`, `df_dec`) have been re-exported to expose the encoder, ERB decoder, and DF decoder GRU hidden states as I/O. `HushSession` holds those three states (and a 4-frame DF filter history) and threads them through every call, so the GRU has continuous memory across the entire session — same mechanism as the C library.
|
|
80
|
+
|
|
81
|
+
The pure-numpy STFT runs in streaming mode (`reset=False`), so its analysis/synthesis filter state is carried across frames. The first frame's output is the STFT warmup (effectively zero); algorithmic latency is **1 frame (10 ms)** for the STFT lookahead, on top of GRU-state propagation which is fully causal.
|
|
82
|
+
|
|
83
|
+
### Signal flow
|
|
84
|
+
|
|
85
|
+
```
|
|
86
|
+
LiveKit AudioFrame (any rate, any channels)
|
|
87
|
+
→ resample to 16 kHz mono
|
|
88
|
+
→ buffer 10 ms (160 samples) per frame
|
|
89
|
+
→ Pure-numpy streaming STFT (1 frame out, state carried)
|
|
90
|
+
→ ERB features + DF spectral features
|
|
91
|
+
→ ONNX: encoder → ERB decoder + DF decoder (with continuous GRU state)
|
|
92
|
+
→ apply ERB mask + DF complex filter to spectrum
|
|
93
|
+
→ apply atten_lim_db linear blend (matches upstream reference)
|
|
94
|
+
→ Pure-numpy streaming ISTFT
|
|
95
|
+
→ wet/dry blend
|
|
96
|
+
→ upsample, restore channels
|
|
97
|
+
→ AudioFrame
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
### Model sharing
|
|
101
|
+
|
|
102
|
+
The ONNX session is a process-level singleton. Each `HushNoiseSuppressor` instance holds only per-stream DF state and audio buffers.
|
|
103
|
+
|
|
104
|
+
| Per worker | Per session |
|
|
105
|
+
|---|---|
|
|
106
|
+
| ~40 MB (onnxruntime + model) | ~1 MB (DF state + buffers) |
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## Inference performance
|
|
111
|
+
|
|
112
|
+
| | Per-frame streaming | Batch (full file) |
|
|
113
|
+
|---|---|---|
|
|
114
|
+
| Frame size | 1 frame (10 ms) | Full audio |
|
|
115
|
+
| Algorithmic latency | 10 ms | N/A (offline) |
|
|
116
|
+
| Per-frame time (single session) | ~0.25 ms | — |
|
|
117
|
+
| Per-frame time (20 concurrent) | ~0.20 ms | — |
|
|
118
|
+
| Real-time factor | 0.025× (per frame) | 0.008× |
|
|
119
|
+
| Throughput | ~4,000 frames/sec per core (single session) | 129× real-time |
|
|
120
|
+
| Concurrent sessions per core | ~390+ at 100 fps | — |
|
|
121
|
+
| Model size | ~9 MB (3 ONNX files) | |
|
|
122
|
+
|
|
123
|
+
Per-frame time measured on a single ARM64 core with the silero-style
|
|
124
|
+
low-latency ORT config (`intra_op_num_threads=1`, `inter_op_num_threads=1`,
|
|
125
|
+
`ORT_SEQUENTIAL`, no spinning waits). End-to-end `process_frame` takes
|
|
126
|
+
~0.35 ms per 10 ms frame (~28× real-time headroom on a single core).
|
|
127
|
+
Of that, ~0.085 ms is the pure-numpy DSP (STFT/ISTFT + ERB projection
|
|
128
|
+
+ per-band EMA) and ~0.27 ms is the three ONNX sub-model inferences
|
|
129
|
+
(encoder + ERB decoder + DF decoder). For typical LiveKit use cases
|
|
130
|
+
(5-20 concurrent calls per agent worker), the plugin is comfortably
|
|
131
|
+
real-time on a single core.
|
|
132
|
+
|
|
133
|
+
**Concurrency model:** the plugin is GIL-bound. N concurrent sessions
|
|
134
|
+
on one core share the same Python GIL; per-frame work is mostly
|
|
135
|
+
C-level (ORT) which releases the GIL, plus a small amount of pure-numpy
|
|
136
|
+
DSP (STFT + ERB projection + per-band EMA). For higher concurrency
|
|
137
|
+
than ~500 streams per core, run multiple agent worker processes.
|
|
138
|
+
|
|
139
|
+
**ORT config:** we use the same low-latency session options as the
|
|
140
|
+
upstream [silero VAD plugin](https://github.com/livekit/agents/tree/main/livekit-plugins/livekit-plugins-silero)
|
|
141
|
+
— `intra_op_num_threads=1`, `inter_op_num_threads=1`,
|
|
142
|
+
`execution_mode=ORT_SEQUENTIAL`, no spinning waits. This is ~2× faster
|
|
143
|
+
than ORT defaults for single-stream inference because it avoids the
|
|
144
|
+
per-op thread-pool overhead ORT enables by default.
|
|
145
|
+
|
|
146
|
+
---
|
|
147
|
+
|
|
148
|
+
## ONNX model
|
|
149
|
+
|
|
150
|
+
The ONNX model bundle is from the public PyTorch checkpoint ([weya-ai/hush](https://huggingface.co/weya-ai/hush)). The three sub-models are re-exported with GRU hidden state as I/O using `scripts/export_onnx_stateful.py`; the export script downloads the PyTorch weights from Hugging Face and exports the new ONNX bundle.
|
|
151
|
+
|
|
152
|
+
Output parity is verified via `scripts/verify_against_pytorch.py`, which compares the per-frame ONNX pipeline output against the original PyTorch model.
|
|
153
|
+
|
|
154
|
+
## Benchmarking
|
|
155
|
+
|
|
156
|
+
`scripts/benchmark.py` measures per-frame latency, multi-stream throughput, and a DSP-component breakdown on the host machine. Run it on the actual deployment host to see real numbers (the per-call cost varies ~5-10× between laptop CPUs and server-class x86 / ARM):
|
|
157
|
+
|
|
158
|
+
```
|
|
159
|
+
python scripts/benchmark.py
|
|
160
|
+
python scripts/benchmark.py --json results.json
|
|
161
|
+
python scripts/benchmark.py --multi-streams 1,4,8,16,32 --multi-frames 1000
|
|
162
|
+
python scripts/benchmark.py --skip-dsp # single + multi-stream only
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
The script prints a system-info header (Python, NumPy, ORT versions; CPU count), then three sections:
|
|
166
|
+
1. **Single-stream latency** — full per-frame pipeline (`process_frame`), 5 trials, reports the median in µs/frame and the real-time factor (10 ms / per-frame).
|
|
167
|
+
2. **Multi-stream throughput** — N concurrent sessions advancing in lockstep via a thread pool, reports elapsed time and CPU% of one core. Useful for sizing the agent worker (e.g. "with 16 streams we hit 35% of one core on this CPU").
|
|
168
|
+
3. **DSP component breakdown** — analysis, ERB projection, ERB+DF normalization, and synthesis, in isolation from the three ONNX sub-model inferences. Shows how much of the per-frame cost is the numpy frontend vs the ORT calls.
|
|
169
|
+
|
|
170
|
+
`--json <path>` writes the same numbers in machine-readable form for tracking regressions across machines.
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
## Audio samples
|
|
175
|
+
|
|
176
|
+
Noisy originals and their Hush-denoised counterparts are in `docs/audio/`. The denoised files are produced by `scripts/process_audio_samples.py` using the same per-frame streaming pipeline the LiveKit frame processor uses in production (one 10 ms frame at a time, continuous GRU state, single session, no resets).
|
|
177
|
+
|
|
178
|
+
| Original | Denoised |
|
|
179
|
+
|---|---|
|
|
180
|
+
| [`gym.wav`](docs/audio/originals/gym.wav) | [`hush-gym.wav`](docs/audio/hush-gym.wav) |
|
|
181
|
+
| [`krisp-original.wav`](docs/audio/originals/krisp-original.wav) | [`hush-krisp-original.wav`](docs/audio/hush-krisp-original.wav) |
|
|
182
|
+
| [`noproblem_raw.wav`](docs/audio/originals/noproblem_raw.wav) | [`hush-noproblem_raw.wav`](docs/audio/hush-noproblem_raw.wav) |
|
|
183
|
+
| [`taxi-sample.wav`](docs/audio/originals/taxi-sample.wav) | [`hush-taxi-sample.wav`](docs/audio/hush-taxi-sample.wav) |
|
|
184
|
+
|
|
185
|
+
---
|
|
186
|
+
|
|
187
|
+
## References
|
|
188
|
+
|
|
189
|
+
- [pulp-vision/Hush](https://github.com/pulp-vision/Hush) — model architecture and training code
|
|
190
|
+
- [Rikorose/DeepFilterNet](https://github.com/Rikorose/DeepFilterNet) — underlying architecture and DeepFilterLib
|
|
191
|
+
- [Schröter et al., "DeepFilterNet", Interspeech 2023](https://arxiv.org/abs/2305.08227)
|
|
192
|
+
- [LiveKit Agents](https://github.com/livekit/agents)
|
|
193
|
+
|
|
194
|
+
## License
|
|
195
|
+
|
|
196
|
+
Apache 2.0
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
# livekit-plugins-hush
|
|
2
|
+
|
|
3
|
+
[LiveKit](https://livekit.io) noise suppression plugin using the [Hush](https://github.com/pulp-vision/Hush) speech enhancement model. Self-hosted, in-process, no cloud API.
|
|
4
|
+
|
|
5
|
+
Hush is built on [DeepFilterNet3](https://github.com/Rikorose/DeepFilterNet) with an auxiliary separation head for background speaker suppression. Inference uses a pure-numpy DSP frontend for STFT/ERB feature extraction and [ONNX Runtime](https://onnxruntime.ai) for the neural network. No PyTorch, no Rust toolchain, no prebuilt mystery binaries.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
pip install livekit-plugins-hush
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Dependencies: `livekit >= 1.0.25`, `livekit-agents >= 1.4.4`, `numpy >= 1.26.0`, `onnxruntime >= 1.17.0`.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```python
|
|
22
|
+
from livekit.agents import room_io
|
|
23
|
+
from livekit.plugins import hush
|
|
24
|
+
|
|
25
|
+
await session.start(
|
|
26
|
+
room_options=room_io.RoomOptions(
|
|
27
|
+
audio_input=room_io.AudioInputOptions(
|
|
28
|
+
noise_cancellation=hush.noise_suppression(),
|
|
29
|
+
),
|
|
30
|
+
),
|
|
31
|
+
)
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
One instance per session. The ONNX model is loaded once per worker process and shared across instances.
|
|
35
|
+
|
|
36
|
+
### Parameters
|
|
37
|
+
|
|
38
|
+
```python
|
|
39
|
+
hush.noise_suppression(
|
|
40
|
+
strength=0.5, # wet/dry blend: 0.0 = bypass, 1.0 = full (default 0.5)
|
|
41
|
+
atten_lim_db=100.0, # max attenuation in dB (100.0 = unlimited)
|
|
42
|
+
debug_logging=False, # log per-frame RMS every 100 frames
|
|
43
|
+
)
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## Architecture
|
|
49
|
+
|
|
50
|
+
The model operates at 16 kHz with 10 ms frames (160 samples, 320-sample FFT). Processing is **per-frame streaming**: one 160-sample frame in, one 160-sample frame out, matching the API shape of the upstream `weya_nc` C library.
|
|
51
|
+
|
|
52
|
+
The three ONNX sub-models (`enc`, `erb_dec`, `df_dec`) have been re-exported to expose the encoder, ERB decoder, and DF decoder GRU hidden states as I/O. `HushSession` holds those three states (and a 4-frame DF filter history) and threads them through every call, so the GRU has continuous memory across the entire session — same mechanism as the C library.
|
|
53
|
+
|
|
54
|
+
The pure-numpy STFT runs in streaming mode (`reset=False`), so its analysis/synthesis filter state is carried across frames. The first frame's output is the STFT warmup (effectively zero); algorithmic latency is **1 frame (10 ms)** for the STFT lookahead, on top of GRU-state propagation which is fully causal.
|
|
55
|
+
|
|
56
|
+
### Signal flow
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
LiveKit AudioFrame (any rate, any channels)
|
|
60
|
+
→ resample to 16 kHz mono
|
|
61
|
+
→ buffer 10 ms (160 samples) per frame
|
|
62
|
+
→ Pure-numpy streaming STFT (1 frame out, state carried)
|
|
63
|
+
→ ERB features + DF spectral features
|
|
64
|
+
→ ONNX: encoder → ERB decoder + DF decoder (with continuous GRU state)
|
|
65
|
+
→ apply ERB mask + DF complex filter to spectrum
|
|
66
|
+
→ apply atten_lim_db linear blend (matches upstream reference)
|
|
67
|
+
→ Pure-numpy streaming ISTFT
|
|
68
|
+
→ wet/dry blend
|
|
69
|
+
→ upsample, restore channels
|
|
70
|
+
→ AudioFrame
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### Model sharing
|
|
74
|
+
|
|
75
|
+
The ONNX session is a process-level singleton. Each `HushNoiseSuppressor` instance holds only per-stream DF state and audio buffers.
|
|
76
|
+
|
|
77
|
+
| Per worker | Per session |
|
|
78
|
+
|---|---|
|
|
79
|
+
| ~40 MB (onnxruntime + model) | ~1 MB (DF state + buffers) |
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## Inference performance
|
|
84
|
+
|
|
85
|
+
| | Per-frame streaming | Batch (full file) |
|
|
86
|
+
|---|---|---|
|
|
87
|
+
| Frame size | 1 frame (10 ms) | Full audio |
|
|
88
|
+
| Algorithmic latency | 10 ms | N/A (offline) |
|
|
89
|
+
| Per-frame time (single session) | ~0.25 ms | — |
|
|
90
|
+
| Per-frame time (20 concurrent) | ~0.20 ms | — |
|
|
91
|
+
| Real-time factor | 0.025× (per frame) | 0.008× |
|
|
92
|
+
| Throughput | ~4,000 frames/sec per core (single session) | 129× real-time |
|
|
93
|
+
| Concurrent sessions per core | ~390+ at 100 fps | — |
|
|
94
|
+
| Model size | ~9 MB (3 ONNX files) | |
|
|
95
|
+
|
|
96
|
+
Per-frame time measured on a single ARM64 core with the silero-style
|
|
97
|
+
low-latency ORT config (`intra_op_num_threads=1`, `inter_op_num_threads=1`,
|
|
98
|
+
`ORT_SEQUENTIAL`, no spinning waits). End-to-end `process_frame` takes
|
|
99
|
+
~0.35 ms per 10 ms frame (~28× real-time headroom on a single core).
|
|
100
|
+
Of that, ~0.085 ms is the pure-numpy DSP (STFT/ISTFT + ERB projection
|
|
101
|
+
+ per-band EMA) and ~0.27 ms is the three ONNX sub-model inferences
|
|
102
|
+
(encoder + ERB decoder + DF decoder). For typical LiveKit use cases
|
|
103
|
+
(5-20 concurrent calls per agent worker), the plugin is comfortably
|
|
104
|
+
real-time on a single core.
|
|
105
|
+
|
|
106
|
+
**Concurrency model:** the plugin is GIL-bound. N concurrent sessions
|
|
107
|
+
on one core share the same Python GIL; per-frame work is mostly
|
|
108
|
+
C-level (ORT) which releases the GIL, plus a small amount of pure-numpy
|
|
109
|
+
DSP (STFT + ERB projection + per-band EMA). For higher concurrency
|
|
110
|
+
than ~500 streams per core, run multiple agent worker processes.
|
|
111
|
+
|
|
112
|
+
**ORT config:** we use the same low-latency session options as the
|
|
113
|
+
upstream [silero VAD plugin](https://github.com/livekit/agents/tree/main/livekit-plugins/livekit-plugins-silero)
|
|
114
|
+
— `intra_op_num_threads=1`, `inter_op_num_threads=1`,
|
|
115
|
+
`execution_mode=ORT_SEQUENTIAL`, no spinning waits. This is ~2× faster
|
|
116
|
+
than ORT defaults for single-stream inference because it avoids the
|
|
117
|
+
per-op thread-pool overhead ORT enables by default.
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
## ONNX model
|
|
122
|
+
|
|
123
|
+
The ONNX model bundle is from the public PyTorch checkpoint ([weya-ai/hush](https://huggingface.co/weya-ai/hush)). The three sub-models are re-exported with GRU hidden state as I/O using `scripts/export_onnx_stateful.py`; the export script downloads the PyTorch weights from Hugging Face and exports the new ONNX bundle.
|
|
124
|
+
|
|
125
|
+
Output parity is verified via `scripts/verify_against_pytorch.py`, which compares the per-frame ONNX pipeline output against the original PyTorch model.
|
|
126
|
+
|
|
127
|
+
## Benchmarking
|
|
128
|
+
|
|
129
|
+
`scripts/benchmark.py` measures per-frame latency, multi-stream throughput, and a DSP-component breakdown on the host machine. Run it on the actual deployment host to see real numbers (the per-call cost varies ~5-10× between laptop CPUs and server-class x86 / ARM):
|
|
130
|
+
|
|
131
|
+
```
|
|
132
|
+
python scripts/benchmark.py
|
|
133
|
+
python scripts/benchmark.py --json results.json
|
|
134
|
+
python scripts/benchmark.py --multi-streams 1,4,8,16,32 --multi-frames 1000
|
|
135
|
+
python scripts/benchmark.py --skip-dsp # single + multi-stream only
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
The script prints a system-info header (Python, NumPy, ORT versions; CPU count), then three sections:
|
|
139
|
+
1. **Single-stream latency** — full per-frame pipeline (`process_frame`), 5 trials, reports the median in µs/frame and the real-time factor (10 ms / per-frame).
|
|
140
|
+
2. **Multi-stream throughput** — N concurrent sessions advancing in lockstep via a thread pool, reports elapsed time and CPU% of one core. Useful for sizing the agent worker (e.g. "with 16 streams we hit 35% of one core on this CPU").
|
|
141
|
+
3. **DSP component breakdown** — analysis, ERB projection, ERB+DF normalization, and synthesis, in isolation from the three ONNX sub-model inferences. Shows how much of the per-frame cost is the numpy frontend vs the ORT calls.
|
|
142
|
+
|
|
143
|
+
`--json <path>` writes the same numbers in machine-readable form for tracking regressions across machines.
|
|
144
|
+
|
|
145
|
+
---
|
|
146
|
+
|
|
147
|
+
## Audio samples
|
|
148
|
+
|
|
149
|
+
Noisy originals and their Hush-denoised counterparts are in `docs/audio/`. The denoised files are produced by `scripts/process_audio_samples.py` using the same per-frame streaming pipeline the LiveKit frame processor uses in production (one 10 ms frame at a time, continuous GRU state, single session, no resets).
|
|
150
|
+
|
|
151
|
+
| Original | Denoised |
|
|
152
|
+
|---|---|
|
|
153
|
+
| [`gym.wav`](docs/audio/originals/gym.wav) | [`hush-gym.wav`](docs/audio/hush-gym.wav) |
|
|
154
|
+
| [`krisp-original.wav`](docs/audio/originals/krisp-original.wav) | [`hush-krisp-original.wav`](docs/audio/hush-krisp-original.wav) |
|
|
155
|
+
| [`noproblem_raw.wav`](docs/audio/originals/noproblem_raw.wav) | [`hush-noproblem_raw.wav`](docs/audio/hush-noproblem_raw.wav) |
|
|
156
|
+
| [`taxi-sample.wav`](docs/audio/originals/taxi-sample.wav) | [`hush-taxi-sample.wav`](docs/audio/hush-taxi-sample.wav) |
|
|
157
|
+
|
|
158
|
+
---
|
|
159
|
+
|
|
160
|
+
## References
|
|
161
|
+
|
|
162
|
+
- [pulp-vision/Hush](https://github.com/pulp-vision/Hush) — model architecture and training code
|
|
163
|
+
- [Rikorose/DeepFilterNet](https://github.com/Rikorose/DeepFilterNet) — underlying architecture and DeepFilterLib
|
|
164
|
+
- [Schröter et al., "DeepFilterNet", Interspeech 2023](https://arxiv.org/abs/2305.08227)
|
|
165
|
+
- [LiveKit Agents](https://github.com/livekit/agents)
|
|
166
|
+
|
|
167
|
+
## License
|
|
168
|
+
|
|
169
|
+
Apache 2.0
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=70", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "livekit-plugins-hush"
|
|
7
|
+
version = "0.3.3"
|
|
8
|
+
description = "Hush noise suppression plugin for LiveKit Agents"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
keywords = ["livekit", "noise-suppression", "noise-cancellation", "hush", "speech", "audio", "voip"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 4 - Beta",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Programming Language :: Python :: 3.10",
|
|
18
|
+
"Programming Language :: Python :: 3.11",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Programming Language :: Python :: 3.13",
|
|
21
|
+
"Topic :: Multimedia :: Sound/Audio :: Speech",
|
|
22
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
23
|
+
]
|
|
24
|
+
dependencies = [
|
|
25
|
+
"livekit>=1.0.25",
|
|
26
|
+
"livekit-agents>=1.4.4",
|
|
27
|
+
"numpy>=1.26.0",
|
|
28
|
+
"onnxruntime>=1.17.0",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://github.com/arpesenti/livekit-plugins-hush"
|
|
33
|
+
Repository = "https://github.com/arpesenti/livekit-plugins-hush"
|
|
34
|
+
"Bug Tracker" = "https://github.com/arpesenti/livekit-plugins-hush/issues"
|
|
35
|
+
|
|
36
|
+
[tool.setuptools.packages.find]
|
|
37
|
+
where = ["src"]
|
|
38
|
+
|
|
39
|
+
[tool.setuptools.package-data]
|
|
40
|
+
"livekit.plugins.hush" = ["models/*.onnx", "models/*.ini"]
|
|
41
|
+
|
|
42
|
+
[dependency-groups]
|
|
43
|
+
dev = [
|
|
44
|
+
"pytest>=9.1.0",
|
|
45
|
+
]
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
from typing import Optional
|
|
2
|
+
|
|
3
|
+
from livekit.agents import Plugin
|
|
4
|
+
import logging
|
|
5
|
+
|
|
6
|
+
from .noise_suppressor import HushNoiseSuppressor
|
|
7
|
+
|
|
8
|
+
logger = logging.getLogger(__name__)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class HushPlugin(Plugin):
|
|
12
|
+
def __init__(self):
|
|
13
|
+
super().__init__(
|
|
14
|
+
title="Hush",
|
|
15
|
+
version="0.3.3",
|
|
16
|
+
package="livekit-plugins-hush",
|
|
17
|
+
logger=logger,
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def noise_suppression(
|
|
22
|
+
model_path: Optional[str] = None,
|
|
23
|
+
atten_lim_db: float = 100.0,
|
|
24
|
+
strength: float = 0.5,
|
|
25
|
+
debug_logging: bool = False,
|
|
26
|
+
) -> HushNoiseSuppressor:
|
|
27
|
+
"""Create a HushNoiseSuppressor instance.
|
|
28
|
+
|
|
29
|
+
Pass to ``AudioInputOptions(noise_cancellation=hush.noise_suppression())``.
|
|
30
|
+
|
|
31
|
+
Parameters
|
|
32
|
+
----------
|
|
33
|
+
model_path : str, optional
|
|
34
|
+
Path to directory containing enc.onnx, erb_dec.onnx, df_dec.onnx.
|
|
35
|
+
atten_lim_db : float
|
|
36
|
+
Maximum attenuation in dB (default 100.0).
|
|
37
|
+
strength : float
|
|
38
|
+
Wet/dry blend factor (default 0.5). 0.0 = bypass, 1.0 = full suppression.
|
|
39
|
+
debug_logging : bool
|
|
40
|
+
Log diagnostics every 10 chunks at DEBUG level.
|
|
41
|
+
"""
|
|
42
|
+
if atten_lim_db < 0:
|
|
43
|
+
logger.warning(
|
|
44
|
+
"atten_lim_db=%g is negative; clamping to 0 (no attenuation limit). "
|
|
45
|
+
"Negative values boost gain instead of limiting attenuation.",
|
|
46
|
+
atten_lim_db,
|
|
47
|
+
)
|
|
48
|
+
atten_lim_db = 0.0
|
|
49
|
+
return HushNoiseSuppressor(
|
|
50
|
+
model_path=model_path,
|
|
51
|
+
atten_lim_db=atten_lim_db,
|
|
52
|
+
strength=strength,
|
|
53
|
+
debug_logging=debug_logging,
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
Plugin.register_plugin(HushPlugin())
|
|
58
|
+
|
|
59
|
+
__all__ = ["HushNoiseSuppressor", "noise_suppression"]
|