An open API service indexing awesome lists of open source software.

https://github.com/snowlyg/rnnoise


https://github.com/snowlyg/rnnoise

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# rnnoise

## How to use

```
git clone https://github.com/snowlyg/rnnoise.git --depth=1

cd 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 src

chmod -R 0777 ./src

cd ./src

./autogen.sh
./configure
make
make install

```