From 64b863d2ffc60488fe68733d4800e11180f88212 Mon Sep 17 00:00:00 2001 From: Dimitrii Voronin <36505480+adamnsandle@users.noreply.github.com> Date: Tue, 24 Sep 2024 14:48:35 +0300 Subject: [PATCH] Update README.md --- README.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 645ffdc..6031670 100644 --- a/README.md +++ b/README.md @@ -31,19 +31,23 @@ https://user-images.githubusercontent.com/36505480/144874384-95f80f6d-a4f1-42cc-
Dependencies + + System requirements to run python examples: + - `python 3.8+` + - 1G+ RAM + - not too outdated cpu + + Dependencies: + - `torch>=1.12.0` + - `torchaudio>=0.12.0` (for I/O functionalities only) + - `onnxruntime>=1.16.1` (for ONNX model usage) - **Silero VAD uses torchaudio library for audio file I/O functionalities, which are torchaudio.info, torchaudio.load, and torchaudio.save, so a proper audio backend is required:** + Silero VAD uses torchaudio library for audio file I/O functionalities, which are torchaudio.info, torchaudio.load, and torchaudio.save, so a proper audio backend is required: - Option №1 - [**FFmpeg**](https://www.ffmpeg.org/) backend. `conda install -c conda-forge 'ffmpeg<7'` - Option №2 - [**sox_io**](https://pypi.org/project/sox/) backend. `apt-get install sox`, TorchAudio is tested on libsox 14.4.2. - Option №3 - [**soundfile**](https://pypi.org/project/soundfile/) backend. `pip install soundfile` - **Additional dependencies:** - - - **torch>=1.12.0** - - **torchaudio>=0.12.0** (for I/O functionalities only) - - **onnxruntime>=1.16.1** (for ONNX model usage) -
**Using pip**: