How can I remove the noise in voice file?

2 Ansichten (letzte 30 Tage)
In Sik Kim
In Sik Kim am 7 Okt. 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 Kommentare
In Sik Kim
In Sik Kim am 7 Okt. 2018
It is 'dat' file
You can use just speech.dat in matlab
Image Analyst
Image Analyst am 7 Okt. 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.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Dimitris Kalogiros
Dimitris Kalogiros am 7 Okt. 2018
Bearbeitet: Dimitris Kalogiros am 7 Okt. 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 Kommentar
Dimitris Kalogiros
Dimitris Kalogiros am 7 Okt. 2018
...and something else: your sampling frequency must be slightly greater than 8KHz

Melden Sie sich an, um zu kommentieren.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by