hi,
have anyone done a research or any project in noise reduction. im doing a project in speech recognition. i want to use noise reduction as well. but dont know how the process works. if someone can help me out for that
hi,
have anyone done a research or any project in noise reduction. im doing a project in speech recognition. i want to use noise reduction as well. but dont know how the process works. if someone can help me out for that
For (and following ’s prompt): here is a compact, practical starter you can use for a speech‑recognition final year project. It focuses on approaches that actually help ASR, gives a minimal Python example, and points to reliable tools.
Noise‑reduction approaches and tradeoffs
Quick reproducible pipeline (Python)
import librosa
import noisereduce as nr
y, sr = librosa.load('speech.wav', sr=None)
noise_clip = y[:int(0.5*sr)] # first 0.5s assumed noise
clean = nr.reduce_noise(y=y, sr=sr, y_noise=noise_clip) Useful libraries and demos
Troubleshooting tips
For academic reading, look up classic papers by Boll (spectral subtraction) and Ephraim & Malah (MMSE-STSA) via your university library to understand theory.
Jump to Post— Salem 6,009What google search terms have you tried already?
Jump to Post— Salem 6,009Sure, just press ALT-F4
What google search terms have you tried already?
ya i did some. but needed some more support. its bit hard to understand like that. my final year project is about speech recognition. so i need to do some mechanisms in noise reduction also. but dont know how it process
http://en.wikipedia.org/wiki/Noise_reduction
Now answer the "Goldilocks question" of whether any of that is
- too hard
- too easy
- just right.
any supporting pdf
Sure, just press ALT-F4
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.