Ken Huang

Results 7 comments of Ken Huang

看起來只要是台南選區的功能都會篩選錯誤

@fengxiuyaun 想問一下你的髒數據可以說明一下是甚麼樣的數據呢

I use Audacity to see the wave, and I can not find any different. but using other filter in Tarsosdsp can find different.

Neither spectrums nor wave has changed :(

here is my code ``` new AndroidFFMPEGLocator(this); AudioDispatcher dispatcher = AudioDispatcherFactory.fromPipe( PATH + "/before.wav", sampleRate, bufferSize, 0); dispatcher.addAudioProcessor(new NotchFilter(2500, 20, sampleRate)); try { RandomAccessFile outputFile = new RandomAccessFile( PATH +...

Thanks a lot, I found the problem. The solution is creating a class extends NotchFilter of minim and implement AudioProcessor ``` @Override public boolean process(AudioEvent var1) { float[] var2 =...