JorenSix / TarsosDSP

A Real-Time Audio Processing Framework in Java
http://0110.be/tag/TarsosDSP
GNU General Public License v3.0
1.96k stars 471 forks source link

Voice Filter #144

Open axet opened 6 years ago

axet commented 6 years ago

Hello!

I'm trying to use bandpass filter to filter out music from music+voice stream. Audacity does using FFT and Noise Gate you can see youtube for example. As I understand how basepass works, it should similar job just fine. Passing:

        f = new TarsosDSPAudioFormat(info.hz, 16, info.channels, false, false);
        b = new BandPass(1650, 2700, info.hz);

But results not what I expected, seems basepass does not filter correct band frequencies.

BTW this is for open-source android audio recorder: https://gitlab.com/axet/android-audio-recorder

shivanshPurple commented 4 years ago

Is your issue solved now!?