Reputation: 12176
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
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