Skip to content

Commit 2be36d8

Browse files
committed
fix: update mel coefficients
1 parent d5bdf43 commit 2be36d8

2 files changed

Lines changed: 51 additions & 40 deletions

File tree

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
11
# Earshot
2-
Ridiculously fast & accurate voice activity detection in pure Rust.
2+
Ridiculously fast & accurate streaming voice activity detection, written in pure Rust and also available for [Python](https://pypi.org/project/earshot/).
33

4-
Achieves an RTF of 0.0003 (3,600x real time): **40x faster** than Silero VAD v6 & TEN VAD - and more accurate, too!
4+
Earshot achieves an RTF of 0.0003 (3,600x real time): **40x faster** than Silero VAD v6 & TEN VAD - and more accurate, too!
5+
6+
Earshot operates on 16 millisecond frames of mono audio sampled at 16000 Hz & supports streaming. Earshot detects voice in any language and is resilient to most kinds of environmental noise with an SNR ≤ 3dB.
57

68
> If you find Earshot useful, please consider [sponsoring pyke.io](https://opencollective.com/pyke-osai).
79
8-
<img src="https://i.pyke.io/earshot-1.0-pr.png"/>
10+
<figure>
11+
<img src="https://i.pyke.io/earshot-acc-1.3.png"/>
12+
<figcaption><i>
13+
Earshot, in black, performs markedly better than Silero VAD v6 and TEN VAD in blue and red.
14+
</i></figcaption>
15+
</figure>
916

1017
## Usage
18+
- **Python**: [`pip install earshot`](https://pypi.org/project/earshot/)
19+
20+
### Rust
21+
> [`cargo add earshot`](https://crates.io/crates/earshot)
1122
1223
```rs
1324
use earshot::Detector;

0 commit comments

Comments
 (0)