karthick
karthick

Reputation: 12176

How to reduce noise while recording sound in java?

Hi guys i am developing an online audio recorder, i need to reduce the noise while recording the sound.How to achieve this? My current audio format is

AudioFormat(8000.0F,16,1,true,false);

Upvotes: 2

Views: 397

Answers (1)

OrangeDog
OrangeDog

Reputation: 38777

You'll need to implement some digital signal filters on your data. Depending on the kind of noise you're targeting, simple band pass filters might work, or you could go the whole hog and implement something like Dolby A/B

Upvotes: 1

Related Questions