From 1d94ffe94d6861240b7a56216e82a551b8a3a560 Mon Sep 17 00:00:00 2001 From: Eason WaveKat Date: Thu, 26 Mar 2026 10:32:06 +1300 Subject: [PATCH 1/3] docs: add Community Projects section with wavekat-vad Add a Community Projects section to highlight third-party integrations. Lists wavekat-vad as a pure Rust implementation of TEN VAD using the ONNX model with a native preprocessing pipeline and no C dependencies. Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 313e1d8..9a90311 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ - [macOS](#3-macos) - [Android](#4-android) - [iOS](#5-ios) +- [Community Projects](#community-projects) - [TEN Ecosystem](#ten-ecosystem) - [Ask Questions](#ask-questions) - [Citations](#citations) @@ -715,6 +716,18 @@ cd ./examples
+## Community Projects + +Third-party integrations and implementations built by the community. + +| Project | Language | Description | +| ------- | -------- | ----------- | +| [**wavekat-vad**](https://github.com/wavekat/wavekat-vad) | Rust | Pure Rust implementation using the ONNX model with a native preprocessing pipeline (pre-emphasis, STFT, mel filterbank, pitch estimation). No C library dependencies. | + +> Have a project using TEN VAD? Feel free to open a PR to add it here! + +
+ ## TEN Ecosystem | Project | Preview | From 9ac7198dc4b5d0f3aa2ad0620ee2ac74ecacf3c8 Mon Sep 17 00:00:00 2001 From: Eason WaveKat Date: Thu, 26 Mar 2026 10:46:23 +1300 Subject: [PATCH 2/3] docs: shorten description and prevent name wrapping Use non-breaking hyphen in display name so wavekat-vad stays on one line. Shorten description to avoid squeezing the Project column. Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a90311..4762431 100644 --- a/README.md +++ b/README.md @@ -722,7 +722,7 @@ Third-party integrations and implementations built by the community. | Project | Language | Description | | ------- | -------- | ----------- | -| [**wavekat-vad**](https://github.com/wavekat/wavekat-vad) | Rust | Pure Rust implementation using the ONNX model with a native preprocessing pipeline (pre-emphasis, STFT, mel filterbank, pitch estimation). No C library dependencies. | +| [**wavekat‑vad**](https://github.com/wavekat/wavekat-vad) | Rust | Pure Rust ONNX implementation with native preprocessing. No C dependencies. | > Have a project using TEN VAD? Feel free to open a PR to add it here! From 263b821cb94d451a6a853b493e42d450ea2fdf64 Mon Sep 17 00:00:00 2001 From: Eason WaveKat Date: Thu, 26 Mar 2026 10:48:26 +1300 Subject: [PATCH 3/3] docs: improve wavekat-vad description Highlight that it's a multi-backend VAD crate on crates.io, not just a TEN VAD wrapper. Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4762431..c85a956 100644 --- a/README.md +++ b/README.md @@ -722,7 +722,7 @@ Third-party integrations and implementations built by the community. | Project | Language | Description | | ------- | -------- | ----------- | -| [**wavekat‑vad**](https://github.com/wavekat/wavekat-vad) | Rust | Pure Rust ONNX implementation with native preprocessing. No C dependencies. | +| [**wavekat‑vad**](https://github.com/wavekat/wavekat-vad) | Rust | Multi-backend VAD crate on [crates.io](https://crates.io/crates/wavekat-vad) with TEN VAD support via pure Rust ONNX inference. | > Have a project using TEN VAD? Feel free to open a PR to add it here!