We need a solution that will resample audio (from live Zoom call) sample rate from 32000 to 44100. Looks like the resampler can do this. We have ByteBuffer from the ZoomSDK and we just need to resample.
We tried with both
resample.resample(rawData.getBuffer(), processed, rawData.getBuffer().remaining()); resample.resampleEx(rawData.getBuffer(), processed, rawData.getBuffer().remaining());
but is not working, the audio is still bad.
Can this be done with your library?