https://github.com/snowlyg/rnnoise
https://github.com/snowlyg/rnnoise
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/snowlyg/rnnoise
- Owner: snowlyg
- License: apache-2.0
- Created: 2024-12-03T05:34:27.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-03-03T08:55:54.000Z (4 months ago)
- Last Synced: 2025-03-03T09:35:16.321Z (4 months ago)
- Language: C
- Size: 29.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
# rnnoise
## How to use
```
git clone https://github.com/snowlyg/rnnoise.git --depth=1cd rnnoise/example
go build -o denoise main.go./main
./denoise origin.wav denoised.wav
```## build lib
```
git clone https://github.com/xiph/rnnoise.git --depth=1 srcchmod -R 0777 ./src
cd ./src
./autogen.sh
./configure
make
make install```