From 6478567951ae5c9979ad7b234185b5515f4be7a1 Mon Sep 17 00:00:00 2001 From: Alexander Veysov Date: Wed, 9 Oct 2024 12:49:27 +0300 Subject: [PATCH 1/6] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 589e78b..b0c76cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "silero-vad" -version = "5.1.1" +version = "5.1.2" authors = [ {name="Silero Team", email="hello@silero.ai"}, ] From 2c43391b1798d7bc02543829fd8783d15926a04d Mon Sep 17 00:00:00 2001 From: Alexander Veysov Date: Wed, 9 Oct 2024 12:56:22 +0300 Subject: [PATCH 2/6] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6f00094..7199ce5 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,8 @@ https://user-images.githubusercontent.com/36505480/144874384-95f80f6d-a4f1-42cc-9be7-004c891dd481.mp4 +Please note, that video loads only if you are logged in your GitHub account. +
From 867a067beeb01116465a82488987ba7e85053bb8 Mon Sep 17 00:00:00 2001 From: EarningsCall <99980357+EarningsCall@users.noreply.github.com> Date: Sat, 12 Oct 2024 09:22:39 -0500 Subject: [PATCH 3/6] Update README.md I assume most people want seconds, so it's useful to show example to return seconds in README file. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7199ce5..aa4e1b8 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,11 @@ If you are planning to run the VAD using solely the `onnx-runtime`, it will run from silero_vad import load_silero_vad, read_audio, get_speech_timestamps model = load_silero_vad() wav = read_audio('path_to_audio_file') -speech_timestamps = get_speech_timestamps(wav, model) +speech_timestamps = get_speech_timestamps( + wav, + model, + return_seconds=True, # Return speech timestamps in seconds (default is samples) +) ``` **Using torch.hub**: From 9db72c35bdf32a9dc910d86cf685f08811a31735 Mon Sep 17 00:00:00 2001 From: EarningsCall <99980357+EarningsCall@users.noreply.github.com> Date: Sat, 12 Oct 2024 09:23:29 -0500 Subject: [PATCH 4/6] Update README.md update again --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aa4e1b8..6793f86 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,11 @@ model, utils = torch.hub.load(repo_or_dir='snakers4/silero-vad', model='silero_v (get_speech_timestamps, _, read_audio, _, _) = utils wav = read_audio('path_to_audio_file') -speech_timestamps = get_speech_timestamps(wav, model) +speech_timestamps = get_speech_timestamps( + wav, + model, + return_seconds=True, # Return speech timestamps in seconds (default is samples) +) ```
From e531cd3462189f275e0a231f0cefb21816147ed2 Mon Sep 17 00:00:00 2001 From: Alexander Veysov Date: Mon, 21 Oct 2024 10:22:02 +0300 Subject: [PATCH 5/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6793f86..b634913 100644 --- a/README.md +++ b/README.md @@ -175,4 +175,4 @@ Please see our [wiki](https://github.com/snakers4/silero-models/wiki) for releva - Voice activity detection for the [browser](https://github.com/ricky0123/vad) using ONNX Runtime Web -- [Rust](https://github.com/snakers4/silero-vad/tree/master/examples/rust-example), [Go](https://github.com/snakers4/silero-vad/tree/master/examples/go), [Java](https://github.com/snakers4/silero-vad/tree/master/examples/java-example) and [other](https://github.com/snakers4/silero-vad/tree/master/examples) examples +- [Rust](https://github.com/snakers4/silero-vad/tree/master/examples/rust-example), [Go](https://github.com/snakers4/silero-vad/tree/master/examples/go), [Java](https://github.com/snakers4/silero-vad/tree/master/examples/java-example), [C++](https://github.com/snakers4/silero-vad/tree/master/examples/cpp), [C#](https://github.com/snakers4/silero-vad/tree/master/examples/csharp) and [other](https://github.com/snakers4/silero-vad/tree/master/examples) community examples From 102e6d0962fe74f4ed2f988659d624fd3d471388 Mon Sep 17 00:00:00 2001 From: Alexander Veysov Date: Thu, 7 Nov 2024 14:40:33 +0300 Subject: [PATCH 6/6] Add downloads shield --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b634913..7ff6baf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Mailing list : test](http://img.shields.io/badge/Email-gray.svg?style=for-the-badge&logo=gmail)](mailto:hello@silero.ai) [![Mailing list : test](http://img.shields.io/badge/Telegram-blue.svg?style=for-the-badge&logo=telegram)](https://t.me/silero_speech) [![License: CC BY-NC 4.0](https://img.shields.io/badge/License-MIT-lightgrey.svg?style=for-the-badge)](https://github.com/snakers4/silero-vad/blob/master/LICENSE) +[![Mailing list : test](http://img.shields.io/badge/Email-gray.svg?style=for-the-badge&logo=gmail)](mailto:hello@silero.ai) [![Mailing list : test](http://img.shields.io/badge/Telegram-blue.svg?style=for-the-badge&logo=telegram)](https://t.me/silero_speech) [![License: CC BY-NC 4.0](https://img.shields.io/badge/License-MIT-lightgrey.svg?style=for-the-badge)](https://github.com/snakers4/silero-vad/blob/master/LICENSE) [![downloads](https://img.shields.io/pypi/dm/silero-vad?style=for-the-badge)](https://pypi.org/project/silero-vad/) [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/snakers4/silero-vad/blob/master/silero-vad.ipynb)