lucianodato / speech-denoiser

A speech denoise lv2 plugin based on RNNoise library
GNU Lesser General Public License v3.0
287 stars 29 forks source link

.so library #5

Closed zhly0 closed 6 years ago

zhly0 commented 6 years ago

Thanks for your work,is it possible to provide a so library with a .h file?not just a plugin?Thanks

lucianodato commented 6 years ago

Are you still interested in getting the binary of the plugin? I saw your discussions with Jean-Marc so I guess you had already tried out the rnnoise library. If you don't feel free to close the issue.

zhly0 commented 6 years ago

Yes,I get the library of rnnoise,how could I get the library of your denoise code:noise-repellent? Thanks!

lucianodato commented 6 years ago

I don't provide binaries for now but it's quite easy to compile. Download the repo and cd into it. Then do something like this if you are in linux chmod +x static_rnnoise.sh ./static_rnnoise.sh meson build --buildtype release --prefix "/usr/local/lib/lv2" && cd build ninja && sudo ninja install Make sure to have the dependencies required installed.