How can I remove the noise in voice file?

2 visualizzazioni (ultimi 30 giorni)
In Sik Kim
In Sik Kim il 7 Ott 2018
The attached speech.dat file has a lot of noise.
What can I do to hear exactly what it is saying?
plz let me know what it say.
  5 Commenti
In Sik Kim
In Sik Kim il 7 Ott 2018
It is 'dat' file
You can use just speech.dat in matlab
Image Analyst
Image Analyst il 7 Ott 2018
Again, what format is it? It doesn't seem to be able to be read in with audioread():
Error using audioread (line 104)
The file type is not supported
Error in test2 (line 1)
[y, fs] = audioread('speech.dat')
Please attach the code you used to read it in and play it.

Accedi per commentare.

Risposte (1)

Dimitris Kalogiros
Dimitris Kalogiros il 7 Ott 2018
Modificato: Dimitris Kalogiros il 7 Ott 2018
In the following figure, it is depicted the original signal and a filtered version of it.
If you use the sound() command;
sound(speech, 8000);
sound(speech_filtered, 8000);
There is no difference on what you are going to hear. And this is something that is expected, cause the original signal, seems to have no added noise outside its main occupied bandwidth. I tried out many cutoff frequencies at my low pass filter, but no significant improvement. The speech signal indeed is distorted, but this distortion is not an awgn.
  1 Commento
Dimitris Kalogiros
Dimitris Kalogiros il 7 Ott 2018
...and something else: your sampling frequency must be slightly greater than 8KHz

Accedi per commentare.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by