https://github.com/silver-it/python-noise-reduction
Noise Reduction project with Python
https://github.com/silver-it/python-noise-reduction
Last synced: about 2 months ago
JSON representation
Noise Reduction project with Python
- Host: GitHub
- URL: https://github.com/silver-it/python-noise-reduction
- Owner: Silver-IT
- Created: 2020-03-29T01:34:14.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-06T21:14:38.000Z (almost 2 years ago)
- Last Synced: 2025-02-15T08:16:03.556Z (4 months ago)
- Language: HTML
- Size: 34.4 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# noise_reduction
> See test results on: [https://dodiku.github.io/noise_reduction/](https://dodiku.github.io/noise_reduction/)
## Audio enhancements feature tests in Python3
#### Installation
To install:
1. ``$ brew install sox``
1. ``$ brew install vorbis-tools``
1. Create a virtualenv
1. Install dependencies in one of two options:
- manually *(recommended)*:
``$ pip3 install librosa``
``$ pip3 install pysndfx``- or automatically using pip:
``$ pip3 install -r requirements.txt``To run:
``$ python3 noise.py``#### Interesting resources:
- LibROSA ([documentation](http://librosa.github.io/librosa/index.html) + [repository](https://github.com/librosa/librosa) + [paper](https://bmcfee.github.io/papers/scipy2015_librosa.pdf))
- Think DSP ([book](http://greenteapress.com/wp/think-dsp/) + [repository](https://github.com/AllenDowney/ThinkDSP/))
- Pyo ([blog post](http://www.matthieuamiguet.ch/blog/diy-guitar-effects-python) + [repository](https://github.com/belangeo/pyo))
- pysndfx ([repository](https://github.com/carlthome/python-audio-effects/tree/04dbee6063b0537b63346bb1e55deb03406e1170/pysndfx))#### A bit less relevant papers:
- Noise Cancellation Method for Robust Speech Recognition ([PDF](http://research.ijcaonline.org/volume45/number11/pxc3879438.pdf))
- Robust Features for Noisy Speech Recognition using MFCC Computation from Magnitude Spectrum of Higher Order Autocorrelation Coefficients
([PDF](https://pdfs.semanticscholar.org/a483/5f28c02f07e6bef04ff9db948505dc990af7.pdf))
- Improving the Noise-Robustness of Mel-Frequency Cepstral Coefficients for Speech Processing
([PDF](http://www.sapaworkshops.org/2006/2006/papers/131.pdf))